/* ============================================================
   Kat Chapman, BSN, RN — Editorial Luxury design system (v2)
   Type: Fraunces (display serif) + Plus Jakarta Sans (body)
   Motion: exponential ease-out, transform/opacity only
   ============================================================ */

/* Glyph fix: Fraunces' ampersand and F/f are too quirky for this brand.
   These faces cover ONLY & (U+26), F (U+46), f (U+66) — every other
   letter falls through to Fraunces. */
@font-face {
  font-family: "Glyph Fix";
  src: local("Georgia"), local("Noto Serif"), local("Times New Roman");
  unicode-range: U+0026, U+0046, U+0066;
}
@font-face {
  font-family: "Glyph Fix";
  font-style: italic;
  src: local("Georgia Italic"), local("Georgia-Italic"), local("Georgia"), local("Noto Serif Italic"), local("Times New Roman Italic");
  unicode-range: U+0026, U+0046, U+0066;
}

:root {
  /* Palette — warm espresso & paper, committed bronze accent */
  --paper: #f6f1e8;
  --paper-deep: #efe7d9;
  --white: #fdfbf7;
  --ink: #241c13;
  --ink-2: #3a3128;
  --ink-soft: #5c5245;
  --bronze: #a1815a;
  --bronze-deep: #7e6340;
  --sage: #96a48b;
  --line: rgba(36, 28, 19, 0.1);
  --hairline: rgba(36, 28, 19, 0.07);
  --shell: rgba(36, 28, 19, 0.045);

  /* Soft diffused ambient shadows — never harsh */
  --shadow-soft: 0 24px 70px -28px rgba(36, 28, 19, 0.28);
  --shadow-float: 0 40px 110px -40px rgba(36, 28, 19, 0.35);
  --inset-hi: inset 0 1px 0 rgba(255, 255, 255, 0.55);

  /* Radii — concentric double-bezel math */
  --r-xl: 30px;
  --r-lg: 24px;
  --r-md: 16px;

  /* Motion — strong exponential curves (never ease-in, never bounce) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --t-press: 140ms;
  --t-ui: 220ms;
  --t-reveal: 750ms;

  --serif: "Glyph Fix", "Fraunces", "Georgia", serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Legacy aliases — inline styles in page markup reference these */
  --cream: var(--paper);
  --cream-deep: var(--paper-deep);
  --radius: var(--r-lg);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain — fixed, pointer-events-none, paper texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--bronze); color: var(--white); }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 480;
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
  font-variation-settings: "opsz" 100;
}
h1 { font-size: clamp(2.7rem, 8vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h3 { font-size: 1.4rem; line-height: 1.18; }
h1 em, h2 em { font-style: italic; font-weight: 440; color: var(--bronze-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze-deep);
  background: rgba(161, 129, 90, 0.1);
  border: 1px solid rgba(161, 129, 90, 0.22);
  border-radius: 999px;
  padding: 0.36rem 0.95rem;
  margin-bottom: 1.3rem;
}

.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.wrap { width: min(1180px, 100% - 2.4rem); margin: 0 auto; }

section { padding: clamp(5rem, 11vw, 8.5rem) 0; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce a {
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announce a:hover { color: var(--bronze); }
/* The floating nav sits below the announcement at the top of the
   page, then glides up once the bar has scrolled away. */
.announce ~ .nav {
  top: max(3.1rem, calc(env(safe-area-inset-top, 0px) + 3.1rem));
  transition: top 420ms var(--ease-out);
}
.announce ~ .nav.scrolled { top: max(0.8rem, env(safe-area-inset-top, 0px)); }

/* ---------- Consult / book form bits ---------- */
.check-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.check-row input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 0.15rem;
  accent-color: var(--bronze-deep);
  flex-shrink: 0;
}
.form-success {
  background: rgba(150, 164, 139, 0.16);
  border: 1px solid rgba(150, 164, 139, 0.4);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* ---------- Buttons — island pills with orb icons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem 0.55rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  min-height: 52px;
  transition: transform var(--t-ui) var(--ease-out),
    box-shadow var(--t-ui) var(--ease-out),
    background var(--t-ui) var(--ease-out),
    color var(--t-ui) var(--ease-out),
    border-color var(--t-ui) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn:not(:has(.orb)) { padding: 0.55rem 1.6rem; }

.btn .orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform var(--t-ui) var(--ease-out), background var(--t-ui) var(--ease-out);
}
.btn .arrow { transition: transform var(--t-ui) var(--ease-out); display: inline-block; }

.btn-solid { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-soft); }
.btn-solid .orb { background: rgba(253, 251, 247, 0.14); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: rgba(253, 251, 247, 0.5); }
.btn-ghost .orb { background: var(--shell); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light .orb { background: var(--shell); }

@media (hover: hover) and (pointer: fine) {
  .btn-solid:hover { background: var(--bronze-deep); transform: translateY(-2px); box-shadow: var(--shadow-float); }
  .btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-deep); transform: translateY(-2px); }
  .btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
  .btn:hover .orb { transform: translate(2px, -1px) scale(1.06); }
  .btn:hover .arrow { transform: translateX(2px); }
}

/* ---------- Nav — floating glass pill ---------- */
.nav {
  position: fixed;
  top: max(0.8rem, env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(1080px, 100% - 1.6rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border-radius: 999px;
  padding: 0.55rem 0.65rem 0.55rem 1.35rem;
  position: relative;
  isolation: isolate;
}
/* Glass lives on a pseudo-element so backdrop-filter never becomes
   a containing block for the fixed mobile overlay. */
.nav-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.72);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(253, 251, 247, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 12px 40px -18px rgba(36, 28, 19, 0.28);
  transition: box-shadow 400ms var(--ease-out), background 400ms var(--ease-out), opacity 300ms var(--ease-out);
}
.nav.scrolled .nav-inner::before {
  background: rgba(246, 241, 232, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 18px 50px -20px rgba(36, 28, 19, 0.4);
}
.nav.menu-open .nav-inner::before { opacity: 0; }
.logo {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 560;
}
.logo span { color: var(--bronze-deep); font-style: italic; font-weight: 460; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a:not(.btn) {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color var(--t-ui) var(--ease-out), background var(--t-ui) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:not(.btn):hover { color: var(--ink); background: var(--shell); }
}
.nav-links a.active { color: var(--ink); background: var(--shell); }
.nav .btn { min-height: 44px; padding: 0.35rem 0.4rem 0.35rem 1.15rem; font-size: 0.87rem; }
.nav .btn .orb { width: 32px; height: 32px; }
.nav .btn:not(:has(.orb)) { padding: 0.35rem 1.25rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  position: relative;
  z-index: 130;
  border-radius: 999px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.7px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 380ms var(--ease-drawer), opacity 200ms var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.7px) rotate(-45deg); }

.submenu-toggle { display: none; }

/* Mobile menu — full-screen glass, staggered mask reveal */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .logo { position: relative; z-index: 130; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(246, 241, 232, 0.92);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    white-space: normal;
    padding: 5.6rem 1.7rem calc(2.4rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 380ms var(--ease-drawer);
    z-index: 120;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }

  .nav-links > li {
    border-bottom: 1px solid var(--hairline);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  }
  .nav-links.open > li { opacity: 1; transform: none; }
  .nav-links > li:last-child { border-bottom: none; }

  .nav-links a:not(.btn) {
    display: block;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 480;
    letter-spacing: -0.01em;
    color: var(--ink);
    padding: 1.05rem 0.2rem;
    border-radius: 0;
    background: none;
  }
  .nav-links a.active { color: var(--bronze-deep); background: none; font-style: italic; }
  .nav-links .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.6rem;
    min-height: 56px;
    font-size: 1rem;
  }
  .has-dropdown { position: relative; }
  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: 66px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .submenu-toggle::before {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 1.6px solid var(--bronze-deep);
    border-bottom: 1.6px solid var(--bronze-deep);
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 380ms var(--ease-drawer);
  }
  .has-dropdown.open .submenu-toggle::before { transform: rotate(225deg) translate(-1px, -1px); }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding: clamp(7.5rem, 16vh, 10rem) 0 clamp(3.5rem, 8vh, 5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 80% 20%, rgba(161, 129, 90, 0.2), transparent 62%),
    radial-gradient(ellipse 45% 45% at 8% 85%, rgba(150, 164, 139, 0.16), transparent 62%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.hero .lead { margin: 1.7rem 0 2.4rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  display: flex;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  font-size: 0.83rem;
  color: var(--ink-soft);
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 520;
  color: var(--ink);
  line-height: 1.2;
}

.hero-visual { position: relative; }

/* Double-bezel frames — machined shell around every image */
.portrait-frame,
.split-visual .frame {
  position: relative;
  overflow: hidden;
  border: 7px solid var(--shell);
  background: var(--shell);
  background-clip: padding-box;
  box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), var(--shadow-float);
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.portrait-frame {
  aspect-ratio: 4 / 5;
  border-radius: 190px 190px var(--r-xl) var(--r-xl);
}
.split-visual .frame { aspect-ratio: 4 / 4.5; border-radius: var(--r-xl); }
@media (hover: hover) and (pointer: fine) {
  .portrait-frame:hover, .split-visual .frame:hover { transform: translateY(-5px); }
}
.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  transition: transform 1100ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .frame:hover .cover, .portrait-frame:hover .cover { transform: scale(1.03); }
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(160deg, #e9dfd1, #d9c9b4 55%, #c9b299);
  color: rgba(75, 60, 44, 0.75);
  font-size: 0.85rem;
}
.img-placeholder .ph-icon { font-size: 2rem; opacity: 0.55; }

.float-card {
  position: absolute;
  bottom: 7%;
  left: -6%;
  background: rgba(253, 251, 247, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(253, 251, 247, 0.7);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.float-card strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 540;
  display: block;
  color: var(--ink);
}

@media (max-width: 880px) {
  .hero { min-height: auto; padding-top: 5.6rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  /* Editorial mobile hero: full-width arch portrait leads, Kat's
     name chip layered over its lower edge, headline interlocks below. */
  .hero-visual { order: -1; margin-bottom: 2.1rem; }
  .hero-visual .portrait-frame {
    width: 100%;
    aspect-ratio: auto;
    height: clamp(300px, 45vh, 430px);
    border-radius: 999px 999px var(--r-lg) var(--r-lg);
  }
  .float-card {
    display: block;
    left: auto;
    right: 5%;
    bottom: auto;
    top: calc(clamp(300px, 45vh, 430px) - 34px);
    padding: 0.75rem 1.15rem;
    font-size: 0.78rem;
    animation: none;
  }
  .float-card strong { font-size: 0.98rem; }
  .hero .lead { margin: 1.3rem 0 1.9rem; }
  .hero-meta { margin-top: 1.9rem; }
}

/* ---------- Scroll reveal — visible by default, enhanced with JS ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  transition: opacity var(--t-reveal) var(--ease-out),
    transform var(--t-reveal) var(--ease-out),
    filter var(--t-reveal) var(--ease-out);
}
.js .reveal.visible { opacity: 1; transform: none; filter: blur(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { transform: none; filter: none; transition: opacity 200ms ease; }
  .nav-links > li { transition: opacity 200ms ease !important; transform: none !important; }
  .marquee-track { animation: none !important; }
  * { transition-duration: 0.15s !important; }
}

/* ---------- Section header ---------- */
.section-head { max-width: 46rem; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 1.1rem; color: var(--ink-soft); text-wrap: pretty; }

/* ---------- Cards — double-bezel, floating ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--white);
  background-clip: padding-box;
  border: 6px solid var(--shell);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), 0 18px 50px -30px rgba(36, 28, 19, 0.2);
  position: relative;
  transition: transform 550ms var(--ease-out), box-shadow 550ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), var(--shadow-float);
  }
}
.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-family: var(--serif);
  font-weight: 540;
  color: var(--bronze-deep);
  margin-bottom: 1.3rem;
  transition: transform 450ms var(--ease-out), background 450ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover .icon { background: rgba(161, 129, 90, 0.14); transform: rotate(-5deg) scale(1.05); }
}
.card h3 { margin-bottom: 0.65rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bronze-deep);
}
.card .card-link .arrow { transition: transform var(--t-ui) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .card:hover .card-link .arrow { transform: translateX(4px); }
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split.rev > .split-visual { order: 2; }
.split-visual { position: relative; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.rev > .split-visual { order: 0; }
}

.checklist { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink-soft); }
.checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(150, 164, 139, 0.22);
  color: var(--bronze-deep);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.22rem;
}

/* ---------- Dark espresso band ---------- */
.band {
  background:
    radial-gradient(ellipse 55% 65% at 85% 15%, rgba(161, 129, 90, 0.35), transparent 60%),
    radial-gradient(ellipse 45% 55% at 8% 92%, rgba(150, 164, 139, 0.18), transparent 60%),
    var(--ink);
  color: var(--paper);
  background-clip: padding-box;
  border: 7px solid var(--shell);
  border-radius: calc(var(--r-xl) + 8px);
  box-shadow: 0 0 0 1px var(--hairline), var(--shadow-float);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.6rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band h2 { margin-bottom: 1rem; color: var(--paper); }
.band p { color: rgba(246, 241, 232, 0.78); max-width: 60ch; margin: 0 auto 2.2rem; text-wrap: pretty; }
.band .eyebrow { background: rgba(246, 241, 232, 0.1); border-color: rgba(246, 241, 232, 0.2); color: var(--bronze); }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.quote {
  background: var(--white);
  background-clip: padding-box;
  border: 6px solid var(--shell);
  border-radius: var(--r-lg);
  padding: 2.1rem 2rem;
  box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), 0 18px 50px -30px rgba(36, 28, 19, 0.2);
  transition: transform 550ms var(--ease-out), box-shadow 550ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .quote:hover { transform: translateY(-5px); box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), var(--shadow-float); }
}
.quote .stars { color: var(--bronze); letter-spacing: 0.22em; margin-bottom: 1rem; font-size: 0.85rem; }
.quote p {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 440;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
}
.quote footer { margin-top: 1.2rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.35rem 0; }
.faq summary {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--t-ui) var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--shell);
  font-size: 1.15rem;
  font-family: var(--sans);
  color: var(--bronze-deep);
  transition: transform 380ms var(--ease-drawer), background var(--t-ui) var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); background: rgba(161, 129, 90, 0.16); }
@media (hover: hover) and (pointer: fine) {
  .faq summary:hover { color: var(--bronze-deep); }
}
.faq details p { padding-top: 0.9rem; color: var(--ink-soft); font-size: 0.96rem; max-width: 65ch; }

/* ---------- Treatment rows ---------- */
.treatment {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.treatment:first-of-type { border-top: none; }
.treatment .t-meta { position: sticky; top: 110px; }
.treatment .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: background var(--t-ui) var(--ease-out), color var(--t-ui) var(--ease-out), border-color var(--t-ui) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .tag:hover { background: var(--bronze); border-color: var(--bronze); color: var(--white); }
}
.t-body p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 65ch; }
.t-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.9rem; margin: 1.8rem 0; }
.t-fact {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--inset-hi);
  padding: 1rem 1.2rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.t-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 540;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
@media (max-width: 880px) {
  .treatment { grid-template-columns: 1fr; }
  .treatment .t-meta { position: static; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block { display: grid; gap: 1.1rem; }
.info-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--inset-hi), 0 14px 40px -26px rgba(36, 28, 19, 0.18);
  transition: transform 450ms var(--ease-out), box-shadow 450ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .info-item:hover { transform: translateY(-3px); box-shadow: var(--inset-hi), var(--shadow-soft); }
}
.info-item .icon { font-size: 1.25rem; margin-top: 0.15rem; }
.info-item strong { display: block; font-family: var(--serif); font-size: 1.06rem; font-weight: 540; margin-bottom: 0.2rem; }
.info-item span { color: var(--ink-soft); font-size: 0.93rem; }

form.contact-form {
  background: var(--white);
  background-clip: padding-box;
  border: 7px solid var(--shell);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), var(--shadow-soft);
  padding: clamp(1.7rem, 4vw, 2.6rem);
  display: grid;
  gap: 1.2rem;
}
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  min-height: 50px;
  transition: border-color var(--t-ui) var(--ease-out), box-shadow var(--t-ui) var(--ease-out), background var(--t-ui) var(--ease-out);
}
.field textarea { min-height: 0; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(161, 129, 90, 0.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(8rem, 18vh, 11rem) 0 clamp(2.5rem, 6vh, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { z-index: -1; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { margin-top: 1.5rem; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
  white-space: nowrap;
  background: var(--paper-deep);
}
.marquee-track {
  display: inline-flex;
  gap: 3.2rem;
  animation: marquee 36s linear infinite;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.marquee-track span::after { content: "✦"; margin-left: 3.2rem; color: var(--bronze); font-style: normal; font-size: 0.7rem; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
footer.site-footer {
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(161, 129, 90, 0.2), transparent 55%),
    var(--ink);
  color: rgba(246, 241, 232, 0.68);
  padding: clamp(3.5rem, 8vw, 5rem) 0 2.5rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  font-size: 0.92rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer .logo { color: var(--paper); margin-bottom: 0.8rem; display: block; }
.site-footer h4 {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 520;
  color: var(--paper);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer a { transition: color var(--t-ui) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .site-footer a:hover { color: var(--bronze); }
}
.footer-bottom {
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(246, 241, 232, 0.45);
}
.disclaimer {
  font-size: 0.74rem;
  color: rgba(246, 241, 232, 0.4);
  margin-top: 1.5rem;
  max-width: 75ch;
  line-height: 1.6;
}

/* ---------- Misc grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.span2 { grid-column: span 2; }
@media (max-width: 560px) { .span2 { grid-column: auto; } }

.badge-netflix {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(246, 241, 232, 0.14);
  box-shadow: var(--shadow-soft);
  transition: background var(--t-ui) var(--ease-out), transform var(--t-ui) var(--ease-out);
}
.badge-netflix::before { content: "📺"; }
@media (hover: hover) and (pointer: fine) {
  a.badge-netflix:hover { background: var(--bronze-deep); transform: translateY(-2px); }
}
.site-footer .badge-netflix { border-color: rgba(246, 241, 232, 0.2); background: rgba(246, 241, 232, 0.08); box-shadow: none; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.placeholder-note {
  display: inline-block;
  background: #fff3cd;
  color: #7a5d00;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  vertical-align: middle;
  font-family: var(--sans);
  font-style: normal;
}

/* ---------- Services dropdown (desktop) ---------- */
.nav-links .has-dropdown { position: relative; }
/* Invisible hover bridge across the gap between trigger and menu,
   so the cursor can travel down without the dropdown closing. */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 100%;
  height: 18px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px) scale(0.97);
  transform-origin: top center;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(253, 251, 247, 0.6);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 250px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-ui) var(--ease-out), transform var(--t-ui) var(--ease-out),
    visibility 0s var(--ease-out) 0.3s;
  box-shadow: var(--shadow-float);
  display: grid;
  gap: 0.1rem;
  z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  transition-delay: 0s;
}
.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background var(--t-ui) var(--ease-out), color var(--t-ui) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .dropdown a:hover { background: var(--shell); color: var(--ink); }
}
@media (max-width: 880px) {
  .has-dropdown::after { display: none; }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 0 0 1rem;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 480ms var(--ease-drawer);
  }
  .has-dropdown.open .dropdown { max-height: 480px; padding-bottom: 0.7rem; }
  .has-dropdown:hover .dropdown { transform: none; }
  .dropdown a { font-family: var(--sans); font-size: 1rem; font-weight: 500; text-align: left; color: var(--ink-soft); padding: 0.62rem 0.4rem; border-radius: 8px; }
  .dropdown a.active { color: var(--bronze-deep); }
}

/* ---------- Pricing table ---------- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  background-clip: padding-box;
  border: 6px solid var(--shell);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--hairline), var(--shadow-soft);
}
.price-table th, .price-table td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--hairline); font-size: 0.94rem; }
.price-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-table tbody tr { transition: background var(--t-ui) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .price-table tbody tr:hover { background: var(--paper); }
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 600; }
.price-rate { display: flex; align-items: baseline; gap: 0.6rem; margin: 0.4rem 0 1.6rem; }
.price-rate strong { font-family: var(--serif); font-size: 2.9rem; font-weight: 520; color: var(--bronze-deep); line-height: 1; }
.price-rate span { color: var(--ink-soft); font-size: 0.98rem; }
.table-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 1rem; }
@media (max-width: 560px) {
  .price-table th, .price-table td { padding: 0.8rem 0.85rem; font-size: 0.86rem; }
}

/* ---------- Guarantee seal ---------- */
.guarantee { display: grid; gap: 1rem; }
.seal, .band .seal {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.1);
  border: 1px solid rgba(246, 241, 232, 0.25);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; }
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--paper-deep);
  background-clip: padding-box;
  border: 6px solid var(--shell);
  box-shadow: 0 0 0 1px var(--hairline);
}
.gallery-item .img-placeholder { font-size: 0.78rem; }
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.4rem; }
.gallery-filter button {
  padding: 0.6rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t-ui) var(--ease-out), color var(--t-ui) var(--ease-out), border-color var(--t-ui) var(--ease-out), transform var(--t-press) var(--ease-out);
  color: var(--ink-soft);
}
.gallery-filter button:active { transform: scale(0.96); }
.gallery-filter button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  .gallery-filter button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
}

/* ---------- Motion layer (Emil Kowalski) ---------- */

/* Cross-document page transitions — instant-feeling crossfade */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 160ms var(--ease-out) forwards; }
::view-transition-new(root) { animation: vt-in 220ms var(--ease-out); }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; transform: translateY(6px); } }

/* Clip-path photo reveals: images unveil bottom-up inside their frames */
.js img.clip-reveal {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1000ms var(--ease-out), transform 1500ms var(--ease-out);
}
.js img.clip-reveal.revealed { clip-path: inset(0 0 0 0); transform: none; }

/* Press feedback on tappable surfaces (mobile especially) */
.card:active, .quote:active, .blog-card:active, .info-item:active {
  transform: scale(0.985);
  transition-duration: 120ms;
}
.faq summary:active::after { transform: scale(0.9); transition-duration: 100ms; }
.faq details[open] summary:active::after { transform: rotate(45deg) scale(0.9); }

/* FAQ answers ease in when opened */
.faq details[open] p { animation: faq-in 300ms var(--ease-out); }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
}

/* Marquee slows on hover — readable when you want it */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track { animation-play-state: paused; }
}

@media (prefers-reduced-motion: reduce) {
  .js img.clip-reveal { clip-path: none; transform: none; transition: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .faq details[open] p { animation: none; }
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.blog-card {
  background: var(--white);
  background-clip: padding-box;
  border: 6px solid var(--shell);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), 0 18px 50px -30px rgba(36, 28, 19, 0.2);
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover { transform: translateY(-5px); box-shadow: 0 0 0 1px var(--hairline), var(--inset-hi), var(--shadow-float); }
}
.blog-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #e9dfd1, #d9c9b4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(75, 60, 44, 0.6);
  font-size: 2rem;
  border-radius: calc(var(--r-lg) - 6px) calc(var(--r-lg) - 6px) 0 0;
}
.blog-card .body { padding: 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.blog-card .tag-sm { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-deep); font-weight: 700; }
.blog-card h3 { font-size: 1.28rem; }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }
.blog-card .card-link { margin-top: 0.6rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--bronze-deep); }
.soon-pill { display: inline-block; background: var(--paper-deep); color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.06em; padding: 0.25rem 0.7rem; border-radius: 999px; }

/* ---------- Service menu line items (original palette) ---------- */
.menu-groups {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .menu-groups { grid-template-columns: 1fr 1fr; }
}
.menu-group h2, .menu-group h3 { margin: 0 0 0.35rem; }
.menu-group h3 span, .menu-group .lead-sm {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}
.menu-group h3 span { display: inline; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-left: 0.5rem; color: var(--bronze-deep); }
.lead-sm { color: var(--ink-soft); margin: 0 0 1.2rem; max-width: 52rem; }
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.45rem;
}
.menu-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.menu-list li strong { color: var(--ink); font-weight: 600; }
.menu-note { margin-top: 0.9rem; font-size: 0.88rem; color: var(--ink-soft); }
.menu-cards {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .menu-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .menu-cards { grid-template-columns: 1fr 1fr 1fr; }
}
.menu-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.05rem 1.15rem;
}
.menu-item h3 { font-size: 1.12rem; margin: 0 0 0.35rem; }
.menu-item p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.hours-block { margin-top: 1.8rem; }
.hours-block h3 { margin-bottom: 0.6rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.hours-list li span { color: var(--ink); font-weight: 600; }
