/* ============================================================
   Page sections
   ============================================================ */
.page-fade { animation: pageFade .25s ease both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

.eyebrow.light {
  color: #F0DBA0;
  font-weight: 700;
  letter-spacing: .34em;
  font-size: 13.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,.7), 0 0 14px rgba(201,162,75,.25);
}
.eyebrow.light::before {
  background: linear-gradient(90deg, transparent, #C9A24B 30%, #F0DBA0);
  width: 40px; height: 2px; opacity: .9;
}
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background-color:#16120B; background-image: linear-gradient(165deg,#211B11 0%,#16120B 60%,#100D08 100%); color: var(--cream); overflow: hidden; padding-block: clamp(56px, 8vw, 104px); }
.hero-emblem { position: absolute; top: 50%; left: -120px; transform: translateY(-50%); opacity: .05; pointer-events: none; }
.hero-emblem.right { left: auto; right: -90px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero-cred {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-family: var(--caps);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .18em;
  color: rgba(231,214,174,.78);
}
.hero-cred-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(201,162,75,.55);
}
.hero-title { font-size: clamp(2.2rem, 4.4vw, 3.8rem); color: var(--cream); margin: 14px 0 0; font-weight: 500; line-height: 1.08; display: flex; flex-direction: column; gap: .1em; }
.hero-title .ht-2 { line-height: 1.05; padding-bottom: .08em; }
.hero-text { margin: 30px 0 0; color: rgba(246,241,231,.74); font-size: 1.14rem; line-height: 1.7; max-width: 560px; }
.hero-bul { margin: 28px 0 0; display: flex; flex-direction: column; gap: 13px; }
.hero-bul-row { display: flex; gap: 13px; align-items: flex-start; color: rgba(246,241,231,.82); font-size: 1rem; max-width: 540px; }
.tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(231,214,174,.12); border: 1px solid var(--line-gold); color: var(--gold-bright); display: grid; place-items: center; margin-top: 1px; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; }
/* static glow behind the portrait — no animation to keep scroll smooth */
.hero-media::before {
  content: ""; position: absolute; inset: -10% -8% -10% -8%;
  background: radial-gradient(60% 55% at 50% 45%, rgba(201,162,75,.22) 0%, rgba(201,162,75,0) 70%);
  pointer-events: none;
}
.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 40px 80px -32px rgba(0,0,0,.65),
    0 0 0 1px rgba(231,214,174,.16) inset;
  border: 1px solid rgba(231,214,174,.22);
  aspect-ratio: 4/4.5;
  animation: heroPhotoIn 1.2s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
/* mask-composite gradient border removed for scroll perf — uses base border instead */
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
}
/* hover scale removed for perf */
.hero-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(22,18,11,.05), rgba(22,18,11,.42)); }
/* gold corner ornaments */
.hero-photo .corner { position: absolute; width: 36px; height: 36px; border: 2px solid var(--gold-bright); z-index: 3; pointer-events: none; opacity: .9; }
.hero-photo .corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hero-photo .corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hero-photo .corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hero-photo .corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hero-float {
  position: absolute; left: -26px; bottom: 36px;
  background: linear-gradient(160deg, #FBF8F1 0%, #F6F1E7 100%);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 18px 26px;
  box-shadow: 0 24px 48px -20px rgba(22,18,11,.45);
  border: 1px solid var(--line);
  animation: heroFloatIn 1s cubic-bezier(.22,1,.36,1) both;
  animation-delay: .6s;
}
@keyframes heroFloatIn {
  from { opacity: 0; transform: translateY(14px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
.hero-float::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px;
  background: linear-gradient(180deg,#E9D49A,#C9A24B 50%,#9C7530);
  border-radius: 3px;
}
.hero-float .hf-n { font-family: var(--serif); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--gold-deep); -webkit-text-fill-color: var(--gold-deep); background: none; }
.hero-float .hf-l { font-size: .82rem; color: var(--muted); margin-top: 4px; max-width: 130px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.statsbar { background: var(--cream); border-bottom: 1px solid var(--line-2); position: relative; }
.statsbar::before, .statsbar::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  height: 1px; width: clamp(120px, 18vw, 220px);
}
.statsbar::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,.4) 30%, rgba(231,214,174,.65) 50%, rgba(201,162,75,.4) 70%, transparent);
}
.statsbar-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(28px, 4vw, 46px) 24px;
  text-align: center;
}
.statsbar-cell {
  padding: 0;
  text-align: center;
  border: none;
  position: relative;
}
.statsbar-cell + .statsbar-cell::before {
  content: "";
  position: absolute;
  left: calc(clamp(28px, 4vw, 64px) / -2);
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 64%;
  background: linear-gradient(180deg, transparent, rgba(176,134,60,.35) 30%, rgba(231,214,174,.5) 50%, rgba(176,134,60,.35) 70%, transparent);
}

/* ============================================================
   WHAT
   ============================================================ */
.what { background: var(--cream-2); }
.what-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.what-media { position: relative; }
.what-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/4.6; }
.what-photo img { width: 100%; height: 100%; object-fit: cover; }
.what-quote {
  position: absolute; right: -22px; bottom: -22px;
  background: linear-gradient(160deg, #211B11 0%, #16120B 100%);
  color: var(--cream);
  padding: 24px 28px;
  border-radius: var(--r-lg);
  max-width: 260px;
  border: 1px solid rgba(231,214,174,.18);
  box-shadow: 0 24px 50px -22px rgba(22,18,11,.55);
  position: absolute;
}
.what-quote::before {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  background: linear-gradient(180deg,#E9D49A,#C9A24B 50%,#9C7530);
  border-radius: 3px;
}
.what-quote .q { font-family: var(--serif); font-size: 3rem; color: var(--gold-bright); line-height: .4; display: block; height: 24px; }
.what-quote p { margin: 8px 0 0; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: rgba(246,241,231,.92); }
.what-lead { margin-top: 22px; }
.what-ben { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.what-ben-t { font-family: var(--caps); text-transform: uppercase; letter-spacing: .16em; font-size: .92rem; color: var(--gold-deep); margin: 0 0 12px; font-weight: 400; }
.what-ben-x { margin: 0 0 20px; color: var(--muted); }

.checklist { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.ck { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: var(--gold-wash); border: 1px solid var(--line-gold); color: var(--gold-deep); display: grid; place-items: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); }
.services .sec-head { margin-bottom: 52px; }
.svc-layout { display: grid; grid-template-columns: minmax(280px, 1fr) 1.35fr; gap: 30px; align-items: start; }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-tab {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  text-align: left; width: 100%; padding: 16px 18px;
  background: var(--cream-2); border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  transition: background .4s ease, border-color .4s ease, color .4s ease;
}
/* thin gold underline that grows from center when active */
.svc-tab::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 10px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,.7), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.svc-tab:hover { background: #fbf5e8; border-color: var(--line-gold); }
.svc-tab.on { background: var(--cream); border-color: var(--line-gold); }
.svc-tab.on::after { transform: scaleX(1); }

.svc-tab-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-wash); color: var(--gold-deep);
  border: 1px solid var(--line-gold);
  transition: background .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.svc-tab-ic svg { transition: filter .45s ease; }
.svc-tab.on .svc-tab-ic {
  background: linear-gradient(135deg, rgba(22,18,11,.96) 0%, rgba(22,18,11,1) 100%);
  color: var(--gold-bright);
  border-color: rgba(231,214,174,.32);
  box-shadow:
    0 10px 22px -12px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(231,214,174,.18);
}
.svc-tab.on .svc-tab-ic svg { /* drop-shadow removed for perf */ }
.svc-tab-tx { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.svc-tab-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.1; transition: color .35s ease; overflow-wrap: break-word; }
.svc-tab.on .svc-tab-name { color: var(--gold-deep); }
.svc-tab-short { font-size: .82rem; color: var(--muted); transition: color .35s ease; line-height: 1.35; }
.svc-tab-arr { display: none; }

.svc-detail {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(32px, 4vw, 48px);
  animation: svcIn .45s ease both;
  position: relative;
}
@keyframes svcIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.svc-detail > * { animation: svcChildIn .45s ease both; }
.svc-detail > *:nth-child(2) { animation-delay: .06s; }
.svc-detail > *:nth-child(3) { animation-delay: .10s; }
.svc-detail > *:nth-child(4) { animation-delay: .14s; }
.svc-detail > *:nth-child(5) { animation-delay: .18s; }
@keyframes svcChildIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.svc-detail-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
  background: var(--gold-wash);
  box-shadow: 0 18px 40px -24px rgba(22,18,11,.35);
}
.svc-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* hover scale removed for perf */
.svc-detail-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,18,11,0) 40%, rgba(22,18,11,.55) 100%);
  pointer-events: none;
}
.svc-detail-img-ic {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: #16120B;
  color: var(--gold-bright);
  border: 1px solid rgba(231,214,174,.32);
  box-shadow:
    0 14px 28px -14px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(231,214,174,.18);
  animation: badgeIn .55s cubic-bezier(.22,1,.36,1) both;
  animation-delay: .25s;
}
.svc-detail-img-ic svg {
  width: 26px; height: 26px;
  /* drop-shadow removed for perf */
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(8px) scale(.92); }
  to   { opacity: 1; transform: none; }
}
.svc-detail-ic { width: 64px; height: 64px; margin-bottom: 22px; }
.svc-detail-ic svg { width: 32px; height: 32px; }
.svc-detail-name { font-size: clamp(2rem, 3.5vw, 2.9rem); margin: 14px 0 18px; }
.svc-detail-text { color: var(--muted); font-size: 1.06rem; line-height: 1.75; margin: 0 0 28px; }

/* ============================================================
   PROMISE
   ============================================================ */
.promise { background: var(--ink); color: var(--cream); overflow: hidden; }
.promise-bg { position: absolute; inset: 0; background-image: var(--bgimg); background-size: cover; background-position: center; opacity: .05; }
.promise::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,11,.5) 0%, rgba(22,18,11,.2) 50%, rgba(22,18,11,.5) 100%); pointer-events: none; z-index: 0; }
.promise .wrap { position: relative; z-index: 1; }
.promise .wrap { position: relative; z-index: 1; }
.promise .sec-head { margin-bottom: 56px; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promise-card {
  background: rgba(246,241,231,.04);
  border: 1px solid rgba(231,214,174,.14);
  border-radius: var(--r-xl);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s, background .35s, box-shadow .35s;
}
.promise-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231,214,174,.35);
  background: rgba(246,241,231,.06);
  box-shadow: 0 28px 50px -28px rgba(0,0,0,.6);
}
.promise-card:hover::after { transform: scaleX(1); }
.promise-card .icon-badge { transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.promise-card:hover .icon-badge { transform: scale(1.08) rotate(-2deg); }
.promise-num { position: absolute; top: 30px; right: 32px; font-family: var(--serif); font-size: 1.6rem; color: rgba(231,214,174,.3); }
.promise-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin: 6px 0 12px; color: var(--cream); }
.promise-card p { color: rgba(246,241,231,.66); margin: 0; line-height: 1.65; }

/* ============================================================
   BOOKING
   ============================================================ */
/* ============================================================
   "MERIDIAN OF AGREEMENT" — custom background system
   - warm directional light (golden hour) from top-right
   - oversized SG emblem watermark anchored architecturally
   - two converging arcs meeting on a luminous horizontal meridian
   - paper-grain depth
   ============================================================ */
.booking {
  position: relative;
  overflow: hidden;
  padding-block: clamp(28px, 3vw, 48px) clamp(56px, 7vw, 96px);
  background-color: #F8F2E3;
  background-image:
    radial-gradient(72% 62% at 100% -8%, rgba(231,214,174,.30) 0%, rgba(231,214,174,0) 58%),
    radial-gradient(55% 60% at -8% 110%, rgba(135,99,38,.07) 0%, rgba(135,99,38,0) 60%);
}
/* watermark removed for scroll perf */
/* meridian removed for scroll perf */
.booking .wrap { position: relative; z-index: 2; }

/* unify form card and trust card on this textured backdrop — no backdrop-filter (kills scroll perf) */
.booking .form-card {
  background: #FFFCF4;
  border-color: rgba(231,214,174,.45);
}
.booking .booking-direct {
  background: #FFFCF4 !important;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1080px; margin-inline: auto;
}
/* ============================================================
   BOOKING — balanced two-column with credibility & decorative depth
   ============================================================ */
.booking-info {
  position: relative;
  padding-right: clamp(0px, 2vw, 24px);
  max-width: 540px;
  isolation: isolate;
}
/* Subtle decorative SVG flourish — large gold ornament behind content, left-aligned */
.booking-info-deco {
  position: absolute;
  left: -60px; top: 30px;
  width: 320px; height: 320px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23B0863C' stroke-width='.4'><circle cx='100' cy='100' r='90'/><circle cx='100' cy='100' r='70'/><path d='M100 10v180M10 100h180'/><path d='M30 30l140 140M170 30L30 170' stroke-width='.25'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .08;
  pointer-events: none;
  z-index: -1;
}
.booking-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  line-height: 1.05;
  margin: 14px 0 0;
  letter-spacing: -.015em;
  display: flex;
  flex-direction: column;
  gap: .08em;
}
.bt-a { color: var(--ink); }
.bt-b { font-size: .92em; line-height: 1.1; }
.booking-tagline {
  margin: 22px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
}

/* Stat boxes — 3 inline credibility numbers with serif accent */
.booking-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding: 22px 18px;
  background: linear-gradient(135deg, rgba(255,253,247,.85), rgba(243,235,217,.65));
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  box-shadow: 0 18px 40px -28px rgba(135,99,38,.25);
}
.bs-box { text-align: center; }
.bs-n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.02em;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.bs-l {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.35;
  opacity: .82;
}

/* Mediator credibility card — portrait + name + role + verified */
.booking-mediator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 14px 18px 14px 14px;
  background: var(--paper);
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  box-shadow: 0 16px 36px -24px rgba(22,18,11,.2);
}
.bm-portrait {
  position: relative;
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 16px -6px rgba(135,99,38,.4);
}
.bm-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 14%;
}
.bm-verified {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg,#E9D49A,#C9A24B 60%,#9C7530);
  color: #2a1f08;
  display: grid; place-items: center;
  border: 2px solid var(--paper);
}
.bm-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.bm-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.15;
}
.bm-role {
  font-size: .82rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: .015em;
  margin-top: 2px;
}
.bm-since {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 3px;
  font-style: italic;
}

/* Direct line — refined pill */
.booking-directline {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 22px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-gold);
  background: transparent;
  text-decoration: none;
  transition: border-color .25s, background .25s;
}
.booking-directline:hover { border-color: var(--gold); background: var(--gold-wash); }
.bdl-label {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  color: var(--gold-deep);
}
.bdl-num {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.bdl-num svg { color: var(--gold); }

@media (max-width: 540px) {
  .booking-stats { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .booking-mediator { padding: 12px 14px; gap: 12px; }
  .bm-portrait { width: 54px; height: 54px; }
}

/* Cum decurge — minimal, bold serif numerals, gentle stagger reveal */
.booking-steps { margin-top: 44px; }
.bk-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.bk-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s;
  animation: stepIn .65s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(var(--i) * .12s + .15s);
}
.bk-step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg,#E9D49A,#C9A24B 50%,#9C7530);
  transform: scaleY(.4); transform-origin: center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.bk-step:hover {
  transform: translateX(4px);
  border-color: var(--line-gold);
  box-shadow: 0 18px 38px -22px rgba(135,99,38,.35);
}
.bk-step:hover::before { transform: scaleY(1); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.bk-step-n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
  min-width: 64px;
}
.bk-step-body { display: flex; flex-direction: column; gap: 4px; }
.bk-step b { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.bk-step span { color: var(--muted); font-size: .9rem; line-height: 1.5; }

.booking-direct { margin-top: 32px !important; padding-top: 26px; }
.booking-feats { margin: 30px 0 0; display: flex; flex-direction: column; gap: 18px; }
.bk-feat { display: flex; gap: 16px; align-items: flex-start; }
.bk-feat-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--paper); border: 1px solid var(--line-gold); color: var(--gold-deep); display: grid; place-items: center; box-shadow: var(--sh-sm); }
.bk-feat b { display: block; font-size: 1.04rem; }
.bk-feat span { color: var(--muted); font-size: .95rem; }

/* Guarantees row */
.booking-guarantees { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; padding: 14px 18px; background: var(--paper); border: 1px solid var(--line-gold); border-radius: var(--r-lg); }
.bk-guar { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.bk-guar svg { color: var(--gold-deep); flex-shrink: 0; }

/* Form select + radio mode */
.field .select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.field .select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,134,60,.18); }
.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.radio-pill {
  position: relative; cursor: pointer;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-gold);
  background: transparent;
  font-size: .88rem; font-weight: 600;
  color: var(--ink);
  letter-spacing: .015em;
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s cubic-bezier(.2,.7,.2,1);
  user-select: none;
  display: inline-flex; align-items: center;
}
.radio-pill input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.radio-pill:focus,
.radio-pill:focus-visible,
.radio-pill:focus-within,
.radio-pill *:focus,
.radio-pill *:focus-visible { outline: none !important; box-shadow: none !important; }
.radio-pill:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-wash); transform: translateY(-1px); }
.radio-pill.on {
  background: linear-gradient(135deg,#E9D49A 0%,#C9A24B 30%,#9C7530 55%,#D8BC78 78%,#A9802F 100%);
  color: #2a1f08;
  border-color: transparent;
  box-shadow: 0 6px 18px -6px rgba(135,99,38,.45);
}
.radio-pill.on:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(135,99,38,.55); }
.booking-direct { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 16px; flex-wrap: wrap; }
.bd-item { display: flex; gap: 13px; align-items: center; transition: transform .2s; }
.bd-item:hover { transform: translateY(-2px); }
.bd-ic { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold-bright); display: grid; place-items: center; }
.bd-item span { display: flex; flex-direction: column; font-weight: 600; }
.bd-item small { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-deep); font-weight: 700; margin-bottom: 3px; }

/* ---- Form card ---- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3.5vw, 40px) clamp(26px, 3.5vw, 36px);
  box-shadow: 0 40px 80px -36px rgba(22,18,11,.3), 0 8px 22px -14px rgba(22,18,11,.08);
}
.form-card.no-head { padding-top: clamp(32px, 3.5vw, 40px); }
.form-card.no-head .field:first-of-type { margin-top: 0; }
.form-card.on-ink { background: var(--ink-2); border-color: rgba(231,214,174,.16); }
.form-head { margin-bottom: 22px; }
.form-head h3 { font-size: 1.9rem; margin: 8px 0 0; }
.form-card input.err { border-color: #b4452f; background: #fdf3f0; box-shadow: 0 0 0 3px rgba(180,69,47,.1); }
.form-card .btn-block { margin-top: 8px; padding: 18px 32px; font-size: 1.04rem; }
.form-note { display: flex; align-items: center; gap: 8px; justify-content: center; margin: 18px 0 0; font-size: .8rem; color: #6B6354; letter-spacing: .02em; }
.form-note svg { color: var(--gold-deep); }
/* Hide label for cleaner look; placeholder + floating eyebrow-like label visible */
.form-card.no-head .field label,
.form-card.no-head fieldset.field legend {
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--gold-deep);
  margin-bottom: 5px;
}
.form-card.no-head .field input,
.form-card.no-head .field textarea {
  padding: 13px 15px;
  font-size: .98rem;
  border-radius: 11px;
}
.form-card.no-head .field { margin-bottom: 14px; }
.form-card.no-head fieldset.field { margin-bottom: 14px !important; }
.form-card.no-head .radio-pill { padding: 8px 14px; font-size: .85rem; }
.form-card .field label .req { display: none; }
.form-success { text-align: center; display: flex; flex-direction: column; align-items: center; }
.ok-badge { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg,#E9D49A 0%,#C9A24B 30%,#9C7530 55%,#D8BC78 78%,#A9802F 100%); color: #2a1f08; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--sh-gold); }
.form-success h3 { font-size: 1.8rem; margin: 0 0 14px; }
.form-success p { color: var(--muted); margin: 4px 0; }
.ok-note { margin-top: 14px !important; font-size: .9rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.abt-hero { position: relative; background-color:#16120B; background-image: linear-gradient(165deg,#211B11 0%,#16120B 60%,#100D08 100%); color: var(--cream); overflow: hidden; padding-block: clamp(56px, 8vw, 100px); }
.abt-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.abt-title { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--cream); margin: 20px 0 0; }
.abt-sub { margin: 22px 0 0; color: rgba(246,241,231,.74); font-size: 1.16rem; line-height: 1.65; max-width: 520px; }
.abt-stats { display: flex; gap: clamp(22px, 3vw, 38px); margin-top: 38px; flex-wrap: wrap; }
.abt-stats .stat { padding-left: clamp(22px, 3vw, 38px); border-left: 1px solid rgba(231,214,174,.2); }
.abt-stats .stat:first-child { padding-left: 0; border-left: none; }
.abt-portrait-wrap { position: relative; }
.abt-portrait { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid rgba(231,214,174,.18); aspect-ratio: 4/4.7; }
.abt-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 14%; }
.abt-portrait::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(22,18,11,.4)); border-radius: var(--r-xl); }
.abt-portrait-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(22,18,11,.85);
  color: var(--cream);
  border-radius: 100px;
  padding: 10px 18px;
  border: 1px solid rgba(231,214,174,.28);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,.5);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  white-space: nowrap;
  z-index: 2;
}
.abt-portrait-badge svg { color: var(--gold-bright); }

/* text block */
.text-block { background: var(--cream-2); }
.tb-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.tb-grid.flip .tb-media { order: -1; }
.tb-para { margin: 20px 0 0; color: var(--muted); font-size: 1.06rem; line-height: 1.78; }
.tb-media { position: relative; }
.tb-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3.6; position: relative; z-index: 1; }
.tb-photo img { width: 100%; height: 100%; object-fit: cover; }
.tb-deco { position: absolute; right: -16px; top: -16px; width: 60%; height: 60%; border: 1px solid var(--line-gold); border-radius: var(--r-xl); z-index: 0; }

/* mission */
.mission { background: var(--paper); text-align: center; position: relative; overflow: hidden; }
.mission-emblem { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: .045; pointer-events: none; }
.mission-in { position: relative; z-index: 1; max-width: 820px; }
.mission-t { font-size: clamp(2rem, 4vw, 3rem); margin: 18px 0 28px; }
.mission-p { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.55; color: var(--ink-soft); margin: 0 0 20px; font-weight: 500; }
.mission-p:nth-child(3) { font-style: italic; color: var(--gold-deep); }

/* recognition */
.recog { background: var(--cream); }
.recog .sec-head { margin-bottom: 48px; }
.recog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.recog-card { display: flex; gap: 22px; align-items: flex-start; padding: 30px; }
.recog-card .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.recog-card p { margin: 0; font-size: 1.08rem; line-height: 1.6; font-weight: 500; align-self: center; }

/* cta band */
.cta-band { background-color:#16120B; background-image: linear-gradient(165deg,#211B11 0%,#16120B 60%,#100D08 100%); color: var(--cream); position: relative; overflow: hidden; }
.cta-band-in { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-t { font-size: clamp(1.8rem, 3.4vw, 2.8rem); color: var(--cream); margin: 14px 0 0; max-width: 560px; }
.cta-band-act { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.ctc-hero { position: relative; background-color:#16120B; background-image: linear-gradient(165deg,#211B11 0%,#16120B 60%,#100D08 100%); color: var(--cream); overflow: hidden; padding-block: clamp(56px, 8vw, 100px); }
.ctc-hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.ctc-title { font-size: clamp(2.8rem, 6vw, 4.6rem); color: var(--cream); margin: 18px 0 0; }
.ctc-sub { margin: 20px 0 0; color: rgba(246,241,231,.74); font-size: 1.14rem; max-width: 440px; }
.ctc-active { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; font-weight: 600; font-size: .9rem; color: var(--gold-bright); padding: 8px 16px; border: 1px solid var(--line-gold); border-radius: 100px; }
.ctc-active .dot { width: 9px; height: 9px; border-radius: 50%; background: #4caf72; box-shadow: 0 0 10px rgba(76,175,114,.55); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(76,175,114,.5); } 70% { box-shadow: 0 0 0 9px rgba(76,175,114,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,114,0); } }
/* Vertical contact list — phone / email / address / hours with actions */
.ctc-list { display: flex; flex-direction: column; gap: 12px; }
.ctc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(246,241,231,.04);
  border: 1px solid rgba(231,214,174,.16);
  border-radius: 14px;
  transition: border-color .3s, background .3s, transform .3s;
}
.ctc-row:hover { border-color: rgba(231,214,174,.36); background: rgba(246,241,231,.06); transform: translateY(-2px); }
.ctc-row-ic {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(231,214,174,.16), rgba(135,99,38,.18));
  color: var(--gold-bright);
  display: grid; place-items: center;
  border: 1px solid rgba(231,214,174,.22);
}
.ctc-row-tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ctc-row-tx small {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-bright);
  font-weight: 600;
}
.ctc-row-val {
  color: var(--cream);
  font-weight: 600;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
.ctc-row-act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ctc-row-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600;
  color: var(--gold-bright);
  padding: 5px 11px;
  border: 1px solid rgba(231,214,174,.25);
  border-radius: 999px;
  background: rgba(231,214,174,.05);
}
.ctc-row-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4caf72;
  box-shadow: 0 0 8px rgba(76,175,114,.55);
}
.ctc-row-badge.is-closed { color: rgba(246,241,231,.65); border-color: rgba(231,214,174,.18); background: rgba(255,180,140,.04); }
.ctc-row-badge.is-closed .dot { background: #d18a5a; box-shadow: 0 0 8px rgba(209,138,90,.45); }

/* Action buttons inside row */
.ctc-act {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
}
.ctc-act svg { flex-shrink: 0; }
.ctc-act-primary {
  color: #2a1f08;
  background: linear-gradient(135deg,#E9D49A 0%,#C9A24B 30%,#9C7530 55%,#D8BC78 78%,#A9802F 100%);
  box-shadow: 0 8px 18px -10px rgba(135,99,38,.55);
}
.ctc-act-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 22px -10px rgba(135,99,38,.7); }
.ctc-act-copy {
  color: rgba(246,241,231,.78);
  border-color: rgba(231,214,174,.22);
}
.ctc-act-copy:hover { color: var(--gold-bright); border-color: var(--gold); background: rgba(231,214,174,.06); }
.ctc-act-copy.done { color: #6dd49a; border-color: rgba(109,212,154,.4); background: rgba(109,212,154,.08); }

@media (max-width: 720px) {
  .ctc-row { grid-template-columns: auto 1fr; gap: 14px; padding: 16px 18px; }
  .ctc-row-act { grid-column: 1 / -1; justify-self: end; }
  .ctc-act span { display: none; }
  .ctc-act { padding: 9px 11px; }
  .ctc-row-val { white-space: normal; }
}

.ctc-booking { background: var(--cream-2); }
.ctc-steps { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.ctc-step { display: flex; gap: 18px; align-items: flex-start; }
.ctc-step-n { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#E9D49A 0%,#C9A24B 30%,#9C7530 55%,#D8BC78 78%,#A9802F 100%); color: #2a1f08; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.2rem; box-shadow: var(--sh-sm); }
.ctc-step b { display: block; font-size: 1.06rem; }
.ctc-step span { color: var(--muted); font-size: .96rem; }

/* map */
.mapsec { background: var(--cream-2); padding-top: 0; }
.map-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--line); aspect-ratio: 21/8; }
.map-ph { position: relative; width: 100%; height: 100%; background: var(--ink); display: grid; place-items: center; overflow: hidden; }
.map-ph-grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(231,214,174,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(231,214,174,.4) 1px, transparent 1px); background-size: 46px 46px; }
.map-ph-pin { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: rgba(231,214,174,.1); border: 1px solid rgba(231,214,174,.22); color: var(--gold-bright); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.map-ph-copy { position: relative; z-index: 1; text-align: center; color: var(--cream); max-width: 440px; padding: 24px; }
.map-ph-copy h3 { font-size: 1.7rem; margin: 0 0 10px; color: var(--cream); line-height: 1.18; }
.map-ph-copy p { color: rgba(246,241,231,.64); margin: 0 0 20px; }
.map-note { display: block; margin-top: 14px; font-size: .78rem; color: rgba(246,241,231,.4); }
.map-frame { width: 100%; height: 100%; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .what-grid, .booking-grid, .abt-hero-grid, .tb-grid, .svc-layout, .ctc-hero-in { grid-template-columns: 1fr; }
  .hero-media, .abt-portrait-wrap { max-width: 480px; }
  .what-media { max-width: 460px; margin-inline: auto; }
  .tb-grid.flip .tb-media { order: 0; }
  .form-card { position: static; }
  .promise-grid { grid-template-columns: 1fr; }
  .svc-tab-arr { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .statsbar-in { grid-template-columns: 1fr; }
  .statsbar-cell { border-right: none; border-bottom: 1px solid var(--line-2); }
  .statsbar-cell:last-child { border-bottom: none; }
  .ctc-cards { grid-template-columns: 1fr; }
  .recog-grid { grid-template-columns: 1fr; }
  .abt-stats { gap: 28px; }
  .hero-float { left: 0; }
  .what-quote { position: static; margin-top: 18px; right: auto; bottom: auto; max-width: 100%; }
  .map-card { aspect-ratio: 4/5; }
  .statsbar-in { flex-direction: column; gap: 22px; }
  .statsbar-cell + .statsbar-cell::before { display: none; }
  /* booking section mobile polish */
  .booking-direct { gap: 14px; }
  .bd-item { flex: 1 1 100%; }
  .booking-guarantees { gap: 12px; padding: 12px 14px; }
  .bk-guar { font-size: .82rem; }
  .radio-pill { padding: 9px 14px; font-size: .88rem; }
  .booking-steps-t { font-size: .78rem; }
  .bk-step-n { width: 32px; height: 32px; font-size: .92rem; }
  .bk-steps::before { left: 16px; }
}

/* ============================================================
   MOBILE — touch targets, safety paddings, iOS no-zoom
   ============================================================ */
@media (max-width: 720px) {
  /* iOS no-zoom on focus — input font must be ≥ 16px */
  .field input, .field textarea, .field select { font-size: 16px; }
  /* Touch targets minimum 44px height per Apple HIG */
  .btn, .navlink, .lang button, .ctc-act, .radio-pill { min-height: 44px; }
  /* Larger interaction zones on mobile */
  .ctc-act { padding: 11px 13px; }
  /* Booking trust cards: tighter padding so they fit comfortably */
  .bt-item { padding: 14px 16px; }
  .booking-contact-card { max-width: 100%; }
  /* Hero CTAs: stack vertically with full width pills */
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  /* Services tabs: compress on mobile */
  .svc-tab { padding: 14px 16px; }
  .svc-tab-name { font-size: 1.18rem; }
  .svc-tab-short { font-size: .78rem; }
  /* Contact list rows: tighter */
  .ctc-row { padding: 14px 16px; gap: 12px; }
  .ctc-row-val { font-size: .95rem; }
  /* Form card: full width */
  .form-card { padding: 22px 18px; border-radius: 16px; }
  /* Footer items: tighter dots and gaps */
  .ftr-mark { gap: 14px; margin-bottom: 22px; }
}

@media (max-width: 480px) {
  /* Section padding reduced for smaller screens */
  .section { padding-block: clamp(40px, 8vw, 64px); }
  /* Topbar wraps below header at very small */
  .topbar-in { height: auto; padding-block: 8px; }
  .tb-center { display: none; }
  /* Hero text smaller */
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-text { font-size: 1rem; }
  /* Booking title smaller */
  .booking-title { font-size: clamp(1.6rem, 7vw, 2rem); }
  /* Contact card stacks already at 520px */
  /* Form input touch padding */
  .field input, .field textarea { padding: 14px 16px; }
  .field { margin-bottom: 16px; }
}

/* Safe area for iPhone notch */
@supports (padding: max(0px)) {
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}

/* ============================================================
   MOBILE UX HOTFIXES (v=80)
   Targeted fixes for: hero-emblem overflow, sub-44px touch
   targets (lang buttons, burger, tb-phone, ctc-act-primary),
   and inputs that should reach min size on tablet.
   ============================================================ */

/* Hero decorative emblem must never escape the viewport.
   It's a translucent background motif (.05 opacity), safe to clip
   to its container on small screens and scale down. */
.hero { contain: paint; }
.hero-emblem,
.hero-emblem.right { max-width: 60vw; }
.hero-emblem .emblem-img,
.hero-emblem img { max-width: 100%; height: auto; }

@media (max-width: 1080px) {
  .hero-emblem,
  .hero-emblem.right { left: -25vw; right: auto; max-width: 70vw; }
  .hero-emblem.right { left: auto; right: -25vw; }
}

@media (max-width: 720px) {
  /* Below tablet, the emblem is more distracting than decorative — keep it
     but cap and shift further off-canvas so it never causes overflow. */
  .hero-emblem,
  .hero-emblem.right {
    max-width: 75vw;
    left: -35vw;
    right: auto;
    opacity: .035;
  }
  .hero-emblem.right { left: auto; right: -35vw; }
  .hero-emblem img,
  .hero-emblem .emblem-img { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  /* On the smallest phones, suppress entirely — visual weight too high. */
  .hero-emblem { display: none; }
}

/* Touch targets — phone, language pills, burger, primary contact CTA.
   Apple HIG / WCAG 2.5.5 require minimum 44x44px hit area. */
@media (max-width: 980px) {
  .burger {
    width: 44px;
    height: 44px;
    /* preserve original look — inner bars unchanged */
  }
}

@media (max-width: 720px) {
  /* Language selector: expand hit-zone without changing visual size much */
  .lang { gap: 2px; }
  .lang button {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Topbar phone pill: keep look but ensure 44px row */
  .tb-phone {
    min-height: 44px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* Primary contact CTA "Sună" — was 43x44, push to 48 min */
  .ctc-act,
  .ctc-act-primary,
  .ctc-act-copy {
    min-width: 48px;
    min-height: 44px;
  }
}

/* Tablet (768-1024): same touch-target floor — fingers are still fingers. */
@media (min-width: 721px) and (max-width: 1080px) {
  .lang button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .tb-phone {
    min-height: 44px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}

/* svc-layout's minmax(280px,1fr) can exceed a 320px viewport once gutters
   are removed. Force single-column + unbounded min on tablet & phone, and
   tighten interior padding so the tab + 46px icon + name still fit at 320px. */
@media (max-width: 980px) {
  /* `1fr` auto-expands to min-content of children; use minmax(0,1fr) so
     the track is allowed to shrink below intrinsic content width. */
  .svc-layout { grid-template-columns: minmax(0, 1fr); min-width: 0; }
  .svc-list { min-width: 0; width: 100%; }
  .svc-tab { min-width: 0; max-width: 100%; width: 100%; box-sizing: border-box; }
  .svc-tab-tx { min-width: 0; }
  .svc-tab-name,
  .svc-tab-short { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
}
@media (max-width: 380px) {
  .svc-tab { padding: 12px 12px; gap: 12px; }
  .svc-tab-ic { width: 40px; height: 40px; }
}

/* Tablet (721-1080): the contact action chips still need 44px height. */
@media (max-width: 1080px) {
  .ctc-act,
  .ctc-act-primary,
  .ctc-act-copy { min-height: 44px; padding-block: 10px; }
}

/* Defense-in-depth: never allow horizontal scroll caused by absolute kids. */
html, body { overflow-x: hidden; }

