/* ==========================================================================
   AS DENTAL — Design System
   Palette + type derived from the AS Dental mark: an engraved serif
   monogram on charcoal, with a smile-arc beneath it. That arc is reused
   throughout the site as the signature divider under section titles.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* ---- Color tokens ------------------------------------------------- */
  --as-ink:        #1b1a18;   /* logo circle charcoal-black */
  --as-ink-soft:   #2c2a26;   /* raised panels on ink */
  --as-paper:      #faf7f2;   /* warm ivory page background */
  --as-paper-dim:  #f1ece3;   /* alt section background */
  --as-white:      #ffffff;
  --as-bronze:     #a9895a;   /* metallic accent, dental-gold */
  --as-bronze-dim: #cbb28c;
  --as-line:       #ded7c8;   /* hairline on paper */
  --as-line-dark:  rgba(250,247,242,0.16); /* hairline on ink */
  --as-text:       #2a2823;
  --as-text-soft:  #6b665c;
  --as-text-on-ink: #f3efe7;
  --as-text-on-ink-soft: #b9b4a8;

  /* ---- Type ------------------------------------------------------------ */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ----------------------------------------------------------- */
  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--as-text);
  background: var(--as-paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 500; }
p{ margin: 0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--as-bronze);
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--as-bronze);
  display: inline-block;
}

/* ---- Signature element: the smile-arc divider ---------------------------
   Redrawn from the logo's underline swoosh. Used under every section
   title as this site's one recurring, recognizable mark. */
.smile-arc{
  display: block;
  width: 84px;
  height: 20px;
  margin-top: 18px;
}
.smile-arc path{
  fill: none;
  stroke: var(--as-bronze);
  stroke-width: 2;
  stroke-linecap: round;
}
.smile-arc.on-ink path{ stroke: var(--as-bronze-dim); }

.section-head{ max-width: 640px; }
.section-head.center{ max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .smile-arc{ margin-left: auto; margin-right: auto; }
.section-head h2{
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin-top: 18px;
  white-space: pre-line;
}
.section-head p{
  margin-top: 18px;
  font-size: 17px;
  color: var(--as-text-soft);
}

section{ padding: 108px 0; }
@media (max-width: 720px){ section{ padding: 72px 0; } }

/* ---- Buttons -------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-bronze{
  background: var(--as-bronze);
  color: var(--as-ink);
}
.btn-bronze:hover{ background: var(--as-bronze-dim); transform: translateY(-1px); }
.btn-ink{
  background: var(--as-ink);
  color: var(--as-paper);
}
.btn-ink:hover{ background: #000; transform: translateY(-1px); }
.btn-outline-light{
  border-color: var(--as-line-dark);
  color: var(--as-text-on-ink);
}
.btn-outline-light:hover{ border-color: var(--as-bronze-dim); color: var(--as-bronze-dim); }
.btn-outline-dark{
  border-color: var(--as-line);
  color: var(--as-text);
}
.btn-outline-dark:hover{ border-color: var(--as-bronze); color: var(--as-bronze); }
.btn-block{ width: 100%; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27,26,24,0.0);
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  background: rgba(27,26,24,0.92);
  backdrop-filter: blur(10px);
  border-color: var(--as-line-dark);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark{ width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-logo-text .name{
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--as-text-on-ink);
  letter-spacing: 0.02em;
}
.nav-logo-text .sub{
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--as-bronze-dim);
  margin-top: 2px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--as-text-on-ink-soft);
  transition: color .25s var(--ease);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active{ color: var(--as-text-on-ink); }
.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--as-bronze);
}
.nav-right{ display: flex; align-items: center; gap: 18px; }
.lang-switch{
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--as-line-dark);
  border-radius: 20px;
  padding: 3px;
}
.lang-switch button{
  border: none;
  background: transparent;
  color: var(--as-text-on-ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 16px;
  transition: all .25s var(--ease);
}
.lang-switch button.active{ background: var(--as-bronze); color: var(--as-ink); }
.nav-toggle{
  display: none;
  width: 26px; height: 20px;
  position: relative;
  border: none; background: none;
  flex-shrink: 0;
}
.nav-toggle span{
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--as-text-on-ink);
  transition: all .3s var(--ease);
}
.nav-toggle span:nth-child(1){ top: 0; }
.nav-toggle span:nth-child(2){ top: 9px; }
.nav-toggle span:nth-child(3){ top: 18px; }
.nav-toggle.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 880px){
  /* Language switch stays visible in the top bar on phone — only the
     book button moves into the dropdown, so the switch gets room to
     breathe instead of competing with it for space. */
  .nav-right > a.btn{ display: none; }
  .nav-right{ gap: 12px; }

  .nav-links{
    position: fixed;
    top: 84px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--as-ink);
    border-bottom: 1px solid var(--as-line-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .nav-links.open{ max-height: 620px; }
  .nav-links a{ padding: 18px 32px; width: 100%; font-size: 15px; }
  .nav-toggle{ display: block; }

  .nav-mobile-extra{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px 32px;
    margin-top: 4px;
    border-top: 1px solid var(--as-line-dark);
  }
  .nav-mobile-extra .btn{ width: 100%; }
}

@media (max-width: 620px){
  /* Give the header's language switch real tap targets instead of a
     squeezed pill once the layout gets tight. */
  .nav-right{ gap: 10px; }
  .lang-switch{
    gap: 4px;
    padding: 4px;
    border-radius: 22px;
  }
  .lang-switch button{
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px){
  .nav-inner{ height: 72px; }
  .nav-links{ top: 72px; }
  .nav-logo-text .name{ font-size: 18px; }
  .nav-logo-text .sub{ font-size: 8px; letter-spacing: 0.22em; }
  .nav-logo-mark{ width: 34px; height: 34px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(18, 31, 23, 0.92) 0%,
      rgba(18, 31, 23, 0.82) 35%,
      rgba(18, 31, 23, 0.40) 65%,
      rgba(18, 31, 23, 0.15) 100%
    ),
    url("../images/green.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--as-text-on-ink);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  /* faint radial glow, echoing the logo circle's soft vignette */
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(169,137,90,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-title{
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.06;
  white-space: pre-line;
  margin-top: 20px;
}
.hero-title em{ font-style: italic; color: var(--as-bronze-dim); }
.hero-subtitle{
  margin-top: 26px;
  font-size: 18px;
  max-width: 480px;
  color: var(--as-text-on-ink-soft);
}
.hero-actions{
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats{
  margin-top: 64px;
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-stat .value{
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--as-bronze-dim);
}
.hero-stat .label{
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--as-text-on-ink-soft);
  margin-top: 4px;
}

.hero-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem {
  width: 100%;
  max-width: 420px;
  color: var(--as-text-on-ink); /* This targets your standard cream-white text color */
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 280px; margin: 0 auto 20px; }
  .hero{ padding: 140px 0 72px; }
}

/* ==========================================================================
   DOCTOR / ABOUT
   ========================================================================== */
/* SECTION BASE & BACKGROUND FIX */
/* ==========================================
   DOCTOR SECTION
   ========================================== */

/* SECTION BASE & DESKTOP BACKGROUND */


/* SECTION BASE & BACKGROUND */

/* ==========================================
   DOCTOR SECTION
   ========================================== */

/* SECTION BASE & DESKTOP BACKGROUND */
/* =========================================================
   DOCTOR SECTION — CLEAN PREMIUM
   ========================================================= */

/* =========================================================
   DOCTOR SECTION — PREMIUM EDITORIAL / NO PHOTO
   ========================================================= */

/* ==========================================================================
   DOCTOR / ABOUT
   Premium editorial treatment — no photo
   ========================================================================== */

/* =========================================================
   DOCTOR SECTION — ENGRAVED MEDALLION / EDITORIAL LUXURY
   Replaces the previous .doctor block in as-dental.css.
   Same class names as your HTML — no markup changes needed.
   ========================================================= */

/* =========================================================
   DOCTOR SECTION — ENGRAVED MEDALLION / EDITORIAL LUXURY
   Replaces the previous .doctor block in as-dental.css.
   Same class names as your HTML — no markup changes needed.
   ========================================================= */

.doctor {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: #faf7f2;
}

/* faint paper-grain texture, warm ivory feel */
.doctor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* engraved outline numeral — stroke, not fill, echoes the logo's
   engraved-line treatment instead of a soft flat watermark */
.doctor-numeral {
  position: absolute;
  right: -0.06em;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-display);
  font-size: clamp(260px, 30vw, 480px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(169, 137, 90, 0.14);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.doctor-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
  align-items: center;
}

/* =========================================================
   MEDALLION — layered engraved rings around the monogram
   ========================================================= */

.doctor-portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #2c2925 0%, #17150f 72%);
  box-shadow:
    0 40px 90px -20px rgba(20, 17, 12, 0.45),
    inset 0 0 0 1px rgba(169, 137, 90, 0.28),
    inset 0 0 60px rgba(169, 137, 90, 0.05);
  transition: box-shadow 0.6s var(--ease);
}

/* slow-rotating dashed ring — the one piece of motion in the section */
.doctor-portrait::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(169, 137, 90, 0.32);
  animation: doctor-ring-spin 90s linear infinite;
}

/* static fine outer ring, slightly offset for a "cut glass" edge */
.doctor-portrait::after {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(169, 137, 90, 0.14);
}

@keyframes doctor-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.doctor-portrait .monogram {
  position: relative;
  z-index: 2;
  width: 38%;
  opacity: 0.96;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.7s var(--ease), opacity 0.4s var(--ease);
}

.doctor-portrait:hover {
  box-shadow:
    0 46px 100px -20px rgba(20, 17, 12, 0.5),
    inset 0 0 0 1px rgba(169, 137, 90, 0.45),
    inset 0 0 70px rgba(169, 137, 90, 0.09);
}
.doctor-portrait:hover .monogram { transform: scale(1.05); opacity: 1; }

.doctor-portrait > .decorative-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  right: 9%;
  top: 16%;
  border-radius: 50%;
  background: var(--as-bronze);
  box-shadow:
    0 0 0 8px rgba(169, 137, 90, 0.07),
    0 0 22px rgba(169, 137, 90, 0.35);
}

/* small caption beneath the medallion — a jeweler's-case label */
.doctor-portrait-caption {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--as-text-soft);
}

/* =========================================================
   CONTENT
   ========================================================= */

.doctor-content {
  position: relative;
  max-width: 620px;
  padding-left: 0;
}

.doctor .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--as-bronze);
}
.doctor .eyebrow::before,
.doctor .eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--as-bronze);
  opacity: 0.55;
}

.doctor h2 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--as-ink);
}

.doctor-role {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--as-text-soft);
}
.doctor-role::before,
.doctor-role::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--as-bronze-dim);
}

/* editorial drop cap on the bio — the signature move for this section */
.doctor-bio {
  margin-top: 32px;
  max-width: 540px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--as-ink);
  opacity: 0.82;
}
.doctor-bio::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 58px;
  font-weight: 500;
  line-height: 0.7;
  float: left;
  padding: 8px 10px 0 0;
  color: var(--as-bronze);
}

/* credentials — hairline-separated list with a flourish mark,
   not a checklist grid: nothing here is sequential or "completed" */
.doctor-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.doctor-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--as-line);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--as-ink);
}
.doctor-points li:last-child { border-bottom: 1px solid var(--as-line); }
.doctor-points li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--as-bronze);
  transform: rotate(45deg);
}

/* pull-quote style signature line, optional — use if the doctor has
   a short personal motto/line in the markup as .doctor-quote */
.doctor-quote {
  margin-top: 40px;
  padding-left: 22px;
  border-left: 2px solid var(--as-bronze);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--as-ink);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 880px) {
  .doctor { padding: 96px 0; }
  .doctor-numeral { right: -60px; top: 20%; font-size: 260px; }
  .doctor-grid { grid-template-columns: 1fr; gap: 90px; }

  .doctor-portrait { width: min(70vw, 340px); margin: 0 auto; }
  .doctor-portrait-caption { display: none; }

  .doctor-content { max-width: 620px; margin: 0 auto; text-align: center; }
  .doctor .eyebrow, .doctor-role { justify-content: center; }
  .doctor-bio { margin-left: auto; margin-right: auto; }
  .doctor-bio::first-letter { float: none; padding: 0; font-size: 1em; }

  .doctor-points { max-width: 480px; margin: 40px auto 0; text-align: left; }
  .doctor-quote { margin-left: auto; margin-right: auto; text-align: left; max-width: 480px; }
}

/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 600px) {
  .doctor { padding: 72px 0; }
  .doctor::before { background-size: 90px; }
  .doctor-numeral {
    right: -34px; top: 10%; font-size: 168px;
    -webkit-text-stroke: 0.75px rgba(169,137,90,0.12);
  }
  .doctor-grid { gap: 60px; }

  /* rings scaled down to match the smaller medallion so they read as
     one tight object instead of overshooting the viewport width */
  .doctor-portrait { width: 66vw; max-width: 260px; }
  .doctor-portrait::before { inset: -14px; }
  .doctor-portrait::after  { inset: -26px; }
  .doctor-portrait .monogram { width: 40%; }
  .doctor-portrait > .decorative-dot { width: 5px; height: 5px; }

  .doctor h2 { font-size: clamp(34px, 10vw, 46px); margin-top: 16px; }

  .doctor .eyebrow { font-size: 10px; letter-spacing: 0.18em; gap: 10px; }
  .doctor .eyebrow::before, .doctor .eyebrow::after { width: 20px; }

  .doctor-role { font-size: 11px; letter-spacing: 0.1em; margin-top: 16px; gap: 8px; }
  .doctor-role::before, .doctor-role::after { width: 14px; }

  .doctor-bio { margin-top: 24px; font-size: 15px; line-height: 1.75; }

  /* generous, thumb-friendly row height for a scanning list on touch */
  .doctor-points { margin-top: 32px; max-width: 100%; }
  .doctor-points li { padding: 18px 2px; font-size: 14px; gap: 14px; }

  .doctor-quote { margin-top: 28px; padding-left: 18px; font-size: 17px; }
}

/* =========================================================
   SMALL PHONE (SE / compact Android)
   ========================================================= */

@media (max-width: 380px) {
  .doctor { padding: 60px 0; }
  .doctor-numeral { display: none; } /* pure noise at this width — cut it rather than crowd the text */

  .doctor-portrait { width: 62vw; max-width: 220px; }
  .doctor-portrait::before { inset: -10px; }
  .doctor-portrait::after  { inset: -20px; }

  .doctor-grid { gap: 48px; }
  .doctor h2 { font-size: clamp(30px, 9vw, 38px); }
  .doctor-bio { font-size: 14.5px; }
  .doctor-points li { font-size: 13.5px; padding: 16px 2px; }
  .doctor-quote { font-size: 16px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .doctor-portrait::before { animation: none; }
  .doctor-portrait, .doctor-portrait .monogram { transition: none; }
}



/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-band{ background: var(--as-paper-dim); }
.services-carousel-wrap{
  position: relative;
  margin-top: 56px;
}
.services-track{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 8px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar{ display: none; }

.service-card{
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-md);
  padding: 40px 34px;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.service-card:hover{ background: var(--as-white); border-color: var(--as-bronze); transform: translateY(-4px); }
.service-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.service-card .num{
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--as-bronze);
  letter-spacing: 0.05em;
}
.service-tag{
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--as-text-soft);
  border: 1px solid var(--as-line);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.service-tag.bookable{
  color: var(--as-ink);
  border-color: var(--as-bronze);
  background: rgba(169,137,90,0.12);
}
.service-card h3{ margin-top: 14px; font-size: 24px; }
.service-card p{ margin-top: 12px; font-size: 14.5px; color: var(--as-text-soft); }
.service-card.non-bookable{ opacity: 0.9; }
.service-card .go{
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--as-ink);
}
.service-card .go.call{ color: var(--as-bronze); }

@media (max-width: 980px){ .service-card{ flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 640px){ .service-card{ flex-basis: 82%; } }

.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--as-line);
  background: var(--as-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--as-ink);
  transition: all .3s var(--ease);
  z-index: 5;
  box-shadow: 0 10px 28px rgba(27,26,24,0.10);
}
.carousel-arrow:hover{ background: var(--as-ink); color: var(--as-paper); border-color: var(--as-ink); }
.carousel-arrow.prev{ left: -24px; }
.carousel-arrow.next{ right: -24px; }
.carousel-arrow:disabled{ opacity: 0.3; pointer-events: none; }
.carousel-arrow svg{ width: 18px; height: 18px; }
@media (max-width: 780px){ .carousel-arrow{ display: none; } }

.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--as-line);
  border: none;
  padding: 0;
  transition: all .3s var(--ease);
}
.carousel-dots button.active{ background: var(--as-bronze); width: 24px; border-radius: 5px; }

.services-cta-row{ text-align: center; margin-top: 48px; }
.btn-lg{ padding: 18px 44px; font-size: 15px; }

/* ==========================================================================
   TRUST
   ========================================================================== */
/* --- TRUST SECTION --- */
.trust {
  background: var(--as-ink);
  color: var(--as-text-on-ink);
  padding: 80px 0;
}

.trust-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}

/* Left Hero Card */
.trust-hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  min-height: 420px;
}

/* Dark atmospheric background overlay */
.trust-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.15), transparent 60%),
    linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 100%),
    url('../images/green.png') center/cover no-repeat; /* Optional: add interior picture path */
  z-index: 1;
  filter: brightness(0.85);
}

.trust-hero-content {
  position: relative;
  z-index: 2;
}

.trust .eyebrow {
  color: var(--as-bronze-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.trust-hero-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.2;
  color: var(--as-text-on-ink);
}

.trust-hero-content .smile-arc {
  width: 70px;
  margin-top: 14px;
  display: block;
}

.trust-metrics {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--as-text-on-ink-soft);
}

.trust-metrics .dot {
  color: var(--as-bronze-dim);
}

/* Right Cards Grid */
.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

/* Glassmorphism Card Style */
.trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Hover effect */
.trust-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.trust-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-item-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap; /* Safety for long translated words */
}

.trust-item .idx {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--as-bronze-dim);
  line-height: 1;
}

.trust-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--as-text-on-ink);
}

.trust-icon {
  width: 26px;
  height: 26px;
  stroke: var(--as-bronze-dim);
  flex-shrink: 0;
  opacity: 0.85;
}

.trust-item p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--as-text-on-ink-soft);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .trust-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-hero-card {
    min-height: 320px;
    padding: 36px 28px;
  }
}

@media (max-width: 576px) {
  .trust {
    padding: 50px 0;
  }
  .trust-hero-content h2 {
    font-size: 30px;
  }
  .trust-item {
    padding: 20px;
  }
  .trust-item .idx {
    font-size: 24px;
  }
  .trust-item h3 {
    font-size: 18px;
  }
}
/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band{
  background: var(--as-paper);
  border-top: 1px solid var(--as-line);
  border-bottom: 1px solid var(--as-line);
  text-align: center;
}
.cta-band h2{ font-size: clamp(30px, 4vw, 42px); }
.cta-band p{ margin-top: 14px; color: var(--as-text-soft); font-size: 16px; }
.cta-band .btn{ margin-top: 30px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-card{
  background: var(--as-ink);
  color: var(--as-text-on-ink);
  border-radius: var(--radius-md);
  padding: 44px;
}
.contact-row{
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--as-line-dark);
}
.contact-row:first-of-type{ padding-top: 0; }
.contact-row:last-of-type{ border-bottom: none; }
.contact-row .label{
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--as-bronze-dim);
  min-width: 90px;
}
.contact-row .value{ font-size: 16px; color: var(--as-text-on-ink); }
.contact-row .value a:hover{ color: var(--as-bronze-dim); }
.map-frame{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--as-line);
  min-height: 380px;
}
.map-frame iframe{ width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.booking-layout{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.booking-side{
  background: var(--as-ink);
  color: var(--as-text-on-ink);
  border-radius: var(--radius-md);
  padding: 40px;
  position: sticky;
  top: 110px;
}
.booking-side .smile-arc{ margin-top: 14px; }
.booking-side ul{ margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.booking-side li{ font-size: 14.5px; color: var(--as-text-on-ink-soft); display: flex; gap: 10px; }
.booking-side li::before{ content: "—"; color: var(--as-bronze); }

.booking-form{
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-md);
  padding: 44px;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-group{ display: flex; flex-direction: column; gap: 8px; }
.form-group.full{ grid-column: 1 / -1; }
.form-group label{
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--as-text-soft);
}
.form-group input,
.form-group select,
.form-group textarea{
  border: 1px solid var(--as-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--as-paper);
  color: var(--as-text);
  transition: border-color .25s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--as-bronze);
}
.form-group textarea{ resize: vertical; min-height: 90px; }
.slots-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.slot-btn{
  border: 1px solid var(--as-line);
  background: var(--as-paper);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  transition: all .2s var(--ease);
}
.slot-btn:hover{ border-color: var(--as-bronze); }
.slot-btn.selected{ background: var(--as-ink); color: var(--as-white); border-color: var(--as-ink); }
.slot-btn:disabled{ opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.form-note{
  margin-top: 8px;
  font-size: 13px;
  color: var(--as-text-soft);
}
.form-submit{ margin-top: 30px; }
.form-feedback{
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}
.form-feedback.success{ display: block; background: #eef3ea; color: #3d5c31; border: 1px solid #cfe0c4; }
.form-feedback.error{ display: block; background: #f6e9e6; color: #7a3325; border: 1px solid #ecccc4; }
@media (max-width: 980px){
  .booking-layout{ grid-template-columns: 1fr; }
  .booking-side{ position: static; }
}
@media (max-width: 620px){
  .form-grid{ grid-template-columns: 1fr; }
  .booking-form{ padding: 28px; }
}

/* ==========================================================================
   SERVICES PAGE HERO (secondary pages banner)
   ========================================================================== */
.page-banner {
  background: var(--as-ink);
  color: var(--as-text-on-ink);
  /* Changed top padding from 168px to 80px, bottom from 80px to 48px */
  padding: 80px 0 48px; 
  text-align: center;
}

.page-banner .smile-arc { 
  margin-left: auto; 
  margin-right: auto; 
}

.page-banner h1 { 
  font-size: clamp(32px, 4vw, 44px); /* Slightly reduced font scale */
  margin-top: 10px;                  /* Reduced top margin from 18px */
}

.page-banner p { 
  margin-top: 10px;                  /* Reduced top margin from 16px */
  color: var(--as-text-on-ink-soft); 
  max-width: 560px; 
  margin-left: auto; 
  margin-right: auto; 
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{
  background: var(--as-ink);
  color: var(--as-text-on-ink-soft);
  padding-top: 80px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--as-line-dark);
}
.footer-brand{ display: flex; align-items: center; gap: 12px; }
.footer-brand-mark{ width: 42px; }
.footer-brand .name{ font-family: var(--font-display); font-size: 22px; color: var(--as-text-on-ink); }
.footer-tagline{ margin-top: 16px; font-size: 14px; max-width: 280px; }
.footer h4{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--as-text-on-ink);
  margin-bottom: 20px;
}
.footer-links{ display: flex; flex-direction: column; gap: 12px; }
.footer-links a{ font-size: 14.5px; transition: color .2s var(--ease); }
.footer-links a:hover{ color: var(--as-bronze-dim); }
.footer-bottom{
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 780px){
  .footer-grid{ grid-template-columns: 1fr; gap: 36px; }
}

/* ---- Reveal-on-scroll utility (driven by js/main.js) ------------------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }












/* ================= GALLERY SECTION (RESPONSIVE) ================= */
/* ================= GALLERY SECTION (CHARCOAL THEME) ================= */
.gallery-band {
  padding: 100px 0;
  background-color: #181818; /* Rich charcoal background */
  color: var(--as-text-on-ink, #f5f5f5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.gallery-card {
  background: #202020; /* Slightly lighter charcoal card surface for depth */
  border: 1px solid rgba(169, 137, 90, 0.25);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--as-bronze-dim, #a9895a);
  background: #252525;
}

.gallery-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.03);
}

.gallery-info {
  padding: 24px;
}

.gallery-info .tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--as-bronze-dim, #a9895a);
  display: inline-block;
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Mobile & Tablet Optimizations */
@media (max-width: 768px) {
  .gallery-band {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .gallery-img-wrap {
    height: 240px;
  }

  .gallery-info {
    padding: 20px;
  }
}

/* Touch Device Adjustments */
@media (hover: none) {
  .gallery-card:hover {
    transform: none;
    border-color: rgba(169, 137, 90, 0.25);
    background: #202020;
  }
  
  .gallery-card:hover .gallery-img-wrap img {
    transform: none;
  }
}