/* ============================================================
   THE OAK DEVELOPMENT — Luxury redesign
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #141414;
  --text:      #1A1A1A;
  --text-2:    #6B6B6B;
  --bg:        #FFFFFF;
  --bg-alt:    #F5F3EF;
  --accent:    #8B7355;
  --accent-h:  #A08660;
  --border:    #E2DDD8;
  --white:     #FFFFFF;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --r:      16px;
  --r-sm:   10px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:      0.35s var(--ease);
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 980px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139,115,85,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 980px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: border-color var(--t), background var(--t);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--white);
  color: var(--black);
  border-radius: 980px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--t), transform var(--t);
}
.btn-white:hover { background: #eeebe6; transform: translateY(-1px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color var(--t), background var(--t);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
  transition: background var(--t), color var(--t), border-color var(--t);
  backdrop-filter: blur(8px);
}
#navbar.scrolled .btn-nav {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}
.btn-nav:hover { background: rgba(255,255,255,0.25); }
#navbar.scrolled .btn-nav:hover { background: var(--accent); }

.btn-submit {
  width: 100%;
  padding: 17px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--r-sm);
}


/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255,255,255,0.55); }

/* ── Section header ── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.section-head h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-2);
  letter-spacing: -0.005em;
}


/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.9);
  border-bottom-color: rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  transition: color var(--t);
  white-space: nowrap;
}
#navbar.scrolled .logo-text { color: var(--black); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--text-2); }
#navbar.scrolled .nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: background var(--t), transform var(--t), opacity var(--t);
}
#navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 8px 0 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 15px 40px;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu a:last-of-type { border-bottom: none; }
.btn-mobile-cta {
  margin: 16px 40px 0 !important;
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 980px;
  text-align: center;
  font-weight: 600 !important;
  border-bottom: none !important;
  padding: 15px 40px !important;
}
.btn-mobile-cta:hover { background: var(--accent) !important; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(170deg, #100c08 0%, #1a1008 40%, #141414 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.3) 50%, rgba(10,8,6,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  min-width: 0;
}

.hero .eyebrow {
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(72px, 12vw, 136px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 100%;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  letter-spacing: -0.005em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--accent);
  font-size: 16px;
  padding: 16px 40px;
}
.hero-actions .btn-primary:hover { background: var(--accent-h); }
.hero-actions .btn-ghost { font-size: 16px; padding: 16px 40px; }

/* Stats strip */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  padding: 0 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 980px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 20px 40px;
}
.stat-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.stat-num sup {
  font-size: 14px;
  font-weight: 500;
  vertical-align: super;
}
.stat-lbl {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.7); }
  50%       { opacity: 1; transform: scaleY(1); }
}


/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.intro-text {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-2);
  text-align: center;
  letter-spacing: -0.02em;
  max-width: 740px;
  margin: 0 auto;
}
.intro-text strong { color: var(--text); font-weight: 600; }


/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 128px 0; background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.service-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  cursor: default;
}
.service-card:hover { background: var(--bg-alt); }

.svc-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.svc-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
  font-weight: 300;
}


/* ============================================================
   SHOWCASE (full-bleed editorial section)
   ============================================================ */
.showcase {
  position: relative;
  height: 90vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.showcase-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1208 0%, #2a1e10 50%, #111 100%);
}
.showcase-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.showcase-photo.no-img img { display: none; }
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,6,4,0.92) 0%,
    rgba(8,6,4,0.5) 40%,
    rgba(8,6,4,0.15) 100%);
}

.showcase-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 80px 80px;
  color: var(--white);
}
.showcase-text h2 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}
.showcase-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 520px;
  letter-spacing: -0.005em;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 128px 0; background: var(--bg-alt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-visuals {
  display: flex;
  gap: 10px;
  height: 560px;
}

.vis-wrap {
  border-radius: var(--r);
  overflow: hidden;
  flex: 1;
  background: linear-gradient(160deg, #1c1208 0%, #3a2410 100%);
}
.vis-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.vis-wrap:hover img { transform: scale(1.06); }
.vis-wrap.no-img img { display: none; }

.vis-a { flex: 1.45; }
.vis-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vis-b { flex: 1; background: linear-gradient(160deg, #0d1820 0%, #1a3050 100%); }
.vis-c { flex: 0.75; background: linear-gradient(160deg, #0c1a10 0%, #183828 100%); }

.about-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
}
.about-content > p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 36px;
  font-weight: 300;
}

.check-list { margin-bottom: 44px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.check-list li:first-child { border-top: 1px solid var(--border); }
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}


/* ============================================================
   PROJECTS
   ============================================================ */
.projects { padding: 128px 0; background: var(--bg); }
.projects .section-head { margin-bottom: 64px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 340px;
  gap: 10px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.project-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
}
.project-lg {
  grid-column: span 7;
  grid-row: span 2;
}
.project-card:not(.project-lg) {
  grid-column: span 5;
}

.proj-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.proj-img.no-img {
  background: linear-gradient(150deg, #1c0e07 0%, #3a2010 60%);
}
.proj-img.no-img img { display: none; }
.project-card:hover .proj-img img { transform: scale(1.06); }

.proj-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(4px);
  transition: transform var(--t);
}
.project-card:hover .proj-overlay { transform: translateY(0); }

.proj-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
  margin-bottom: 6px;
}
.proj-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 128px 0; background: var(--bg-alt); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.stars {
  font-size: 13px;
  letter-spacing: 3px;
  color: #D4A017;
  margin-bottom: 20px;
}

.testi-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  flex: 1;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.testi-author span {
  font-size: 12px;
  color: var(--text-2);
}


/* ============================================================
   VIDEOS
   ============================================================ */
.videos { padding: 128px 0; background: var(--bg); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  object-fit: cover;
  background: var(--black);
  display: block;
}

.video-placeholder .video-coming {
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-2);
}
.video-coming svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}
.video-coming span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

.video-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.01em;
  text-align: center;
}

/* Consent checkbox */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 4px;
}
.consent-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), background var(--t);
  margin-top: 1px;
}
.consent-check input:checked ~ .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}
.consent-check input:checked ~ .checkmark::after {
  content: '';
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.consent-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  font-weight: 300;
}

.recaptcha-note {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
  font-weight: 300;
}
.recaptcha-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.25;
}
.cta-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,0.6) 0%, rgba(10,8,5,0.8) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 128px 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 300;
}

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 980px;
  transition: border-color var(--t), background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  letter-spacing: -0.005em;
}
.social-pill:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139,115,85,0.28);
}

/* ── Active nav link ── */
.nav-active {
  color: var(--text) !important;
  font-weight: 500 !important;
}
#navbar:not(.scrolled) .nav-active {
  color: var(--white) !important;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { position: relative; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 22px 18px 9px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--t);
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: -0.01em;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 128px; }

.field label {
  position: absolute;
  top: 50%;
  left: 19px;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--text-2);
  pointer-events: none;
  transition: top var(--t), font-size var(--t), color var(--t), transform var(--t);
  letter-spacing: -0.01em;
}
.field textarea ~ label { top: 20px; transform: none; }

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field select:focus ~ .select-label,
.field select:valid ~ .select-label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.field select { padding-right: 40px; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 300;
}
.form-note-error {
  color: #B42318;
  font-weight: 400;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  object-fit: cover;
  margin-bottom: 12px;
}
.footer-logo-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
  font-weight: 300;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  transition: color var(--t);
  letter-spacing: -0.005em;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--t);
  font-weight: 300;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal span {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.services-grid .service-card:nth-child(2)  { transition-delay: 0.04s; }
.services-grid .service-card:nth-child(3)  { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(4)  { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(5)  { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(6)  { transition-delay: 0.06s; }
.services-grid .service-card:nth-child(7)  { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(8)  { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(9)  { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(10) { transition-delay: 0.12s; }

.testi-grid .testi-card:nth-child(2) { transition-delay: 0.1s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.2s; }

.projects-grid .project-card:nth-child(2) { transition-delay: 0.08s; }
.projects-grid .project-card:nth-child(3) { transition-delay: 0.16s; }
.projects-grid .project-card:nth-child(4) { transition-delay: 0.08s; }
.projects-grid .project-card:nth-child(5) { transition-delay: 0.16s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .project-lg { grid-column: span 2; grid-row: span 1; }
  .project-card:not(.project-lg) { grid-column: span 1; }
}

@media (max-width: 1100px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid .video-card:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visuals { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .videos-grid .video-card:last-child { grid-column: auto; }
  .showcase-text { padding: 60px 48px; }
  .showcase-text h2 { font-size: clamp(36px, 6vw, 60px); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 24px 100px; }
  .hero h1 {
    font-size: clamp(48px, 13vw, 72px);
    letter-spacing: -0.035em;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: var(--r);
    margin-top: 48px;
    width: 100%;
    max-width: 320px;
  }
  .stat-item {
    padding: 16px 20px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .stat-divider { height: 1px; width: 80%; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: 1px solid var(--border); }

  .showcase { height: auto; min-height: 520px; }
  .showcase-text { padding: 60px 24px; max-width: 100%; }

  .about-visuals { height: 240px; }

  .projects-grid { grid-template-columns: 1fr; grid-template-rows: none; padding: 0 24px; }
  .project-card { height: 260px; grid-column: auto; grid-row: auto; }
  .project-lg { height: 320px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero h1 {
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 0.98;
  }
  .hero h1 em {
    display: inline-block;
    font-size: 0.82em;
    letter-spacing: -0.025em;
  }
  .hero-sub {
    max-width: 300px;
    font-size: 15px;
  }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-stats { max-width: 300px; }
}

/* ── Calendly Standalone Section ── */
.calendly-standalone {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.calendly-standalone-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.calendly-standalone-text .eyebrow { margin-bottom: 10px; }
.calendly-standalone-text h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 12px;
}
.calendly-standalone-text p {
  font-size: 15px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.65;
  max-width: 380px;
}
.btn-calendly-standalone {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .calendly-standalone-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
  }
  .calendly-standalone-text p { max-width: 100%; }
  .btn-calendly-standalone { width: 100%; max-width: 320px; justify-content: center; }
}
