/* ==========================================================================
   THAI HERB MASSAGE — Design System (2026)
   Loaded after styles-safer.css (vendored Bootstrap + legacy theme).
   Legacy page classes are retired in the rewritten templates; everything
   visual lives here under th-* / chrome class names.

   Palette   deep evergreen #01261c · gold #e6a756 · cream #f6e1c5
   Type      Lora (display/serif) · Raleway (eyebrows, UI, buttons)
   ========================================================================== */

:root {
  /* Greens */
  --th-green-deep: #01261c;
  --th-green: #06301f;
  --th-green-soft: #0b3b2a;
  --th-forest: #355e3b;

  /* Golds */
  --th-gold-light: #f0bd77;
  --th-gold: #e6a756;
  --th-gold-dark: #c98c3f;
  --th-bronze: #7a5420;          /* gold-toned ink, AA on cream/paper */

  /* Neutrals */
  --th-cream: #f6e1c5;
  --th-paper: #fbf7ef;
  --th-white: #fffdf9;
  --th-ink: #24312b;
  --th-muted: #5d6a63;

  /* Geometry & motion */
  --th-radius-sm: 10px;
  --th-radius: 16px;
  --th-radius-lg: 22px;
  --th-shadow-sm: 0 2px 10px rgba(1, 38, 28, 0.07);
  --th-shadow-md: 0 12px 32px rgba(1, 38, 28, 0.12);
  --th-shadow-lg: 0 22px 55px rgba(1, 38, 28, 0.2);
  --th-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Gradients */
  --th-gold-grad: linear-gradient(135deg, #f0bd77, #e6a756 45%, #c98c3f);
  --th-dark-grad: linear-gradient(150deg, #01261c 0%, #073226 55%, #01261c 100%);
}

/* --------------------------------------------------------------------------
   Base polish
   -------------------------------------------------------------------------- */
::selection {
  background: var(--th-gold);
  color: #22160a;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--th-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Icon sprite
   -------------------------------------------------------------------------- */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.th-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: -0.135em;
  fill: none;
  stroke: currentColor;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Scroll reveal (JS adds .js to <html>; content always visible without it)
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--th-ease), transform 0.75s var(--th-ease);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.js [data-reveal="2"] { transition-delay: 0.12s; }
.js [data-reveal="3"] { transition-delay: 0.24s; }
.js [data-reveal="4"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   Buttons — self-contained (not Bootstrap .btn)
   -------------------------------------------------------------------------- */
.btn-th {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border: 0;
  border-radius: 50rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.25s var(--th-ease), box-shadow 0.25s var(--th-ease),
              background-color 0.25s var(--th-ease), color 0.25s var(--th-ease),
              filter 0.25s var(--th-ease);
}

.btn-th:active {
  transform: translateY(0) scale(0.99);
}

.btn-th--gold {
  background: var(--th-gold-grad);
  color: #22160a;
  box-shadow: 0 6px 20px rgba(230, 167, 86, 0.4);
}

.btn-th--gold:hover,
.btn-th--gold:focus {
  color: #22160a;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 167, 86, 0.55);
}

.btn-th--ghost {
  background: transparent;
  border: 2px solid rgba(246, 225, 197, 0.55);
  color: var(--th-cream);
}

.btn-th--ghost:hover,
.btn-th--ghost:focus {
  background: var(--th-cream);
  border-color: var(--th-cream);
  color: var(--th-green-deep);
  transform: translateY(-2px);
}

.btn-th--forest {
  background: transparent;
  border: 2px solid var(--th-forest);
  color: var(--th-forest);
}

.btn-th--forest:hover,
.btn-th--forest:focus {
  background: var(--th-forest);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(53, 94, 59, 0.3);
}

.btn-th--dark {
  background: var(--th-green-deep);
  color: var(--th-cream);
  box-shadow: 0 6px 18px rgba(1, 38, 28, 0.35);
}

.btn-th--dark:hover,
.btn-th--dark:focus {
  background: var(--th-green-soft);
  color: #fff;
  transform: translateY(-2px);
}

.btn-th--lg {
  padding: 1.05rem 2.4rem;
  font-size: 0.95rem;
}

.btn-th--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
}

.btn-th .th-icon {
  font-size: 1.15em;
}

/* --------------------------------------------------------------------------
   Typography blocks
   -------------------------------------------------------------------------- */
.th-eyebrow {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--th-bronze);
  margin-bottom: 0.9rem;
}

.th-display {
  font-family: "Lora", serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--th-green-deep);
  margin: 0 0 0.5rem;
}

.th-display--xl { font-size: clamp(2.5rem, 5.5vw, 4rem); }
.th-display--lg { font-size: clamp(2rem, 4vw, 3rem); }
.th-display--md { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.th-lede {
  font-family: "Lora", serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--th-muted);
  margin: 0;
}

/* Section header block */
.th-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.th-head .th-lede {
  margin-top: 1rem;
}

.th-head--left {
  margin: 0 0 2.25rem;
  text-align: left;
  max-width: none;
}

/* Light-on-dark variant */
.th-head--light .th-eyebrow { color: var(--th-gold); }
.th-head--light .th-display { color: #fff; }
.th-head--light .th-lede { color: rgba(246, 225, 197, 0.88); }

/* Swoosh brand divider */
.th-swoosh {
  display: flex;
  justify-content: center;
  margin: 1.1rem 0;
}

.th-swoosh img {
  width: 150px;
  height: auto;
}

.th-swoosh--left {
  justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   Section shells
   -------------------------------------------------------------------------- */
.th-section {
  padding: clamp(3.5rem, 7vw, 5.75rem) 0;
}

.th-section--cream { background: var(--th-cream); }
.th-section--paper { background: var(--th-paper); }
.th-section--white { background: var(--th-white); }

.th-section--dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(230, 167, 86, 0.16), transparent 55%),
    radial-gradient(circle at 85% 95%, rgba(230, 167, 86, 0.12), transparent 55%),
    var(--th-dark-grad);
  color: var(--th-cream);
}

/* Slim band variant */
.th-band {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

/* Grid/flex blowout guards: children may shrink below content size */
.th-story > *,
.th-location > *,
.th-contact > *,
.th-giftband__grid > *,
.th-featured > *,
.service-card > * {
  min-width: 0;
}

/* Belt-and-suspenders: never allow sub-pixel horizontal bleed */
main {
  overflow-x: clip;
}

/* --------------------------------------------------------------------------
   Shared small components
   -------------------------------------------------------------------------- */
/* Pills / chips */
.th-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color 0.22s var(--th-ease), color 0.22s var(--th-ease),
              border-color 0.22s var(--th-ease), transform 0.22s var(--th-ease);
}

/* Generic card */
.th-card {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius);
  box-shadow: var(--th-shadow-sm);
}

/* Framed image (gold inset ring + zoom-on-hover) */
.th-frame {
  position: relative;
  border-radius: var(--th-radius);
  overflow: hidden;
  box-shadow: var(--th-shadow-md);
  isolation: isolate;
}

.th-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(246, 225, 197, 0.55);
  border-radius: calc(var(--th-radius) - 8px);
  pointer-events: none;
  z-index: 2;
}

.th-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--th-ease);
}

.th-frame:hover img {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  .th-frame img,
  .th-frame:hover img {
    transition: none;
    transform: none;
  }
}

/* Star row */
.th-stars {
  color: #d9a441;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

/* ==========================================================================
   CHROME — top banner, navbar, mobile bar, footer
   ========================================================================== */

/* Top banner */
.top-banner {
  background-color: #13201b;
  border-bottom: 2px solid var(--th-gold);
  letter-spacing: 0.02em;
}

.top-banner .phone-number {
  font-size: 1.35rem !important;
  letter-spacing: 0.04em;
}

.top-banner .phone-number a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.25s var(--th-ease);
}

.top-banner .phone-number a:hover,
.top-banner .phone-number a:focus {
  color: var(--th-gold) !important;
}

.top-banner .phone-icon {
  color: var(--th-gold) !important;
  width: 0.85em;
  height: 0.85em;
  margin-right: 0;
  stroke-width: 2.2;
}

@media (max-width: 768px) {
  .top-banner .phone-number {
    font-size: 1.1rem !important;
  }
}

/* Navbar */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(1, 38, 28, 0.96);
  border-bottom: 1px solid rgba(230, 167, 86, 0.28);
  box-shadow: 0 6px 26px rgba(1, 38, 28, 0.3);
  padding: 0.45rem 0.88rem;
}

@supports (backdrop-filter: blur(8px)) {
  #mainNav {
    background-color: rgba(1, 38, 28, 0.88);
    backdrop-filter: blur(12px);
  }
}

#mainNav .navbar-brand img,
#mainNav .navbar-brand .brand-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s var(--th-ease);
}

#mainNav .navbar-brand:hover img {
  transform: scale(1.05) rotate(-2deg);
}

#mainNav .navbar-nav .nav-item .nav-link {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: rgba(246, 225, 197, 0.8);
  padding: 0.6rem 0.2rem;
  transition: color 0.25s var(--th-ease);
}

#mainNav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 2px;
  background: var(--th-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--th-ease);
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:focus {
  color: #fff;
}

#mainNav .navbar-nav .nav-item .nav-link:hover::after,
#mainNav .navbar-nav .nav-item .nav-link:focus-visible::after,
#mainNav .navbar-nav .nav-item .nav-link.active::after {
  transform: scaleX(1);
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item.active .nav-link {
  color: var(--th-gold);
}

@media (min-width: 992px) {
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.8rem !important;
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }
}

/* Nav CTA cluster: Book (ghost) + Gift Cards (gold) */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border: 2px solid rgba(246, 225, 197, 0.45);
  border-radius: 50rem;
  color: var(--th-cream);
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s var(--th-ease), color 0.25s var(--th-ease),
              border-color 0.25s var(--th-ease), transform 0.25s var(--th-ease);
}

.nav-book-link:hover,
.nav-book-link:focus {
  background: var(--th-cream);
  border-color: var(--th-cream);
  color: var(--th-green-deep);
  transform: translateY(-1px);
}

.nav-gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1.3rem;
  border-radius: 50rem;
  background: var(--th-gold-grad);
  color: #22160a;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(230, 167, 86, 0.42);
  transition: transform 0.28s var(--th-ease), box-shadow 0.28s var(--th-ease),
              filter 0.28s var(--th-ease);
}

.nav-gift-link:hover,
.nav-gift-link:focus {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 8px 26px rgba(230, 167, 86, 0.6);
  color: #22160a;
}

.nav-gift-link.active {
  box-shadow: 0 0 0 3px rgba(246, 225, 197, 0.65), 0 6px 20px rgba(230, 167, 86, 0.5);
}

.nav-gift-icon {
  font-size: 1rem;
  stroke-width: 2.1;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes th-gift-pulse {
    0%, 88%, 100% {
      box-shadow: 0 4px 16px rgba(230, 167, 86, 0.42), 0 0 0 0 rgba(230, 167, 86, 0.5);
    }
    94% {
      box-shadow: 0 4px 16px rgba(230, 167, 86, 0.42), 0 0 0 10px rgba(230, 167, 86, 0);
    }
  }
  .nav-gift-link:not(.active) {
    animation: th-gift-pulse 6s ease-in-out infinite;
  }
  .nav-gift-link:hover {
    animation: none;
  }
}

.navbar-toggler {
  border-color: rgba(230, 167, 86, 0.55);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(230, 167, 86, 0.35);
}

/* Collapsed (mobile) menu */
@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    padding-bottom: 0.75rem;
  }
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.98rem !important;
    padding: 0.7rem 0.2rem;
  }
  #mainNav .navbar-nav .nav-item .nav-link::after {
    left: 0;
    right: auto;
    width: 2.5rem;
    transform-origin: left;
  }
  .nav-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 0.9rem;
  }
  .nav-book-link,
  .nav-gift-link {
    justify-content: center;
    padding: 0.85rem 1.3rem;
    font-size: 0.92rem;
  }
}

/* Mobile action bar */
.book-now-banner {
  height: 72px;
  box-shadow: 0 -4px 18px rgba(1, 38, 28, 0.28);
  background-color: var(--th-green-deep);
}

.book-now-btn {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: filter 0.2s var(--th-ease);
}

.book-now-btn:last-child {
  border-right: 0;
}

.book-now-btn:active {
  filter: brightness(1.1);
}

.book-now-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 4px;
  stroke-width: 2.1;
}

.book-now-banner .gift-btn {
  background: var(--th-gold-grad);
  color: #22160a !important;
  font-weight: 900;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #13201b 0%, #0c1512 100%);
  border-top: 3px solid var(--th-gold);
  text-align: left;
}

.footer .container.footer-main {
  display: block;
  padding: 3.25rem 1rem 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-col { min-width: 0; }

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1rem;
}

.footer .footer-tagline {
  font-family: "Lora", serif;
  font-size: 0.95rem !important;
  line-height: 1.7;
  color: rgba(246, 225, 197, 0.78);
  margin-bottom: 1.1rem !important;
  max-width: 34ch;
}

.footer .footer-heading {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--th-gold);
  margin-bottom: 1rem;
}

.footer-address {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(246, 225, 197, 0.85);
  margin-bottom: 0.75rem;
  font-style: normal;
}

.footer .footer-line {
  font-size: 0.95rem !important;
  line-height: 1.9;
  color: rgba(246, 225, 197, 0.85);
}

.footer .footer-hours {
  color: rgba(246, 225, 197, 0.6);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer a {
  color: rgba(246, 225, 197, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.22s var(--th-ease);
}

.footer a:hover,
.footer a:focus {
  color: var(--th-gold);
  text-decoration: underline;
}

.footer .social-icons {
  justify-content: flex-start;
  margin-bottom: 0 !important;
}

.footer .social-icons a {
  font-size: 0;
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.22s var(--th-ease), transform 0.22s var(--th-ease);
}

.footer .social-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-gift-cta,
.footer-book-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0.72rem 1rem;
  border-radius: 50rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s var(--th-ease), box-shadow 0.25s var(--th-ease);
}

.footer .footer-gift-cta {
  background: var(--th-gold-grad);
  color: #22160a;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 14px rgba(230, 167, 86, 0.35);
}

.footer .footer-gift-cta:hover,
.footer .footer-gift-cta:focus {
  color: #22160a;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 167, 86, 0.5);
}

.footer .footer-book-cta {
  border: 2px solid rgba(246, 225, 197, 0.5);
  color: var(--th-cream);
}

.footer .footer-book-cta:hover,
.footer .footer-book-cta:focus {
  color: var(--th-green-deep);
  background: var(--th-cream);
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 225, 197, 0.15);
  padding: 1rem 0;
}

.footer .footer-bottom .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 1rem;
}

.footer .footer-bottom p {
  font-size: 0.85rem !important;
  color: rgba(246, 225, 197, 0.6);
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 575.98px) {
  .footer { text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .footer .social-icons { justify-content: center; }
  .footer .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
  }
}

/* ==========================================================================
   HOME
   ========================================================================== */

/* Promo ribbon */
.th-ribbon {
  background: linear-gradient(90deg, #0b3b2a, #0e4531 50%, #0b3b2a);
  border-bottom: 1px solid rgba(230, 167, 86, 0.35);
  color: var(--th-cream);
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.th-ribbon strong {
  color: var(--th-gold);
  font-weight: 800;
}

.th-ribbon .th-icon {
  color: var(--th-gold);
  margin-right: 0.35rem;
}

/* Hero */
.th-hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--th-green-deep);
}

.th-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.th-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 38, 28, 0.55) 0%, rgba(1, 38, 28, 0.25) 40%,
                    rgba(1, 38, 28, 0.62) 100%);
}

.th-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 4.5rem 1rem;
  max-width: 900px;
}

.th-hero__logo {
  width: clamp(120px, 16vw, 172px);
  height: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.th-hero__content h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  margin-bottom: 0.9rem;
}

.th-hero__tag {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--th-cream);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.th-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.th-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.th-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  border-radius: 50rem;
  background: rgba(1, 38, 28, 0.55);
  border: 1px solid rgba(246, 225, 197, 0.28);
  backdrop-filter: blur(6px);
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--th-cream);
}

.th-hero__chips .th-icon {
  color: var(--th-gold);
}

/* Welcome */
.th-welcome {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.th-welcome .th-lede {
  margin-top: 1.25rem;
}

.th-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.75rem 0;
}

.th-trust__item {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius);
  box-shadow: var(--th-shadow-sm);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform 0.3s var(--th-ease), box-shadow 0.3s var(--th-ease);
}

.th-trust__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--th-shadow-md);
}

.th-trust__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6d9a9, var(--th-gold));
  color: var(--th-green-deep);
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(230, 167, 86, 0.35);
}

.th-trust__title {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--th-green-deep);
}

.th-trust__sub {
  display: block;
  font-family: "Lora", serif;
  font-size: 0.85rem;
  color: var(--th-muted);
  margin-top: 0.3rem;
}

.th-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Studio mosaic */
.th-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.th-mosaic__item {
  position: relative;
  border-radius: var(--th-radius);
  overflow: hidden;
  box-shadow: var(--th-shadow-sm);
}

.th-mosaic__item--wide { grid-column: span 2; grid-row: span 2; }

.th-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--th-ease);
}

.th-mosaic__item:hover img {
  transform: scale(1.05);
}

.th-mosaic__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.75rem;
  background: linear-gradient(transparent, rgba(1, 38, 28, 0.85));
  color: var(--th-cream);
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .th-mosaic__item img,
  .th-mosaic__item:hover img {
    transition: none;
    transform: none;
  }
}

/* Featured massages */
.th-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.th-featured__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius);
  overflow: hidden;
  box-shadow: var(--th-shadow-sm);
  text-decoration: none;
  transition: transform 0.3s var(--th-ease), box-shadow 0.3s var(--th-ease),
              border-color 0.3s var(--th-ease);
}

.th-featured__card:hover,
.th-featured__card:focus {
  transform: translateY(-6px);
  border-color: rgba(230, 167, 86, 0.6);
  box-shadow: var(--th-shadow-md);
  text-decoration: none;
}

.th-featured__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.th-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--th-ease);
}

.th-featured__card:hover .th-featured__media img {
  transform: scale(1.05);
}

.th-featured__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.6rem;
}

.th-featured__title {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--th-green-deep);
  margin-bottom: 0.5rem;
}

.th-featured__desc {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--th-muted);
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.th-featured__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.th-featured__price {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--th-bronze);
}

.th-featured__link {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--th-forest);
}

.th-featured__foot {
  text-align: center;
  margin-top: 2.75rem;
}

/* Gift band (home) */
.th-giftband__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.th-giftband__copy .th-lede {
  color: rgba(246, 225, 197, 0.88);
}

.th-giftband__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Reviews + commitment */
.th-reviews-wrap {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius-lg);
  box-shadow: var(--th-shadow-sm);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  overflow: hidden;
}

.th-commit {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 167, 86, 0.35);
  border-radius: var(--th-radius-lg);
  box-shadow: var(--th-shadow-sm);
  padding: clamp(2rem, 4.5vw, 3.25rem);
  position: relative;
}

.th-commit::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(230, 167, 86, 0.35);
  border-radius: calc(var(--th-radius-lg) - 8px);
  pointer-events: none;
}

.th-commit p {
  font-family: "Lora", serif;
  color: var(--th-ink);
  line-height: 1.85;
}

.th-commit a {
  color: var(--th-bronze);
  font-weight: 700;
}

/* ==========================================================================
   MASSAGES PAGE
   ========================================================================== */
.th-services-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.th-services-nav .th-chip {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.12);
  color: var(--th-forest);
}

.th-services-nav .th-chip:hover,
.th-services-nav .th-chip:focus {
  background: var(--th-forest);
  border-color: var(--th-forest);
  color: #fff;
  transform: translateY(-1px);
}

/* Service card */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.08);
  border-radius: var(--th-radius-lg);
  box-shadow: var(--th-shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  scroll-margin-top: 120px;
  transition: box-shadow 0.35s var(--th-ease), border-color 0.35s var(--th-ease);
}

.service-card:hover {
  border-color: rgba(230, 167, 86, 0.5);
  box-shadow: var(--th-shadow-md);
}

.service-card.reverse-layout .service-media { order: 2; }
.service-card.reverse-layout .service-content { order: 1; }

/* Media (image/video toggle) */
.service-media {
  position: relative;
  border-radius: var(--th-radius);
  overflow: hidden;
  box-shadow: var(--th-shadow-sm);
  background: var(--th-paper);
}

.service-image-container,
.service-video-container {
  position: relative;
  aspect-ratio: 4 / 3;
}

.service-video-container { display: none; }

.service-image,
.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 38, 28, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.play-button {
  background: rgba(246, 225, 197, 0.95);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--th-green-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--th-ease), background-color 0.25s var(--th-ease);
}

.play-button:hover {
  background: #fff;
  transform: scale(1.08);
}

.media-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  gap: 2px;
  background: rgba(1, 38, 28, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(246, 225, 197, 0.25);
  border-radius: 50rem;
  padding: 4px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: none;
  background: transparent;
  border-radius: 50rem;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(246, 225, 197, 0.8);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.toggle-btn.active {
  background: var(--th-gold);
  color: #22160a;
}

.toggle-btn:hover:not(.active) {
  color: #fff;
}

/* Service content */
.service-title {
  font-family: "Lora", serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--th-green-deep);
  margin-bottom: 0.4rem;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.service-rating .rating-text {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--th-muted);
}

.service-description p {
  font-family: "Lora", serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--th-ink);
  margin-bottom: 1.25rem;
}

.service-sub {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--th-bronze);
  margin: 1.25rem 0 0.75rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
  font-family: "Lora", serif;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--th-ink);
}

.benefit-item .th-icon {
  color: var(--th-gold-dark);
  margin-top: 3px;
  stroke-width: 3;
}

/* Pricing chips */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.pricing-card {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--th-paper);
  border: 1px solid rgba(1, 38, 28, 0.1);
  border-radius: 50rem;
  padding: 0.45rem 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease,
              transform 0.2s var(--th-ease);
}

.pricing-card:hover {
  border-color: var(--th-gold);
  background: #fff;
  transform: translateY(-1px);
}

.pricing-card .duration {
  font-family: "Raleway", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--th-muted);
}

.pricing-card .price {
  font-family: "Lora", serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--th-green-deep);
}

/* Testimonial */
.client-testimonial {
  position: relative;
  background: var(--th-cream);
  border: 1px solid rgba(201, 140, 63, 0.35);
  border-radius: var(--th-radius);
  padding: 1.4rem 1.5rem 1.1rem 3.1rem;
  margin: 1.5rem 0;
}

.client-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  left: 0.95rem;
  font-family: "Lora", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--th-gold-dark);
}

.testimonial-content {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--th-ink);
  margin-bottom: 0.6rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--th-bronze);
}

/* Actions */
.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.service-gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--th-bronze);
  text-decoration: none;
  border-bottom: 2px solid rgba(201, 140, 63, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service-gift-link:hover,
.service-gift-link:focus {
  color: var(--th-gold-dark);
  border-color: var(--th-gold-dark);
  text-decoration: none;
}

/* Massages CTA features */
.th-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.th-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.th-cta-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--th-cream);
}

.th-cta-features .th-icon {
  color: var(--th-gold);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.th-story {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.th-story__media .th-frame {
  aspect-ratio: 4 / 3;
}

.th-story__body p {
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--th-ink);
  margin-bottom: 1.1rem;
}

.th-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.th-values__item {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius);
  box-shadow: var(--th-shadow-sm);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.3s var(--th-ease), box-shadow 0.3s var(--th-ease);
}

.th-values__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--th-shadow-md);
}

.th-values__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--th-forest), var(--th-green-soft));
  color: var(--th-cream);
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(1, 38, 28, 0.25);
}

.th-values__item h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--th-green-deep);
  margin-bottom: 0.6rem;
}

.th-values__item p {
  font-family: "Lora", serif;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--th-muted);
  margin: 0;
}

/* Gallery */
.th-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.th-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--th-radius);
  overflow: hidden;
  box-shadow: var(--th-shadow-sm);
}

.th-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--th-ease);
}

.th-gallery__item:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .th-gallery__item img,
  .th-gallery__item:hover img {
    transition: none;
    transform: none;
  }
}

/* ==========================================================================
   LOCATION PAGE
   ========================================================================== */
.th-location {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: stretch;
}

.th-location__info {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius-lg);
  box-shadow: var(--th-shadow-sm);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}

.th-info-rows {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.th-info-rows li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(1, 38, 28, 0.07);
  font-family: "Lora", serif;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--th-ink);
}

.th-info-rows li:last-child { border-bottom: 0; }

.th-info-rows .th-icon {
  width: 1.25em;
  height: 1.25em;
  color: var(--th-gold-dark);
  margin-top: 3px;
}

.th-info-rows strong {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--th-bronze);
  display: block;
  margin-bottom: 0.15rem;
}

.th-location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.th-map-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius-lg);
  box-shadow: var(--th-shadow-sm);
  overflow: hidden;
}

.th-map-card iframe {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 420px;
  border: 0;
}

.th-map-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid rgba(1, 38, 28, 0.08);
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  color: var(--th-muted);
}

.th-map-card__foot a {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--th-forest);
  text-decoration: none;
  white-space: nowrap;
}

.th-map-card__foot a:hover { text-decoration: underline; }

/* Finding-us photos */
.th-findus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.th-findus figure {
  margin: 0;
}

.th-findus .th-frame {
  aspect-ratio: 4 / 3;
}

.th-findus figcaption {
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--th-muted);
  text-align: center;
  padding-top: 0.7rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.th-contact {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: stretch;
}

.th-contact__card {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius-lg);
  box-shadow: var(--th-shadow-sm);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
}

.th-contact__card .th-lede {
  max-width: 44ch;
  margin: 0 auto 1.75rem;
}

.th-contact-rows {
  list-style: none;
  padding: 0;
  margin: 1.9rem 0 0;
}

.th-contact-rows li {
  margin-bottom: 0.4rem;
}

.th-contact-rows a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Lora", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--th-green-deep);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--th-radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.th-contact-rows a:hover,
.th-contact-rows a:focus {
  background: var(--th-paper);
  color: var(--th-bronze);
}

.th-contact-rows .th-icon {
  color: var(--th-gold-dark);
  font-size: 1.05em;
}

.th-hours-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50rem;
  background: var(--th-paper);
  border: 1px solid rgba(1, 38, 28, 0.1);
  font-family: "Raleway", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--th-ink);
}

.th-hours-strip .th-icon { color: var(--th-gold-dark); }

.th-follow {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(1, 38, 28, 0.08);
}

.th-follow p {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--th-bronze);
  margin-bottom: 0.75rem;
}

.th-follow a {
  display: inline-flex;
  color: var(--th-gold-dark);
  transition: transform 0.25s var(--th-ease), color 0.25s var(--th-ease);
}

.th-follow a:hover {
  color: var(--th-gold);
  transform: translateY(-2px);
}

.th-contact__media {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.th-contact__media .th-frame {
  flex: 1;
  min-height: 320px;
}

.th-contact__media .th-frame img {
  position: absolute;
  inset: 0;
}

/* ==========================================================================
   POLICY PAGE
   ========================================================================== */
.th-policy-hero {
  position: relative;
  height: clamp(280px, 44vh, 430px);
  overflow: hidden;
}

.th-policy-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-policy-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 38, 28, 0.35), rgba(1, 38, 28, 0.72));
}

.th-policy-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.th-policy-hero__content .th-eyebrow {
  color: var(--th-gold);
}

.th-policy-hero__content h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.th-policies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.th-policy-card {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.07);
  border-radius: var(--th-radius);
  box-shadow: var(--th-shadow-sm);
  padding: 1.9rem 1.7rem;
  transition: transform 0.3s var(--th-ease), box-shadow 0.3s var(--th-ease);
}

.th-policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--th-shadow-md);
}

.th-policy-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6d9a9, var(--th-gold));
  color: var(--th-green-deep);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(230, 167, 86, 0.3);
}

.th-policy-card h2 {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--th-green-deep);
  margin-bottom: 0.6rem;
}

.th-policy-card p {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--th-muted);
  margin: 0;
}

.th-policy-foot {
  text-align: center;
  margin-top: 3rem;
}

.th-policy-foot p {
  font-family: "Lora", serif;
  color: var(--th-muted);
  margin-bottom: 1.1rem;
}

/* ==========================================================================
   GIFT CERTIFICATES PAGE
   ========================================================================== */
.btn-gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--th-gold-grad);
  color: #22160a;
  border: 0;
  border-radius: 50rem;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(230, 167, 86, 0.42);
  transition: transform 0.25s var(--th-ease), box-shadow 0.25s var(--th-ease),
              filter 0.25s var(--th-ease);
}

.btn-gift:hover,
.btn-gift:focus {
  color: #22160a;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 167, 86, 0.55);
}

.btn-gift-lg {
  padding: 1.05rem 2.3rem;
  font-size: 0.95rem;
}

.btn-gift-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 1.9rem;
  border: 2px solid rgba(246, 225, 197, 0.55);
  border-radius: 50rem;
  color: var(--th-cream);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.25s var(--th-ease), color 0.25s var(--th-ease),
              transform 0.25s var(--th-ease);
}

.btn-gift-ghost:hover,
.btn-gift-ghost:focus {
  background: var(--th-cream);
  color: var(--th-green-deep);
  transform: translateY(-2px);
}

.gift-btn-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.gift-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 167, 86, 0.22), transparent 55%),
    var(--th-dark-grad);
  padding: 4.5rem 0 5rem;
  color: var(--th-cream);
  overflow: hidden;
}

.gift-eyebrow {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--th-gold);
  margin-bottom: 0.9rem;
}

.gift-hero-title {
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 0;
}

.gift-swoosh {
  justify-content: flex-start;
  margin: 1.1rem 0 1.4rem;
}

.gift-swoosh img {
  width: 170px;
  margin: 0;
}

.gift-hero-text {
  font-family: "Lora", serif;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(246, 225, 197, 0.9);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.gift-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.gift-hero-note {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  color: rgba(246, 225, 197, 0.62);
  margin: 0;
}

.gift-hero-note a { color: var(--th-gold); }

/* Gift card mock-up */
.gift-card-visual {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  aspect-ratio: 1.6 / 1;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, #f3c98a, var(--th-gold) 40%, #a97430 75%, #f3c98a);
  box-shadow: var(--th-shadow-lg);
  transform: rotate(-3deg);
  transition: transform 0.5s var(--th-ease);
  overflow: hidden;
}

.gift-card-visual:hover {
  transform: rotate(0deg) translateY(-6px);
}

.gift-card-inner {
  height: 100%;
  border-radius: 17px;
  background:
    radial-gradient(circle at 80% 15%, rgba(230, 167, 86, 0.18), transparent 60%),
    linear-gradient(160deg, #06301f, #01261c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
}

.gift-card-logo {
  height: 46px;
  width: auto;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}

.gift-card-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--th-gold);
}

.gift-card-amount {
  font-family: "Lora", serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.gift-card-foot {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 225, 197, 0.6);
  margin-top: 0.3rem;
}

.gift-card-shine {
  position: absolute;
  top: -60%;
  left: -35%;
  width: 45%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: rotate(18deg);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes th-card-shine {
    0%, 70% { left: -35%; }
    100% { left: 115%; }
  }
  .gift-card-shine {
    animation: th-card-shine 7s ease-in-out infinite;
  }
}

/* Gift page sections */
.gift-section { padding: 4.5rem 0; }
.gift-section-cream { background-color: var(--th-cream); }
.gift-section-light { background-color: var(--th-paper); }

.gift-section-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 167, 86, 0.18), transparent 60%),
    var(--th-green-deep);
  color: var(--th-cream);
  padding: 3.5rem 0;
}

.gift-section-intro {
  max-width: 62ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 1.05rem;
  color: var(--th-muted);
}

.gift-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.gift-perk {
  background: #fff;
  border-radius: var(--th-radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--th-shadow-sm);
  border: 1px solid rgba(1, 38, 28, 0.06);
  transition: transform 0.3s var(--th-ease), box-shadow 0.3s var(--th-ease);
}

.gift-perk:hover {
  transform: translateY(-5px);
  box-shadow: var(--th-shadow-md);
}

.gift-perk-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--th-green-deep);
  background: linear-gradient(135deg, #f6d9a9, var(--th-gold));
  box-shadow: 0 6px 16px rgba(230, 167, 86, 0.35);
}

.gift-perk h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--th-green-deep);
  margin-bottom: 0.7rem;
}

.gift-perk p {
  font-family: "Lora", serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--th-muted);
  margin: 0;
}

.gift-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.gift-amount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid rgba(1, 38, 28, 0.08);
  border-radius: var(--th-radius);
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--th-shadow-sm);
  transition: transform 0.3s var(--th-ease), box-shadow 0.3s var(--th-ease),
              border-color 0.3s var(--th-ease);
}

.gift-amount-card:hover,
.gift-amount-card:focus {
  transform: translateY(-6px);
  border-color: var(--th-gold);
  box-shadow: var(--th-shadow-md);
  text-decoration: none;
}

.gift-amount-featured {
  border-color: var(--th-gold);
  box-shadow: 0 10px 30px rgba(230, 167, 86, 0.28);
}

.gift-amount-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--th-gold-grad);
  color: #22160a;
  font-family: "Raleway", sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: 50rem;
  white-space: nowrap;
}

.gift-amount-value {
  font-family: "Lora", serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--th-green-deep);
  margin-bottom: 0.6rem;
}

.gift-amount-title {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--th-forest);
  margin-bottom: 0.75rem;
}

.gift-amount-desc {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--th-muted);
  margin-bottom: 1.4rem;
}

.gift-amount-cta {
  margin-top: auto;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--th-bronze);
}

.gift-amounts-footer {
  text-align: center;
  margin-top: 3rem;
}

.gift-amounts-footer .gift-hero-note { color: var(--th-muted); }

.gift-amounts-footer .gift-hero-note a {
  color: var(--th-bronze);
  text-decoration: underline;
}

.gift-dark-heading {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--th-gold);
  margin-bottom: 1.75rem;
}

.gift-occasions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.gift-occasions li {
  font-family: "Lora", serif;
  font-size: 0.97rem;
  color: var(--th-cream);
  background: rgba(246, 225, 197, 0.08);
  border: 1px solid rgba(246, 225, 197, 0.22);
  border-radius: 50rem;
  padding: 0.5rem 1.15rem;
}

.gift-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gift-step {
  text-align: center;
  padding: 0 0.5rem;
}

.gift-step-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--th-cream);
  background: linear-gradient(135deg, var(--th-forest), var(--th-green-deep));
  box-shadow: 0 6px 16px rgba(1, 38, 28, 0.25);
}

.gift-step h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--th-green-deep);
  margin-bottom: 0.6rem;
}

.gift-step p {
  font-family: "Lora", serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--th-muted);
  max-width: 32ch;
  margin: 0 auto;
}

.gift-faq {
  max-width: 780px;
  margin: 0 auto;
}

.gift-faq-item {
  background: #fff;
  border: 1px solid rgba(1, 38, 28, 0.09);
  border-radius: var(--th-radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--th-shadow-sm);
  overflow: hidden;
}

.gift-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.5rem;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--th-green-deep);
  transition: color 0.22s var(--th-ease);
}

.gift-faq-item summary::-webkit-details-marker { display: none; }

.gift-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--th-gold);
}

.gift-faq-item[open] summary::after { content: "\2212"; }

.gift-faq-item summary:hover { color: var(--th-bronze); }

.gift-faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
  font-family: "Lora", serif;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--th-muted);
}

.gift-faq-item p a {
  color: var(--th-bronze);
  font-weight: 700;
}

.gift-final-cta {
  background:
    radial-gradient(circle at 50% 120%, rgba(230, 167, 86, 0.28), transparent 60%),
    linear-gradient(140deg, #01261c, #073226);
  padding: 5rem 0;
  color: var(--th-cream);
}

.gift-final-title {
  font-family: "Lora", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.gift-final-text {
  font-family: "Lora", serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(246, 225, 197, 0.88);
  max-width: 52ch;
  margin: 0 auto 2rem;
}

.gift-final-cta .gift-hero-note a {
  color: var(--th-gold);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  .th-hero { min-height: 72vh; }

  .th-story,
  .th-location,
  .th-contact,
  .th-giftband__grid {
    grid-template-columns: 1fr;
  }

  .th-giftband__grid { gap: 2.25rem; }
  .th-giftband__copy { text-align: center; }
  .th-giftband__copy .th-head--left { text-align: center; margin-left: auto; margin-right: auto; }
  .th-giftband__copy .th-swoosh--left { justify-content: center; }
  .th-giftband__actions { justify-content: center; }

  .th-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .th-featured { grid-template-columns: 1fr 1fr; }
  .th-featured__card:last-child { grid-column: 1 / -1; }

  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card.reverse-layout .service-media { order: 0; }
  .service-card.reverse-layout .service-content { order: 1; }

  .th-values { grid-template-columns: 1fr; }
  .th-gallery { grid-template-columns: repeat(2, 1fr); }
  .th-findus { grid-template-columns: 1fr; }
  .th-policies { grid-template-columns: 1fr; }

  .gift-hero {
    padding: 3.25rem 0 3.75rem;
    text-align: center;
  }
  .gift-hero-text { margin-left: auto; margin-right: auto; }
  .gift-swoosh { justify-content: center; }
  .gift-hero-actions { justify-content: center; }
  .gift-card-visual {
    transform: rotate(-2deg);
    max-width: 360px;
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .th-trust { grid-template-columns: 1fr; }
  .th-featured { grid-template-columns: 1fr; }
  .th-featured__card:last-child { grid-column: auto; }
  .th-gallery { grid-template-columns: 1fr; }

  .th-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .th-mosaic__item--wide { grid-column: auto; grid-row: auto; }

  .th-hero__actions,
  .th-welcome__actions,
  .th-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .th-hero__actions .btn-th,
  .th-welcome__actions .btn-th,
  .th-cta-actions .btn-th {
    width: 100%;
  }

  .th-map-card iframe { min-height: 320px; }

  .gift-section,
  .gift-final-cta { padding: 3rem 0; }
  .gift-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-gift-lg,
  .btn-gift-ghost {
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-size: 0.85rem;
  }
  .gift-amount-value { font-size: 2.4rem; }
  .gift-perk { padding: 1.75rem 1.35rem; }
}
