/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
html {
  scroll-behavior: smooth;
}

:root {
  /* Apple-clean palette */
  --bg: #fbfbfc;
  --bg2: #f4f5f7;
  --text: #0b0f1a;
  --muted: rgba(11, 15, 26, 0.68);
  --line: rgba(11, 15, 26, 0.1);

  /* Luxury accents */
  --gold1: #c8a45a;
  --gold2: #f3e0a8;

  /* CTA */
  --cta: #0b0f1a;
  --ctaHover: #1b2440;

  --radius: 18px;
  --shadow: 0 22px 70px rgba(11, 15, 26, 0.1);
}

.ig-icon-only {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(11, 15, 26, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.ig-icon-only img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ig-icon-only:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(11, 15, 26, 0.1);
}

.btn.luxe {
  background: linear-gradient(135deg, #c8a45a, #f3e0a8);
  color: #0b0f1a;
  border: 1px solid rgba(200, 164, 90, 0.45);
  box-shadow: 0 18px 40px rgba(200, 164, 90, 0.25);
  border-radius: 999px;
  padding: 11px 16px;
}

.btn.luxe:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(200, 164, 90, 0.28);
  background: linear-gradient(135deg, #d4b26a, #f7ebbf);
}

.ig-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 15, 26, 0.12);
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  color: rgba(11, 15, 26, 0.8);
}

.ig-icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(11, 15, 26, 0.78);
}

.ig-icon:hover {
  background: rgba(11, 15, 26, 0.04);
}

.ig-handle {
  font-size: 13px;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 50% -10%,
      rgba(200, 164, 90, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 10% 10%,
      rgba(11, 15, 26, 0.04),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

/* Layout wrapper */
:root {
  --gutter: 16px; /* mobile side padding */
  --max: 1180px; /* max content width */
}

/* ONE container to rule them all */
.wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

/* Slightly bigger gutters on desktop */
@media (min-width: 981px) {
  :root {
    --gutter: 24px;
  }
}

/* Safety: never allow sideways overflow */
html,
body {
  overflow-x: hidden;
}

/* ===== Topbar (ALWAYS visible / hovering) ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 2000;
  background: rgba(251, 251, 252, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

/* Your inner container stays the same */
.topbar-inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 0 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo.left {
  justify-self: start;
}

.topbar-actions.right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px; /* distance between Instagram + button */
}

/* Mobile: softer + smaller */
@media (max-width: 700px) {
  .brand-watermark {
    background-position: 50% 18%;
    background-size: min(520px, 92vw);
    opacity: 0.06;
  }
}
/* Center logo */
.logo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  height: 46px;
  width: auto;
  display: block;

  /* remove text-badge behaviour */
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Desktop nav under logo */
.nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.nav a {
  font-weight: 600;
  color: rgba(11, 15, 26, 0.72);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(11, 15, 26, 0.1);
  background: rgba(11, 15, 26, 0.03);
}

.nav a.active {
  color: var(--text);
  border-color: rgba(208, 165, 78, 0.35);
  background: rgba(209, 166, 79, 0.12);
}

/* Right actions */
.topbar-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig {
  font-weight: 700;
  color: rgba(11, 15, 26, 0.78);
  border-bottom: 1px solid rgba(11, 15, 26, 0.18);
  padding-bottom: 2px;
}

.ig:hover {
  color: var(--text);
  border-color: rgba(11, 15, 26, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  background: var(--cta);
  color: #fff;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 14px 30px rgba(11, 15, 26, 0.16);
}

.btn:hover {
  background: var(--ctaHover);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 15, 26, 0.18);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(11, 15, 26, 0.14);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(11, 15, 26, 0.04);
  transform: translateY(-1px);
}

.btn.small {
  padding: 10px 12px;
  border-radius: 999px;
}

/* =========================
   Hamburger + Mobile Menu
   (CLEAN, SINGLE VERSION)
   ========================= */

/* Hamburger button (premium round) */
.nav-toggle {
  display: none; /* hidden on desktop */
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(11, 15, 26, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(11, 15, 26, 0.08);
  cursor: pointer;
  padding: 10px;

  /* bars layout */
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;

  /* IMPORTANT: because button is now inside .topbar-actions (flex),
     remove any grid-specific positioning */
  justify-self: auto;
  grid-column: auto;
  flex: 0 0 auto;

  transition: transform 0.15s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.bar {
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: var(--text);
  transition: all 0.25s ease;
}

/* Hamburger -> X animation */
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}
.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu base */
.mobile-menu {
  top: calc(var(--topbar-h) - 12px);
  display: none;
  position: absolute;
  right: 12px;
  left: auto;
  top: 58px; /* below header */
  width: min(320px, calc(100vw - 24px));
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(251, 251, 252, 0.96);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: rgba(11, 15, 26, 0.82);
}

.mobile-menu a:hover {
  background: rgba(11, 15, 26, 0.04);
}

.mobile-cta {
  margin-top: 6px;
  background: var(--cta);
  color: #fff !important;
}

/* Responsive header */
@media (max-width: 900px) {
  /* Hide the desktop nav row on mobile */
  .nav {
    display: none;
  }

  /* Show hamburger on mobile */
  .nav-toggle {
    display: inline-flex;
  }

  /* Ensure right side stays right and doesn't crush hamburger */
  .topbar-actions.right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  /* Make CTA slightly smaller so hamburger always fits */
  .btn.luxe {
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
}
/* ===== Hero (LOCKED for Desktop) ===== */
.hero {
  padding: 44px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* desktop split */
  gap: 20px;
  align-items: start;
}

.hero-copy {
  padding: 18px 0;
}

/* Luxury line (kicker) stays simple */
.kicker {
  display: inline-flex;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: rgba(11, 15, 26, 0.7);
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  border-radius: 999px;
}

/* BIG hero title back to normal */
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px; /* ✅ desktop size */
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

/* GOLD “sexiest” always */
.accent {
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Your 3-sentence paragraph (keep same style as before) */
.lead {
  margin-top: 26px; /* ✅ spacing from headline */
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
  line-height: 1.65;
}

/* ===== Highlights (DESKTOP: 3 in one line) ===== */
.hero-highlights {
  margin-top: 22px; /* spacing after lead */
  display: grid; /* ✅ desktop grid, not flex */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.highlight {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.highlight-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(11, 15, 26, 0.92);
  font-size: 15px;
}

.highlight-sub {
  margin-top: 4px;
  font-weight: 600;
  font-size: 13px; /* ✅ smaller than title */
  color: rgba(11, 15, 26, 0.58);
}

/* ===== Mobile ONLY ===== */
.hero-grid,
.hero-image {
  max-width: 100%;
}
.hero-image img {
  display: block;
  max-width: 100%;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr; /* ✅ mobile stacks */
  }

  .hero h1 {
    font-size: 40px; /* ✅ mobile size */
  }

  /* Keep 3 highlights in one row on mobile WITHOUT breaking layout */
  .hero-highlights {
    display: flex; /* ✅ mobile flex only */
    flex-wrap: nowrap; /* ✅ prevents 2+1 wrap */
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    max-width: 100%;
    overflow-x: auto; /* ✅ scroll if needed */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .hero-highlights::-webkit-scrollbar {
    height: 0; /* optional: hide scrollbar */
  }

  .highlight {
    flex: 0 0 auto; /* ✅ content-sized cards */
    padding: 10px 12px;
    white-space: normal;
  }
}

/* Global safety net: never allow sideways page overflow */
body {
  overflow-x: hidden;
}

/* If the screen is very narrow, drop to 2 columns (no giant cards) */
@media (max-width: 380px) {
  .hero-highlights {
    grid-template-columns: repeat(2, max-content);
  }
}

.highlight {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

/* Keep typography consistent with the rest of your site */
.highlight-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(11, 15, 26, 0.92);
  font-size: 15px; /* stays strong */
}

/* Subline stays simple, same vibe as your existing text */
.highlight-sub {
  margin-top: 4px;
  font-weight: 600;
  font-size: 13px; /* 👈 smaller than title */
  color: rgba(11, 15, 26, 0.58);
}

/* Hide sticky CTA on desktop (keep only on mobile) */

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 40px;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 12px;
}

.trust-item strong {
  display: block;
  font-weight: 900;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Space between the H1 and the 3-sentence copy */
.hero-subcopy {
  margin-top: 22px; /* 👈 creates the gap you requested */
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
  line-height: 1.65;
}

/* Sentence 2 + 3 as clean separate lines */
.hero-subcopy .subline {
  display: block;
  margin-top: 8px;
  color: rgba(11, 15, 26, 0.74);
  font-weight: 600;
}

/* Hero media */
.hero-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 15, 26, 0.1);
}

.hero-image img {
  width: 100%;
  height: 70vh;
  max-height: 820;
  object-fit: cover;
  object-position: center 15;
  transform: scale(1.02);
}

.hero-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 700px) {
  .hero-image img {
    height: 75vh;
    object-position: center 10%;
  }
}

@media (max-width: 520px) {
  .hero-tiles {
    grid-template-columns: 1fr;
  }
}

.tile {
  border: 1px solid rgba(11, 15, 26, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11, 15, 26, 0.1);
  background: #fff;
}

.tile img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transform: scale(1.02);
}

.tile figcaption {
  padding: 10px 12px;
  color: rgba(11, 15, 26, 0.74);
  font-weight: 700;
  font-size: 13px;
}

/* ===== Sections ===== */
.section {
  padding: 58px 0;
}

.section.soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(11, 15, 26, 0.02)
  );
  border-top: 1px solid rgba(11, 15, 26, 0.06);
  border-bottom: 1px solid rgba(11, 15, 26, 0.06);
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  letter-spacing: -0.01em;
}

.section-head p {
  margin-top: 8px;
  color: var(--muted);
  max-width: 80ch;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(11, 15, 26, 0.08);
}

.feature h3 {
  font-weight: 900;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
}

/* Included */
.included {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .included {
    grid-template-columns: 1fr;
  }
}

.included-card {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(11, 15, 26, 0.08);
}

.included-card h3 {
  font-weight: 900;
  margin-bottom: 10px;
}
.included-card ul {
  padding-left: 18px;
  color: rgba(11, 15, 26, 0.78);
  font-weight: 600;
}
.included-card li {
  margin-bottom: 10px;
}

.included-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 26, 0.1);
  box-shadow: var(--shadow);
}

.included-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1.02);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.shot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 26, 0.1);
  box-shadow: 0 18px 60px rgba(11, 15, 26, 0.1);
  background: #fff;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.shot:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(11, 15, 26, 0.12);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 440px;
}
.wide {
  grid-column: span 7;
  min-height: 240px;
}
.shot:not(.tall):not(.wide) {
  grid-column: span 3;
  min-height: 200px;
}

@media (max-width: 980px) {
  .tall {
    grid-column: span 12;
  }
  .wide {
    grid-column: span 12;
  }
  .shot:not(.tall):not(.wide) {
    grid-column: span 6;
  }
}
@media (max-width: 520px) {
  .shot:not(.tall):not(.wide) {
    grid-column: span 12;
  }
}

/* CTA strip */
.cta-strip {
  margin-top: 18px;
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 50px rgba(11, 15, 26, 0.08);
}

@media (max-width: 700px) {
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 980px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about-photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 26, 0.1);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.about-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
}

.about-lead {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.about-points {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.point {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 12px;
}

.point strong {
  display: block;
  font-weight: 900;
}
.point span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.about-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(11, 15, 26, 0.08);
}

.num {
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(11, 15, 26, 0.5);
}

.step h3 {
  margin-top: 8px;
  font-weight: 900;
}
.step p {
  margin-top: 8px;
  color: var(--muted);
}

/* Menu cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(11, 15, 26, 0.1);
  transition: transform 0.15s ease;
}

.menu-card:hover {
  transform: translateY(-2px);
}

.menu-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-body {
  padding: 14px;
}

.menu-body h3 {
  font-weight: 900;
}
.menu-body p {
  margin-top: 8px;
  color: var(--muted);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.contact-copy p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 64ch;
}

.contact-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badges span {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(11, 15, 26, 0.78);
}

.contact-form {
  border: 1px solid rgba(11, 15, 26, 0.1);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(11, 15, 26, 0.1);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  font-size: 13px;
  color: rgba(11, 15, 26, 0.86);
}

input,
textarea {
  border: 1px solid rgba(11, 15, 26, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 14px;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.btn.full {
  width: 100%;
}

.tiny {
  margin-top: 10px;
  color: rgba(11, 15, 26, 0.6);
  font-size: 12px;
}

.ig.big {
  display: inline-block;
  margin-top: 14px;
  font-weight: 900;
  color: rgba(11, 15, 26, 0.86);
  border-bottom: 1px solid rgba(11, 15, 26, 0.22);
  width: fit-content;
}

/* =========================
   Footer (fixed layout)
   ========================= */
.footer {
  padding: 22px 0 48px; /* space BELOW the row */
  border-top: 1px solid rgba(11, 15, 26, 0.08);
  background: rgba(255, 255, 255, 0.6);
  font-family: inherit; /* prevents font “changing” */
}

.footer-inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-left {
  color: rgba(11, 15, 26, 0.6);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap; /* keeps it on one line */
}

/* Back to top button */
.backtop {
  border: 1px solid rgba(11, 15, 26, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  color: #0b0f1a;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.backtop:hover {
  background: rgba(11, 15, 26, 0.08);
  transform: translateY(-1px);
}

/* Mobile: keep same line + safe area spacing */
@media (max-width: 600px) {
  .footer {
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }

  .footer-left {
    font-size: 13px;
  }

  .backtop {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ===== HERO: force correct placement using grid areas (desktop + mobile) ===== */
.hero-grid {
  display: grid; /* ensure grid is active */
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "copy image";
  gap: 20px;
  align-items: start;
}

.hero-copy {
  grid-area: copy;
}

.hero-image {
  grid-area: image;
}

/* Mobile: stack text first, image second (always) */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "image";
  }
}

/* ===== Desktop hero watermark placement (below pills, left side) ===== */
@media (min-width: 981px) {
  .hero-copy::before {
    /* Keep it inside the left copy column */
    inset: 0 !important;

    /* Put logo in the empty space below the pills */
    background-position: 10% 92% !important; /* left + low */

    /* Reduce zoom (less massive) */
    background-size: min(560px, 40vw) !important;

    /* Make it visible but not shouting */
    opacity: 0.11 !important;
    filter: blur(0.15px) !important;
  }
}

@media (min-width: 981px) {
  .hero-pills {
    margin-bottom: 34px; /* creates the clean white zone for the logo */
  }
}

/* ===== Desktop: put logo in a dedicated slot BELOW pills (left column) ===== */
@media (min-width: 981px) {
  /* Stop watermark sitting behind the big H1 on desktop */
  .hero-copy::before {
    content: none !important;
  }

  /* ===== Desktop watermark: background, pushed DOWN (not behind H1) ===== */
  @media (min-width: 981px) {
    .hero-copy {
      position: relative;
      isolation: isolate;
    }

    .hero-copy::before {
      content: "";
      position: absolute;

      /* KEY: start LOWER so it never sits behind the big headline */
      top: 250px; /* 👈 increase/decrease to move logo up/down */
      left: -40px;
      right: -20px;
      bottom: -40px;

      pointer-events: none;
      z-index: -1;

      background-image: url("images/logo.png");
      background-repeat: no-repeat;

      /* keep it on the LEFT side (beside your image column) */
      background-position: left 40%;
      background-size: min(720px, 46vw);

      /* make it actually visible on desktop */
      opacity: 0.18;
      filter: blur(0.15px);
    }

    /* Create guaranteed white space below pills so watermark has room */
    .hero-pills {
      margin-bottom: 38px;
    }
  }
}

/* =========================
   GLOBAL GUTTER (ONE RULE)
   Makes left/right padding consistent everywhere
========================= */

:root {
  --gutter: 16px; /* mobile side padding */
  --max: 1180px; /* your max content width */
}

/* One universal container size */
.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* Slightly larger gutters on bigger screens (optional, feels premium) */
@media (min-width: 981px) {
  :root {
    --gutter: 24px;
  }
}

/* Safety: prevent any accidental horizontal overflow */
html,
body {
  overflow-x: hidden;
}

/* Kill inconsistent old widths if they exist */
.topbar-inner,
.footer-inner {
  width: auto;
  max-width: none;
  margin: 0;
}
/* ===== Stop mobile overflow ===== */
.hero,
.hero-grid,
.hero-copy,
.hero-image,
.hero-image img {
  max-width: 100%;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* If any row is forcing width, allow wrapping */
.hero-highlights {
  max-width: 100%;
}

/* Prevent long pills/sentences from pushing page sideways */
.hero-copy,
.lead,
.hero p,
.hero span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== DESKTOP: force header/footer content to sit inside the wrap ===== */
.topbar-inner,
.footer-inner {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* ===== Mobile: fit 3 blocks in one line, no scroll ===== */
/* ===== Mobile: tighter highlight cards, no grey gaps ===== */
@media (max-width: 980px) {
  .hero-highlights {
    gap: 6px; /* 👈 reduce space between cards */
  }

  .highlight {
    padding: 10px 12px; /* 👈 slightly bigger cards */
    border-radius: 16px;
  }

  .highlight-title {
    font-size: 13px;
  }

  .highlight-sub {
    font-size: 11px;
  }
}

/* ===== Mobile: remove grey background behind highlight blocks ===== */
@media (max-width: 980px) {
  .hero {
    background: #ffffff !important;
  }
}

@media (max-width: 980px) {
  .hero-copy,
  .hero-highlights {
    background: transparent !important;
  }
}

/* ===== Mobile: remove grey border around the 3 highlight blocks ===== */
/* ===== Mobile: remove grey border around the 3 highlight blocks ===== */
/* ===== Mobile: remove grey border around the 3 highlight blocks ===== */
/* ===== Mobile: remove grey border around the 3 highlight blocks ===== */
@media (max-width: 980px) {
  .highlight {
    border: none !important; /* kills the grey outline */
    box-shadow: none !important; /* optional: removes the faint grey haze */
    background: rgba(11, 15, 26, 0.04) !important;
  }
}

/* ===== Make the section menu row scroll with the page (NOT sticky) ===== */
.nav,
.nav-links,
.navrow,
.subnav,
.menu-row,
.section-nav {
  position: static !important;
  top: auto !important;
}

/* Desktop nav sits under sticky header */
.nav {
  margin-top: 10px;
}

/* Only show desktop nav on desktop */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

/* ===== FORCE desktop .nav to scroll with page (no sticky/fixed allowed) ===== */
@media (min-width: 981px) {
  .nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: auto !important;
  }
}

/* The JS will set this variable correctly */
:root {
  --topbar-h: 96px;
}

/* Push whole page down below the fixed topbar */
body {
  padding-top: var(--topbar-h);
}

/* When clicking nav links (#experience etc.), don't hide the section under the bar */
section {
  scroll-margin-top: calc(var(--topbar-h) + 12px);
}

/* ===== Two-row fixed header: keep nav row visible while scrolling ===== */

/* Keep the nav row visible on desktop */
@media (min-width: 901px) {
  .nav {
    display: flex !important;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    padding-bottom: 10px; /* gives breathing room inside topbar */
  }
}

/* On mobile, nav row is hidden (hamburger handles it) */
@media (max-width: 900px) {
  .nav {
    display: none !important;
  }
}

/* ===== Desktop: tighten space between topbar row + nav row ===== */
@media (min-width: 901px) {
  .topbar-inner {
    gap: 2px; /* was 10px */
    padding-bottom: 6px; /* tighten vertical rhythm */
  }

  .nav {
    margin-top: 2px; /* was ~6–10px */
    padding-bottom: 6px;
  }
}
