:root {
  --bg: #f8f7f5;
  --white: #ffffff;
  --text: #121212;
  --muted: #6a6a6a;
  --line: #e8e6e2;
  --gold: #b0986e;
  --gold-light: #c8b48a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

.wrap {
  width: min(1140px, calc(100% - 80px));
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 { font-size: clamp(38px, 3.6vw, 58px); line-height: 1.05; margin-bottom: 26px; }
h2 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 18px; }
h3 { font-size: 18px; margin-bottom: 10px; }

.lead { font-size: 17px; color: var(--muted); max-width: 60ch; }
.copy { max-width: 72ch; color: var(--muted); }
.kicker { text-transform: uppercase; font-size: 11px; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.kicker.gold { color: var(--gold); }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  gap: 16px;
  overflow: visible;
}

.brand { 
  text-decoration: none; 
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.brand-logo { height: 78px; width: auto; max-width: 300px; display: block; }

.nav { display: flex; gap: 18px; white-space: nowrap; }
.nav a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; color: var(--gold); }

/* Buttons */
.actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.cta {
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta.primary { background: #111; color: white; box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.cta.primary:hover { transform: translateY(-1px); }
.cta.ghost { border: 1px solid #111; color: #111; background: transparent; }
.cta.ghost:hover { transform: translateY(-1px); }
.cta.light { border-color: rgba(255,255,255,0.6); color: white; }
.cta.light:hover { transform: translateY(-1px); }
.cta.gold-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.cta.gold-outline:hover { transform: translateY(-1px); }

/* Video Hero */
.video-hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.10) 100%);
}

.video-hero-content {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 80px));
  margin: 0 auto;
  max-width: 680px;
  align-self: center;
}

.video-hero-content h1 {
  color: white;
  font-size: clamp(44px, 5vw, 74px);
  margin-bottom: 22px;
  line-height: 1.02;
}

.video-hero-content .lead {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 52ch;
}

.video-hero-content .actions { margin-top: 32px; }

/* Split hero for inner pages */
.hero { padding: 110px 0 90px; }
.hero-inner { display: grid; grid-template-columns: 1fr 460px; gap: 88px; align-items: center; }
.hero-left { max-width: 560px; padding-bottom: 20px; }
.hero-image { position: relative; width: 100%; max-width: 440px; margin-left: auto; transform: translateY(20px); }
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(to left, rgba(0,0,0,0.05), rgba(0,0,0,0.00));
  pointer-events: none;
}

/* Page Hero */
.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--line); }

.page-hero.has-image {
  position: relative;
  border-bottom: none;
  padding: 130px 0 110px;
  overflow: hidden;
}

.page-hero.has-image .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero.has-image .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 100%);
}

.page-hero.has-image .wrap { position: relative; z-index: 2; }
.page-hero.has-image h1,
.page-hero.has-image p { color: white; }
.page-hero.has-image .lead { color: rgba(255,255,255,0.82); }
.page-hero.has-image .kicker { color: rgba(255,255,255,0.60); }

/* Sections */
.section { padding: 110px 0; }
.section.alt { background: var(--white); }
.services .grid-3 { margin-top: 56px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.card ul { margin-top: 14px; padding-left: 18px; color: var(--muted); }
.card li { margin-bottom: 8px; }

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step { position: relative; }

.process-step::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--line);
}
.process-step:last-child::after { display: none; }

.process-number {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.75;
}

.process-step h3 { font-size: 16px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Aspiration strip (image bg) */
.aspiration-strip {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.aspiration-strip .aspiration-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aspiration-strip .aspiration-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.aspiration-strip .wrap { position: relative; z-index: 2; }
.aspiration-strip h2 { color: white; font-size: clamp(28px, 3vw, 46px); max-width: 20ch; margin: 0 auto 18px; }
.aspiration-strip p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 60ch; margin: 0 auto; }
.aspiration-strip .actions { justify-content: center; margin-top: 32px; }

/* Dark Strip */
.dark-strip { background: #111; color: white; padding: 130px 0; }
.copy-invert { color: rgba(255,255,255,0.80); max-width: 76ch; }

/* Footer */
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.50);
  padding: 72px 0 36px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .brand-logo-footer {
  height: 62px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.80;
}

.footer-brand p {
  color: rgba(255,255,255,0.40);
  font-size: 13px;
  line-height: 1.7;
  max-width: 28ch;
  margin: 0 0 24px;
}

.footer-heading {
  font-family: Inter, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  margin-top: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.50);
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-list a {
  text-decoration: none;
  color: rgba(255,255,255,0.50);
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.24);
  flex-wrap: wrap;
  gap: 10px;
}

/* List */
.list { padding-left: 20px; color: var(--muted); margin-top: 18px; }
.list li { margin-bottom: 10px; line-height: 1.6; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 9999;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; }

/* Close button inside mobile nav */
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px;
  z-index: 9999;
}
.mobile-nav-close span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
}
.mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }

.mobile-nav a {
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}
.mobile-nav a:hover { opacity: 0.6; }
.mobile-nav .cta.primary {
  margin-top: 16px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  padding: 14px 28px;
}

/* Responsive tablet */
@media (max-width: 1100px) {
  .wrap { width: min(1140px, calc(100% - 40px)); }
  .hamburger { display: flex !important; visibility: visible !important; opacity: 1 !important; flex-shrink: 0 !important; }
  .nav { display: none; }
  .header-inner > .cta.primary { display: none; }
  .brand-logo { height: 60px; max-width: 220px; }
  .header-inner { padding: 20px 0; gap: 12px; }

  .video-hero { height: 75vh; }
  .video-hero-content { max-width: 100%; }

  .hero { padding: 72px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-left { padding-bottom: 0; }
  .hero-image { max-width: 520px; margin-left: 0; transform: none; }
  .hero-image img { aspect-ratio: 5 / 4; }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-step::after { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .dark-strip { padding: 80px 0; }
  .aspiration-strip { padding: 100px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Responsive mobile */
@media (max-width: 640px) {
  .wrap { width: min(1140px, calc(100% - 32px)); }
  .brand-logo { height: 64px; }
  .header-inner { padding: 14px 0; }
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px;
    height: 44px;
  }
  h1 { font-size: 34px; margin-bottom: 18px; }
  h2 { font-size: 24px; }
  .lead { font-size: 15px; }
  .copy { font-size: 15px; }

  .video-hero { height: 88vh; min-height: 500px; }
  .video-hero-content h1 { font-size: 36px; }
  .video-hero-content .lead { font-size: 15px; }
  .video-hero-overlay { background: rgba(0,0,0,0.52); }

  .hero { padding: 52px 0 48px; }
  .hero-image img { aspect-ratio: 4 / 3; border-radius: 14px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 52px 0; }
  .dark-strip { padding: 60px 0; }
  .aspiration-strip { padding: 80px 0; }

  .actions { flex-direction: column; gap: 10px; }
  .actions .cta { text-align: center; width: 100%; }
  .card { padding: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-grid.two, .form-grid.three { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .cta { text-align: center; width: 100%; }
  .page-hero { padding: 48px 0 36px; }
  .page-hero.has-image { padding: 80px 0 64px; }
}
