:root {
  --bg: #f7f6f2;
  /* page background */
  --panel: #ffffff;
  /* cards */
  /* Text palette (unified) */
  --text-main: #111318;
  --text-body: rgba(17, 19, 24, 0.78);
  --text-muted: rgba(17, 19, 24, 0.58);
  --text-soft: rgba(17, 19, 24, 0.42);

  --text: var(--text-main);
  --muted: var(--text-muted);
  --line: rgba(17, 19, 24, 0.1);
  --gold: #c7a76a;
  --gold2: #e3c48a;
  /* WhatsApp refined palette (less "gold button" feel) */
  --wa-bg: rgba(255, 255, 255, 0.78);
  --wa-border: rgba(17, 19, 24, 0.16);
  --wa-accent: #b9a277;
  /* champagne / stone */
  --wa-accent-soft: rgba(185, 162, 119, 0.28);
  --shadow: 0 18px 60px rgba(17, 19, 24, 0.1);
  --radius: 18px;
  --radius2: 26px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

/* Anchor scrolling: prevent sticky topbar from covering section headings */
html {
  scroll-behavior: smooth;
  /* Desktop offset for sticky topbar */
  scroll-padding-top: 92px;
}

/* Ensure targets land below the sticky header */
#top,
#services,
#how,
#contact {
  scroll-margin-top: 92px;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  #top,
  #services,
  #how,
  #contact {
    scroll-margin-top: 76px;
  }
}

body {
  margin: 0;
  background:
    radial-gradient(
      1200px 700px at 70% -10%,
      rgba(199, 167, 106, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 10% 10%,
      rgba(227, 196, 138, 0.16),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff, var(--bg));
  color: var(--text-body);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* Headings: keep premium serif only for main section headings */
h1,
h2 {
  color: var(--text-main);
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}

/* UI/card headings: use Inter for clarity (fixes “weird” look) */
h3,
h4,
h5 {
  color: var(--text-main);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0.1px;
}

/* Panel headings (match HERO side cards style and unify with contact section) */
.side-card h3,
.form h3,
.contact-card h3 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 19, 24, 0.88);
  line-height: 1.1;
}

/* Panel supporting text (match HERO side cards) */
.side-card .muted,
.contact-card .muted,
.form .muted {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(17, 19, 24, 0.58);
}

/* Panel body text (non-muted) inside info/form cards */
.side-card p,
.contact-card p,
.form p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Keep service card titles larger (do NOT inherit the panel heading style) */
.card h3 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: none;
  color: var(--text-main);
}

/* Unified card supporting text */
.card p,
.contact-card p,
.form p,
.side-card p,
.contact-card .muted,
.side-card .muted {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Ensure consistency for step titles + descriptions */
.step h4 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.step p {
  font-size: 13.5px;
  color: var(--text-muted);
}

p,
.muted,
.hint,
.mtxt span {
  color: var(--text-body);
}

p {
  font-size: 13.5px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.1)
  );
  background-clip: padding-box;
  border-bottom: 1px solid rgba(17, 19, 24, 0.06);
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.05);
  position: sticky;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.topbar.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

/* Glass highlight lines (adds depth without milky fill) */
.topbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 14px;
  border-radius: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.9px;
  font-size: 22px;
  line-height: 1.1;
}

.brand span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
  transition: opacity 0.18s ease;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(17, 19, 24, 0.8);
}

.menu a {
  font-size: 13px;
  padding: 10px 6px;
  border-radius: 10px;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Nav icon/label helpers (desktop shows labels, mobile can switch to icons) */
.nav-icon {
  display: none;
}

.nav-label {
  display: inline;
}

.nav-icon {
  line-height: 1;
}

/* Feather icons output SVG inside the placeholder element */
.nav-icon svg {
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
  position: relative;
}

/* glass highlight */
.btn::before {
  display: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.12)
  );
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.08);
}

.btn.primary {
  /* Solid premium gold (no glass) */
  background: linear-gradient(180deg, #d8ba7a 0%, #c7a76a 100%);
  color: #111318;
  border: 1px solid rgba(17, 19, 24, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.14);
}

/* Remove the glass highlight line on primary buttons */
.btn.primary::before {
  display: none;
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #e3c48a 0%, #c7a76a 100%);
  border-color: rgba(17, 19, 24, 0.14);
  box-shadow: 0 16px 36px rgba(17, 19, 24, 0.16);
}

/* WhatsApp buttons: same base as .btn, with a subtle gold tint */
.btn.wa {
  border-color: rgba(199, 167, 106, 0.38);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.22),
    rgba(199, 167, 106, 0.1)
  );
}

.btn.wa:hover {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(199, 167, 106, 0.14)
  );
  border-color: rgba(199, 167, 106, 0.5);
}

.btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(227, 196, 138, 0.9);
  box-shadow: 0 0 0 4px rgba(227, 196, 138, 0.12);
  flex: 0 0 auto;
}

/* HERO */
.hero {
  position: relative;
  padding: 48px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  min-height: 470px;
}

/* Fallback if autoplay is blocked or the video can't load */
.hero-card.video-failed .hero-video {
  display: none;
}

.hero-card.video-failed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 500px at 70% 10%,
      rgba(199, 167, 106, 0.2),
      transparent 55%
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.92),
      rgba(247, 246, 242, 0.92)
    );
}

.hero-card.video-failed::after {
  content: "Video preview";
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(17, 19, 24, 0.74);
  font-size: 12px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) brightness(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.7) 42%,
      rgba(255, 255, 255, 0.35) 100%
    ),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.18) 55%,
      rgba(255, 255, 255, 0.1)
    );
}

.hero-content {
  position: relative;
  padding: 36px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 19, 24, 0.78);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker i {
  width: 28px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(199, 167, 106, 1),
    rgba(227, 196, 138, 0.35)
  );
  display: inline-block;
}

.hero h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: 0.2px;
}

.hero p {
  margin: 0;
  color: var(--text-body);
  font-size: 14px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.mini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
  color: rgba(17, 19, 24, 0.7);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.pill b {
  color: var(--gold2);
}

.pill .ic {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(227, 196, 138, 0.9);
  box-shadow: 0 0 0 4px rgba(227, 196, 138, 0.12);
}

/* HERO: Official partners (lighter, single-line to avoid clutter) */
.hero-partners-line {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(17, 19, 24, 0.64);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.hero-partners-line .label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 19, 24, 0.58);
  white-space: nowrap;
}

.hero-partners-line .names {
  color: rgba(17, 19, 24, 0.72);
}

/* Side info card */
.side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.side-card h3 {
  margin: 0 0 10px;
  /* typography is unified above */
}

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

.stat {
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 12px 10px;
}

.stat .n {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 6px;
}

.stat .t {
  font-size: 12px;
  color: rgba(17, 19, 24, 0.62);
}

.check {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
  color: rgba(17, 19, 24, 0.74);
  font-size: 13px;
}

.check:last-child {
  border-bottom: 0;
}

.check:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(199, 167, 106, 1),
    rgba(227, 196, 138, 0.85)
  );
  margin-top: 4px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(199, 167, 106, 0.12);
}

/* Sections */
section {
  padding: 32px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.section-title h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0.2px;
}

.section-title p {
  margin: 0;
  color: var(--text-muted);
  max-width: 55ch;
  font-size: 13.5px;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(17, 19, 24, 0),
    rgba(17, 19, 24, 0.1),
    rgba(17, 19, 24, 0)
  );
  margin: 0;
  border: 0;
}

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

/* Services grid: special desktop layouts for 6/7/8 cards */
@media (min-width: 981px) {
  /* Default: 3 per row */
  #services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Use a 6-column grid so we can make “2 cards in a row” fill 100% width */
  #services .services-grid.count-7,
  #services .services-grid.count-8 {
    grid-template-columns: repeat(6, 1fr);
  }

  /* In 6-col mode, default card spans 2 cols (=> 3 per row) */
  #services .services-grid.count-7 > .card,
  #services .services-grid.count-8 > .card {
    grid-column: span 2;
  }

  /* 7 cards: 3 / 2 / 2  (rows with 2 cards should fill full width) */
  #services .services-grid.count-7 > .card:nth-child(4),
  #services .services-grid.count-7 > .card:nth-child(5),
  #services .services-grid.count-7 > .card:nth-child(6),
  #services .services-grid.count-7 > .card:nth-child(7) {
    grid-column: span 3;
    /* 2 cards per row, each takes half of the grid => 100% width */
  }

  /* 8 cards: 2 / 3 / 3 */
  /* First row: 2 cards => each spans 3 cols */
  #services .services-grid.count-8 > .card:nth-child(1),
  #services .services-grid.count-8 > .card:nth-child(2) {
    grid-column: span 3;
  }

  /* Remaining cards default to span 2 => 3 per row */
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
}

.card:after {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(199, 167, 106, 0.2),
    transparent 60%
  );
  transform: rotate(18deg);
  pointer-events: none;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 196, 138, 0.26);
  background: rgba(227, 196, 138, 0.08);
  margin-bottom: 10px;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: rgba(227, 196, 138, 0.92);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  margin-top: 0;
}

/* Ensure service card titles stay crisp in Inter */
.card h3 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 600;
}

/* Form + contact card titles: UI style */
.form h3,
.contact-card h3 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 600;
}

/* Step titles in “How it works” */
.step h4 {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 600;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13.5px;
}

.card .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Services: keep CTA buttons pinned to the bottom */
#services .card {
  display: flex;
  flex-direction: column;
}

#services .card .actions {
  margin-top: auto;
}

/* Service card image (inline) */
.service-media {
  min-height: 130px;
  max-height: 190px;
  margin-bottom: 10px;
  /* Taller, responsive media area to avoid “cut in the middle” */
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.86);
  position: relative;
}

@media (min-width: 981px) {
  #services .service-media {
    /* a bit taller on desktop */
    aspect-ratio: 3 / 2;
    min-height: 140px;
    max-height: 210px;
  }
}

@media (max-width: 980px) {
  #services .service-media {
    /* compact on mobile while staying premium */
    aspect-ratio: 16 / 10;
    min-height: 150px;
    max-height: 180px;
  }
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.03) brightness(1.02);
}

/* Service media overlay actions (glass) */
#services .service-media .actions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  z-index: 2;
}

/* subtle glass panel behind the buttons */
#services .service-media .actions::before {
  display: none;
}

#services .service-media .actions > * {
  position: relative;
  z-index: 1;
}

/* Make the overlay CTAs liquid/glass (scoped only to service images) */
#services .service-media .actions .btn {
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(17, 19, 24, 0.92);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.14);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}

#services .service-media .actions .btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 36px rgba(17, 19, 24, 0.18);
}

/* Primary CTA: same glass, with subtle gold tint (NOT solid gold) */
#services .service-media .actions .btn.primary {
  background: rgba(199, 167, 106, 0.22);
  border-color: rgba(199, 167, 106, 0.4);
  color: rgba(17, 19, 24, 0.92);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.16);
}

#services .service-media .actions .btn.primary:hover {
  background: rgba(199, 167, 106, 0.28);
  border-color: rgba(199, 167, 106, 0.52);
}

/* Keep the WA dot visible on glass */
#services .service-media .actions .btn .dot {
  box-shadow: 0 0 0 4px rgba(227, 196, 138, 0.14);
}

/* Icon-only circular glass buttons (Our Services) */
#services .service-media .actions .btn.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Brighter glass so icons stay readable over very dark images */
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    inset 0 0 22px rgba(255, 255, 255, 0.22),
    0 14px 36px rgba(17, 19, 24, 0.18);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

/* Arrow button (primary) — subtle gold liquid tint */
#services .service-media .actions .btn.btn-icon.primary {
  background: rgba(199, 167, 106, 0.4);
  border-color: rgba(199, 167, 106, 0.66);
}

#services .service-media .actions .btn.btn-icon:hover {
  transform: translateY(-1px) scale(1.03);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 18px 44px rgba(17, 19, 24, 0.22);
}

#services .service-media .actions .btn.btn-icon.primary:hover {
  background: rgba(199, 167, 106, 0.46);
  border-color: rgba(199, 167, 106, 0.74);
}

/* Feather icon inside glass buttons */
#services .service-media .actions .btn.btn-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.05;
  color: rgba(17, 19, 24, 0.96);
}

@media (max-width: 980px) {
  #services .service-media .actions .btn.btn-icon {
    width: 40px;
    height: 40px;
  }
}

/* Mobile: slightly tighter overlay */
@media (max-width: 980px) {
  #services .service-media .actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  #services .service-media .actions .btn {
    padding: 9px 12px;
    font-size: 12.5px;
  }
}

/* Optional: use on specific cards if you prefer zero cropping */
.service-media.contain img {
  object-fit: contain;
  background: rgba(17, 19, 24, 0.04);
}

/* Catalog-style bullet points */
.service-points {
  margin: 0 0 10px;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

.service-points li {
  margin: 2px 0;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.step {
  border-radius: var(--radius);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 14px 12px;
}

.step .num {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold2);
  margin-bottom: 5px;
}

.step h4 {
  margin: 0 0 5px;
  font-size: 14.5px;
  line-height: 1.2;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

/* HOW IT WORKS: lighter / less crowded (scoped) */
#how .steps {
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  #how .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

#how .step {
  padding: 12px 12px 11px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.05);
}

#how .step .num {
  font-size: 18px;
  margin-bottom: 4px;
  color: rgba(199, 167, 106, 0.95);
}

#how .step h4 {
  margin-bottom: 4px;
}

#how .step p {
  font-size: 13px;
}

#how .step .step-meta {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(17, 19, 24, 0.54);
  line-height: 1.35;
}

/* Discretion note row (not a step card) */
#how .how-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}

#how .how-note svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke-width: 1.7;
  color: rgba(199, 167, 106, 0.92);
  flex: 0 0 auto;
}

#how .how-note__body {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(17, 19, 24, 0.62);
}

#how .how-note__title {
  font-weight: 600;
  color: rgba(17, 19, 24, 0.82);
  white-space: nowrap;
}

#how .how-note__text {
  color: rgba(17, 19, 24, 0.62);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Step 5 — Compact inputs only inside Contact section */
#contact input,
#contact select,
#contact textarea {
  padding: 9px 11px;
  font-size: 13.5px;
}

#contact textarea {
  min-height: 56px;
}

#contact .radio-pill {
  padding: 8px 11px;
  font-size: 12.5px;
}

#contact .pax-btn {
  height: 36px;
}

#contact .pax-control input {
  padding-left: 50px;
  padding-right: 50px;
}

.form {
  border-radius: var(--radius2);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form h3 {
  margin: 0 0 8px;
}

.form p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 0;
}

/* If a row has only one field, make it span the full row */
.row > .full {
  grid-column: 1 / -1;
}

.form form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Contact form: fill the left card height and distribute rows (desktop) */
@media (min-width: 981px) {
  #contact .form {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Let the form occupy the remaining card height (after title + intro text) */
  #contact .form form {
    flex: 1;
    min-height: 0;
    justify-content: space-between;
  }

  /* Avoid extra margins fighting the vertical distribution */
  #contact .form form .row {
    margin-bottom: 0;
  }
}

.inline-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(17, 19, 24, 0.82);
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.radio-pill input {
  accent-color: var(--gold);
}

.checkline {
  padding: 0;
  border: none;
  background: none;
  margin-top: 6px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.checkline label {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.checkline input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.checkline .checktext {
  font-size: 13px;
  color: rgba(17, 19, 24, 0.74);
  line-height: 1.35;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

label {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0 0 5px;
}

/* Required field indicator (red asterisk) */
.req-star {
  color: #d01919;
  font-weight: 700;
  margin-left: 4px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
  font: inherit;
  font-size: 14px;
}

/* Phone input: flag badge (auto-detected by JS) */
.phone-auto {
  position: relative;
  width: 100%;
}

.phone-auto .phone-badge {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  padding: 0 6px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(17, 19, 24, 0.82);
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

/* Default (non-contact) */
.phone-auto input {
  padding-left: 52px;
}

/* Contact section has a higher-specificity compact padding rule (#contact input { padding: ... })
           which would override the left padding above. Re-apply the badge offset inside #contact. */
#contact .phone-auto input {
  padding-left: 52px;
}

#contact .phone-auto .phone-badge {
  max-width: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
}

textarea {
  min-height: 64px;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(227, 196, 138, 0.45);
  box-shadow: 0 0 0 4px rgba(199, 167, 106, 0.12);
}

/* Passengers stepper (integrated: buttons inside the field) */
.pax-control {
  position: relative;
  width: 100%;
}

.pax-control input {
  text-align: center;
  padding-left: 54px;
  padding-right: 54px;
  -moz-appearance: textfield;
}

.pax-control input::-webkit-outer-spin-button,
.pax-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Integrated buttons */
.pax-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(17, 19, 24, 0.82);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.pax-btn--left {
  left: 8px;
}

.pax-btn--right {
  right: 8px;
}

/* subtle inner dividers to match premium input look */
.pax-btn--left::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(17, 19, 24, 0.1);
}

.pax-btn--right::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(17, 19, 24, 0.1);
}

.pax-btn:hover {
  background: rgba(227, 196, 138, 0.1);
}

.pax-btn:active {
  background: rgba(227, 196, 138, 0.16);
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.contact-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  padding: 16px;
  /* Remove sticky positioning for equal height columns */
  /* position: sticky; */
  /* top: 86px; */
  display: flex;
  flex-direction: column;
  /* height: 100%; Removed for new layout */
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

/* Right column sizing:
           - Direct contact should end naturally (compact)
           - Trusted card should take the remaining height */
.contact-right .contact-card {
  flex: 0 0 auto;
}

.contact-right .contact-card--fill {
  flex: 1 1 auto;
  min-height: 0;
}

.contact-card h3 {
  margin: 0 0 6px;
}

.contact-card .line {
  height: 1px;
  background: rgba(17, 19, 24, 0.1);
  margin: 10px 0;
}

.contact-card .big {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold2);
  letter-spacing: 0.2px;
}

/* Direct contact: email line */
.contact-card .email {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17, 19, 24, 0.86);
  letter-spacing: 0.1px;
  word-break: break-word;
}

.contact-card .email a {
  color: inherit;
  text-decoration: none;
}

/* Right column: “What happens next” card */
.mini-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstep {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.mnum {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1;
  color: var(--gold2);
  min-width: 34px;
  margin-top: 2px;
}

.mtxt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: rgba(17, 19, 24, 0.84);
}

.mtxt b {
  font-weight: 600;
  font-size: 13px;
  color: rgba(17, 19, 24, 0.92);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  color: rgba(17, 19, 24, 0.72);
  white-space: nowrap;
}

.contact-points {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.contact-points li {
  margin: 4px 0;
}

/* Trusted & Official — Trust Bar (clean + premium) */
.trusted-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trusted-sub {
  margin-top: 4px;
}

.trusted-sub .muted {
  display: none;
}

.trust-surface {
  position: relative;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  background:
    radial-gradient(
      460px 220px at 18% 20%,
      rgba(227, 196, 138, 0.16),
      transparent 62%
    ),
    radial-gradient(
      460px 220px at 82% 20%,
      rgba(199, 167, 106, 0.1),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(247, 246, 242, 0.92)
    );
  box-shadow: 0 14px 40px rgba(17, 19, 24, 0.06);
}

.trust-surface--assurances {
  padding: 9px;
}

.trustbar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* subtle center divider so 2 items feel intentional */
.trustbar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(17, 19, 24, 0),
    rgba(17, 19, 24, 0.08),
    rgba(17, 19, 24, 0)
  );
  transform: translateX(-0.5px);
  pointer-events: none;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 20px;
  border: 1px solid rgba(17, 19, 24, 0.06);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 10px 26px rgba(17, 19, 24, 0.045);
  min-width: 0;
  min-height: 68px;
}

.trust-logo {
  display: grid;
  place-items: center;
  height: 42px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.trust-logo img {
  height: 34px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

/* Keep square emblems (e.g., Knesset) from looking undersized */
.trust-logo--knesset img {
  height: 34px;
}

/* Slightly wider container for UAE lockup / emblem */
.trust-logo--uae img {
  max-width: 200px;
  height: 34px;
}

/* Compact label (keeps everything looking premium and not “boxy”) */
.trust-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-name b {
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 650;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0;
  color: rgba(17, 19, 24, 0.86);
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.trust-name span {
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(17, 19, 24, 0.58);
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

  .trustbar::before {
    display: none;
  }

  .trust-item {
    width: 100%;
    min-height: 84px;
  }

  .trust-name b,
  .trust-name span {
    white-space: normal;
  }

  /* Mobile: force shield + text to stay on one row */
  .trust-note {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .trust-note svg {
    margin-top: 0 !important;
    flex: 0 0 auto !important;
  }

  .trust-note span {
    display: inline-block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    min-width: 0 !important;
    text-align: left !important;
  }
}

.trust-note {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: rgba(17, 19, 24, 0.58);
  font-size: 12.5px;
  line-height: 1.35;
}

.trust-note svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  color: rgba(199, 167, 106, 0.95);
  margin-top: 0;
  flex: 0 0 auto;
}

.trust-note span {
  display: inline;
  min-width: 0;
}

.trust-divider {
  height: 1px;
  margin: 8px 0 8px;
  background: linear-gradient(
    90deg,
    rgba(17, 19, 24, 0),
    rgba(17, 19, 24, 0.12),
    rgba(17, 19, 24, 0)
  );
}

.trust-assurances-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 19, 24, 0.78);
}

.trust-assurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 0;
}

.trust-a {
  border-radius: 20px;
  border: 1px solid rgba(17, 19, 24, 0.06);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 10px 26px rgba(17, 19, 24, 0.045);
  padding: 10px 10px 9px;
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
}

.trust-a svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  color: rgba(199, 167, 106, 0.95);
  margin-top: 0;
  grid-row: 1 / span 2;
  align-self: center;
}

.trust-a__t {
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 650;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0;
  color: rgba(17, 19, 24, 0.86);
}

.trust-a__d {
  grid-column: 2;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(17, 19, 24, 0.58);
}

/* Hover lift + premium shadow (no internal glass overlay, no gold border emphasis) */
.stat,
.trust-item,
.trust-a {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .stat:hover,
  .trust-item:hover,
  .trust-a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.66),
      0 18px 44px rgba(17, 19, 24, 0.09);
  }

  .stat:focus-visible,
  .trust-item:focus-visible,
  .trust-a:focus-visible {
    outline: none;
    transform: translateY(-1px);
    box-shadow:
      0 0 0 4px rgba(199, 167, 106, 0.12),
      inset 0 0 0 1px rgba(255, 255, 255, 0.7),
      0 18px 44px rgba(17, 19, 24, 0.09);
  }
}

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

  /* Mobile: hide “Assurance highlights” to keep the Contact section compact */
  #assuranceHighlightsTitle,
  #assuranceHighlightsTitle + .trust-surface--assurances,
  .trust-assurances-title,
  .trust-surface--assurances,
  .trust-divider,
  .trust-assurances {
    display: none !important;
  }
}

/* Mobile */
.hamb {
  display: none;
}

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

  .hero {
    padding: 16px 0 16px;
  }

  .hero-content {
    padding: 24px 18px;
    gap: 10px;
    justify-content: center;
  }

  .hero-card {
    min-height: 360px;
  }

  /* Mobile: hide the Hero sidebar “Direct contact” card to reduce scroll length */
  .hero .side .contact-card {
    display: none;
  }

  /* Mobile: tighten hero typography + CTAs so the full hero fits better */
  .hero h2 {
    font-size: clamp(30px, 7.2vw, 44px);
    line-height: 1.02;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.42;
    max-width: 60ch;
  }

  .kicker {
    font-size: 11.5px;
    gap: 8px;
  }

  .hero-actions {
    margin-top: 4px;
    gap: 8px;
  }

  .hero-actions .btn {
    padding: 10px 14px;
    font-size: 12.5px;
  }

  .hero-partners-line {
    margin-top: 6px;
    font-size: 11.5px;
    gap: 4px;
  }

  .hero-partners-line .label {
    font-size: 11px;
  }

  /* Mobile: tighten the HERO side card (What we do) so the full hero fits the screen */
  .side-card {
    padding: 18px 18px;
  }

  .side-card h3 {
    margin: 0 0 8px;
  }

  .check {
    padding: 7px 0;
    font-size: 12.5px;
  }

  .stat-grid {
    gap: 8px;
    margin-top: 10px;
  }

  .stat {
    padding: 10px 10px 9px;
  }

  .stat .n {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .stat .t {
    font-size: 11.5px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: relative;
    top: auto;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  /* Mobile menu (toggle) */
  .nav {
    position: relative;
  }

  .topbar.menu-open .menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(17, 19, 24, 0.1);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 18px 60px rgba(17, 19, 24, 0.12);
    z-index: 1001;
  }

  .topbar.menu-open .menu a {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .topbar.menu-open .menu a:hover {
    background: rgba(227, 196, 138, 0.1);
  }

  .hamb {
    display: inline-flex;
  }

  .nav {
    padding: 10px 12px;
    gap: 10px;
  }

  /* Mobile topbar layout tuning (prevents the CTA buttons from looking squeezed / misaligned) */
  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand h1 {
    font-size: 18px;
    letter-spacing: 0.7px;
  }

  .brand span {
    font-size: 12px;
    margin-top: 1px;
  }

  .nav-cta {
    flex: 0 0 auto;
    gap: 8px;
  }

  /* Mobile: icon-only CTAs (Feather icons) */
  .nav-cta .btn.is-icon .nav-label,
  .nav-cta .btn.is-icon .dot {
    display: none;
  }

  .nav-cta .btn.is-icon {
    padding: 9px 12px;
    gap: 0;
  }

  .nav-cta .btn.is-icon .nav-icon {
    display: block;
    width: 20px;
    height: 20px;
    color: rgba(17, 19, 24, 0.82);
  }

  /* Mobile: reduce vertical rhythm so sections/forms require less scrolling */
  section {
    padding: 24px 0;
  }

  .section-title {
    margin-bottom: 8px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 13px;
    line-height: 1.4;
  }

  #contact .form {
    padding: 14px;
  }

  #contact .form form {
    gap: 7px;
  }

  #contact .row {
    gap: 6px;
  }

  #contact label {
    margin: 0 0 4px;
    font-size: 12px;
  }

  #contact input,
  #contact select,
  #contact textarea {
    padding: 8px 10px;
  }

  #contact textarea {
    min-height: 48px;
  }

  #contact .form-actions {
    margin-top: 8px;
  }
}

/* Tablet / large mobile: keep 2-column rows in the contact form to reduce scroll length */
@media (max-width: 980px) and (min-width: 520px) {
  #contact .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .brand h1 {
    font-size: 17px;
  }

  /* Slightly tighter CTAs so Call/WhatsApp don't look squeezed */
  .nav-cta {
    gap: 6px;
  }

  .nav-cta .btn {
    padding: 8px 10px;
  }

  /* Icon-only CTAs: keep a consistent, compact icon box */
  .nav-cta .btn.is-icon {
    padding: 8px 10px;
  }

  .nav-cta .btn.is-icon .nav-icon {
    width: 19px;
    height: 19px;
  }
}

/* Simple reveal (failsafe: visible by default) */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

/* Only animate/hide when JS is running */
html.js .reveal {
  opacity: 0;
  transform: translateY(10px);
}

html.js .reveal.on {
  opacity: 1;
  transform: none;
}

/* Footer */
.site-footer {
  padding: 18px 0 10px;
  color: rgba(17, 19, 24, 0.66);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  line-height: 1.35;
}

.footer-left,
.footer-right {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-footer {
    padding: 16px 0 14px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .footer-left,
  .footer-right {
    white-space: normal;
  }
}

/* ===========================
   Cookie Consent Banner
   =========================== */

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  inset: auto 16px calc(16px + env(safe-area-inset-bottom, 0px)) 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__card {
  /* Keep the banner compact even when the preferences panel is open */
  width: min(820px, 100%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(17, 19, 24, 0.18);
  padding: 18px 18px 14px 18px;
  pointer-events: auto;
}

.cookie-consent__text h2 {
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.cookie-consent__text p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(17, 19, 24, 0.78);
}

.cookie-consent__links {
  margin-top: 2px;
  font-size: 13px;
}

.cookie-consent__links a {
  color: rgba(17, 19, 24, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}

@media (min-width: 720px) {
  .cookie-consent__actions {
    flex-wrap: nowrap;
  }
}

.cookie-consent__actions--prefs {
  margin-top: 14px;
}

.cc-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 40px;
  line-height: 1;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  color: rgba(17, 19, 24, 0.9);
}

/* Accept: primary CTA */
.cc-btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
  font-weight: 700;
  padding: 12px 18px;
  min-height: 46px;
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.16);
  transform: translateY(0);
}

.cc-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.2);
}

.cc-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.14);
}

/* Preferences: neutral button */
.cc-btn--secondary {
  background: rgba(17, 19, 24, 0.06);
  border-color: rgba(17, 19, 24, 0.14);
  color: rgba(17, 19, 24, 0.9);
  font-weight: 600;
}

.cc-btn--secondary:hover {
  background: rgba(17, 19, 24, 0.09);
}

/* Reject: de-emphasized */
.cc-btn--ghost {
  background: transparent;
  border-color: transparent;
  color: rgba(17, 19, 24, 0.6);
  font-weight: 550;
  padding: 8px 10px;
  min-height: 34px;
  box-shadow: none;
}

.cc-btn--ghost:hover {
  background: rgba(17, 19, 24, 0.04);
  border-color: transparent;
  color: rgba(17, 19, 24, 0.72);
}

.cookie-consent__prefs {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
  /* Keep the toggles from stretching too far on wide screens */
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cc-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.cc-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.cc-muted {
  font-size: 12px;
  color: rgba(17, 19, 24, 0.62);
  margin-top: 3px;
}

/* Footer "Cookie settings" link button */
.cc-link {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
  color: inherit;
}

.cc-link:hover {
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 520px) {
  .cookie-consent__card {
    padding: 16px 14px 12px 14px;
  }

  .cc-btn {
    width: 100%;
  }

  /* Keep "Reject" in the stack but clearly less prominent */
  .cc-btn--ghost {
    width: 100%;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid rgba(17, 19, 24, 0.12);
    background: transparent;
    color: rgba(17, 19, 24, 0.62);
    box-shadow: none;
  }
}

/* Prevent fixed cookie banner from covering page content */
body.has-cookie-banner,
body:has(#cookie-consent:not([hidden])) {
  padding-bottom: 220px;
}

@media (max-width: 520px) {
  body.has-cookie-banner,
  body:has(#cookie-consent:not([hidden])) {
    padding-bottom: 260px;
  }
}

/* ===========================
   Policy pages (Privacy/Cookie)
   Scope: add <body class="policy-page"> on policy pages
   =========================== */

/* Optional: helps SVG icons inside .btn look consistent site-wide */
.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

body.policy-page main {
  padding: 56px 0 64px;
}

body.policy-page .policy-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(17, 19, 24, 0.06);
  padding: 40px 40px;
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);

  color: var(--text-body);
  font-size: 14.8px;
  line-height: 1.68;
}

/* Page title (must be the most prominent heading) */
body.policy-page .policy-title {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--text-main);
  font-size: 42px;
  line-height: 1.08;
}

/* Subtitle / meta line under title */
body.policy-page .policy-updated {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 13.5px;
  letter-spacing: 0.2px;
}

/* Intro paragraphs */
body.policy-page .policy-intro {
  margin: 0 0 18px;
  line-height: 1.62;
  color: var(--text-body);
}

body.policy-page .policy-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(17, 19, 24, 0),
    rgba(17, 19, 24, 0.14),
    rgba(17, 19, 24, 0)
  );
  margin: 28px 0;
}

/* Section headings */
body.policy-page .policy-card h2 {
  margin: 28px 0 10px;
  color: var(--text-main);
  font-size: 18.5px;
  font-weight: 650;
  letter-spacing: 0.15px;
  line-height: 1.35;
}

/* First section heading sits closer to the intro */
body.policy-page .policy-card h2:first-of-type {
  margin-top: 18px;
}

/* Sub-section headings */
body.policy-page .policy-card h3 {
  margin: 16px 0 8px;
  color: rgba(17, 19, 24, 0.88);
  font-size: 14.25px;
  font-weight: 650;
  letter-spacing: 0.12px;
  line-height: 1.4;
}

body.policy-page .policy-card p {
  margin: 0 0 16px;
  line-height: 1.62;
}

body.policy-page .policy-card strong {
  color: rgba(17, 19, 24, 0.9);
}

body.policy-page .policy-card ul,
body.policy-page .policy-card ol {
  margin: 10px 0 16px;
  padding-left: 18px;
  list-style-position: outside;
}

body.policy-page .policy-card li {
  margin: 6px 0;
  line-height: 1.58;
  padding-left: 6px;
}

body.policy-page .policy-card li::marker {
  color: rgba(199, 167, 106, 0.9);
  font-size: 0.95em;
}

body.policy-page .policy-card a.link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(199, 167, 106, 0.65);
}

body.policy-page .policy-card a.link:hover {
  text-decoration-color: rgba(199, 167, 106, 0.95);
}

body.policy-page .policy-note {
  background: rgba(199, 167, 106, 0.10);
  border: 1px solid rgba(199, 167, 106, 0.24);
  border-left: 4px solid rgba(199, 167, 106, 0.55);
  border-radius: 16px;
  padding: 14px 14px;
  color: rgba(17, 19, 24, 0.8);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 14px 0 10px;
}

@media (max-width: 980px) {
  body.policy-page main {
    padding: 36px 0 48px;
  }

  body.policy-page .policy-card {
    padding: 22px 18px;
    border-radius: 18px;
    font-size: 14.3px;
    line-height: 1.66;
  }

  body.policy-page .policy-title {
    font-size: 30px;
  }

  body.policy-page .policy-card h2 {
    font-size: 16.5px;
  }

  body.policy-page .policy-card p {
    margin: 0 0 14px;
  }

  body.policy-page .policy-intro {
    margin: 0 0 16px;
  }
}
