/* ==========================================================================
   GOLDEN GLOSS TANNING — design tokens
   Black / warm-white / cobalt (#1f5fff), cursive display, editorial layout
   ========================================================================== */

:root {
  --black: #faf8f4;
  --near-black: #f0ede6;
  --ivory: #0a0a0a;
  --white: #0a0a0a;
  --cobalt: #1f5fff;
  --cobalt-soft: rgba(31, 95, 255, 0.16);
  --cobalt-dim: rgba(31, 95, 255, 0.55);
  --line-dark: rgba(10, 10, 10, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --text-dark: #2c2b28;
  --text-dim: #6d6b65;
  --text-body: #efece6;
  --text-muted: #a8a6a0;

  --font-script: "Pinyon Script", cursive;
  --font-serif: "Marcellus", serif;
  --font-sans: "Jost", sans-serif;

  --max: 1180px;
  --edge: clamp(24px, 6vw, 80px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
}

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

/* subtle film-grain atmosphere over the whole page */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px var(--edge);
  transition:
    background-color 0.5s var(--ease),
    padding 0.4s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: blur(10px);
  padding: 14px var(--edge);
  border-bottom-color: var(--line-dark);
}
.site-header.is-light {
  background: rgba(250, 248, 244, 0.88);
  border-bottom-color: var(--line-light);
}
.site-header.is-light .wordmark,
.site-header.is-light .nav-link {
  color: var(--text-body);
}
.site-header.is-light .nav-link.is-active,
.site-header.is-light .nav-link:hover {
  color: var(--cobalt);
}
.site-header.is-light .menu-toggle span {
  background: var(--text-body);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-on-hero:not(.is-scrolled) .wordmark,
.site-header.is-on-hero:not(.is-scrolled) .nav-link,
.site-header.is-on-hero:not(.is-scrolled) .nav-cta {
  color: #f5f3ee;
}
.site-header.is-on-hero:not(.is-scrolled) .menu-toggle span {
  background: #f5f3ee;
}

.site-header.is-menu-open {
  background: #ffffff;
  border-bottom-color: var(--line-light);
}
.site-header.is-menu-open .wordmark,
.site-header.is-menu-open .nav-cta {
  color: #1a1a1a !important;
}
.site-header.is-menu-open .menu-toggle span {
  background: #1a1a1a !important;
}

.site-header.is-menu-open .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px);
}

.logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 52px;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.logo img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  transition:
    transform 0.4s var(--ease),
    filter 0.4s var(--ease);
}

/* Subtle luxury hover effect */
.logo:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.logo:hover img {
  transform: scale(1.02);
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
}
.nav-link {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--cobalt);
  transition: right 0.35s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}
.nav-link.is-active {
  color: var(--cobalt);
}

.nav-cta {
  border: 1px solid var(--cobalt-dim);
  padding: 9px 18px;
  border-radius: 2px;
  color: var(--text-dark);
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: #fff;
}
.site-header.is-light .nav-cta {
  color: var(--text-body);
}
.site-header.is-light .nav-cta:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  padding: 0;
  z-index: 300;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text-dark);
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s var(--ease),
    top 0.35s var(--ease);
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 10px;
}
.menu-toggle span:nth-child(3) {
  top: 20px;
}
.menu-toggle.is-open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ==========================================================================
   VIEWS (SPA-style sections)
   ========================================================================== */
.view {
  display: none;
}
.view.is-active {
  display: block;
  animation: viewIn 0.6s var(--ease);
}
@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.band {
  padding: 100px var(--edge);
}
.band-light {
  background: var(--ivory);
  color: var(--text-body);
}
.band-dark {
  background: var(--black);
  color: var(--text-dark);
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cobalt);
  text-align: center;
  margin: 0 0 14px;
}
.eyebrow-on-dark {
  color: var(--cobalt);
}

.section-title {
  text-align: center;
  font-size: clamp(38px, 5vw, 58px);
  margin: 0 0 56px;
  color: inherit;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.35) 45%,
      rgba(10, 10, 10, 0.65) 100%
    ),
    url("images/home-bg.webp") center center / cover no-repeat;
  --text-dark: #f5f3ee;
  --text-dim: #cfcac0;
  --white: #ffffff;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px var(--edge) 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 140vw);
  height: min(900px, 140vw);
  transform: translate(-50%, -52%);
  background: radial-gradient(
    circle,
    var(--cobalt-soft) 0%,
    rgba(31, 95, 255, 0.06) 42%,
    transparent 68%
  );
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%,
  100% {
    opacity: 0.65;
    transform: translate(-50%, -52%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -52%) scale(1.08);
  }
}
.hero-eyebrow {
  position: relative;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 26px;
}
.hero-title {
  position: relative;
  font-family: var(--font-serif);
  white-space: nowrap;
  font-size: clamp(1rem, 8vw, 4rem);
  line-height: 0.95;
  margin: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-sub {
  font-size: 0.34em;
  font-family: var(--font-serif);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-top: 14px;
}
.signature-swash {
  position: relative;
  width: min(300px, 60vw);
  height: 22px;
  margin: 22px auto 0;
}
.signature-swash path {
  fill: none;
  stroke: var(--cobalt);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 1.6s var(--ease) 0.3s forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.hero-tagline {
  position: relative;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-dim);
  margin: 26px 0 42px;
  max-width: 460px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 2px;
  /* border: 1px solid var(--cobalt); */
  background: transparent;
  color: var(--white);
  transition:
    background-color 0.4s var(--ease),
    color 0.4s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.4s var(--ease);
}
.btn-primary {
  background: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px var(--cobalt-dim);
}
.btn-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-outline:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: #fff;
}
.btn-wide {
  width: 100%;
}
.btn-glow {
  position: relative;
}
.btn-glow::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 6px;
  background: radial-gradient(circle, var(--cobalt-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.btn-glow:hover::before {
  opacity: 1;
}

/* ==========================================================================
   WELCOME
   ========================================================================== */
.welcome {
  padding-top: 90px;
  padding-bottom: 90px;
}
.welcome-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.75;
  font-weight: 300;
  color: var(--text-body);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.service-card {
  background: var(--black);
  padding: 44px 30px;
  position: relative;
  transition: background-color 0.4s var(--ease);
}
.service-card::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cobalt);
  opacity: 0.6;
  margin-bottom: 26px;
  transition:
    width 0.35s var(--ease),
    opacity 0.35s var(--ease);
}
.service-card:hover {
  background: var(--near-black);
}
.service-card:hover::before {
  width: 44px;
  opacity: 1;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--white);
}
.service-copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 24px;
}
.service-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.service-note {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}
.service-note p {
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  text-align: center;
}
.testimonial-track {
  display: grid;
  max-width: 640px;
  margin: 0 auto;
}
.testimonial {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  align-self: start;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  pointer-events: none;
}
.testimonial.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 20px;
}
.testimonial cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 40px;
}
.testimonial-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  border: 1px solid var(--cobalt-dim);
  background: transparent;
  color: var(--cobalt);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.testimonial-arrow:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: #fff;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.testimonial-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--cobalt);
  background: transparent;
  padding: 0;
  transition:
    background-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.testimonial-dots button.is-active {
  background: var(--cobalt);
  transform: scale(1.15);
}

/* ==========================================================================
   PAGE HERO (About / Clients / Info / Book)
   ========================================================================== */
.page-hero {
  padding: 170px var(--edge) 70px;
  text-align: center;
}
.page-title {
  font-size: clamp(48px, 7vw, 88px);
  margin: 0;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.portrait-frame {
  aspect-ratio: 3/4;
  /* border: 1px solid var(--cobalt-dim);
  outline: 1px solid var(--line-light); */
  outline-offset: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #f5f3ee 0%, #ece7dc 55%, #faf8f4 100%);
}
.monogram {
  font-family: var(--font-script);
  font-size: 84px;
  color: var(--cobalt);
}
.about-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  margin: 0 0 22px;
}
.about-copy p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.about-facts {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-facts li {
  font-size: 13.5px;
  color: var(--text-body);
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
}
.about-facts li span {
  display: inline-block;
  width: 90px;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--cobalt);
}

/* ==========================================================================
   GALLERY (Clients)
   ========================================================================== */
.gallery-wrap {
  padding-top: 0;
}
.gallery {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  background: var(--near-black);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  transform: scale(1.02);
  transition:
    transform 0.7s var(--ease),
    filter 0.5s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-num {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-num {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   INFO — CARE + FAQ
   ========================================================================== */
.care-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
}
.care-title {
  font-size: 34px;
  margin: 0 0 26px;
}
.care-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.care-list li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.care-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--cobalt);
}
.care-divider {
  width: 1px;
  background: var(--line-light);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-dark);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 16.5px;
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
  margin-left: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cobalt);
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: 14px;
  height: 1px;
}
.faq-icon::after {
  width: 1px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer p {
  margin: 0;
  padding: 0 4px 24px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 620px;
}

/* ==========================================================================
   BOOK FORM
   ========================================================================== */
.book-wrap {
  display: flex;
  justify-content: center;
}
.book-form,
.book-success {
  width: 100%;
  max-width: 560px;
}

.field {
  margin-bottom: 26px;
  position: relative;
}

.address-field {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition:
    max-height 0.45s var(--ease),
    opacity 0.35s var(--ease),
    margin-bottom 0.45s var(--ease);
}
.address-field.is-open {
  max-height: 140px;
  opacity: 1;
  margin-bottom: 26px;
}
.address-field-inner {
  padding-top: 4px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
}
.field-row .field {
  margin-bottom: 0;
}

.field label,
.field-label-static {
  display: block;
  font-family: var(--font-serif);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="date"],
.field input[type="time"],
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-light);
  padding: 10px 2px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--text-body);
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.field textarea {
  border: 1px solid var(--line-light);
  padding: 12px;
  border-radius: 2px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--cobalt);
}
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(28%) sepia(94%) saturate(3000%) hue-rotate(216deg)
    brightness(97%) contrast(101%);
  cursor: pointer;
  opacity: 0.85;
}
.field input[type="date"]::-webkit-calendar-picker-indicator:hover,
.field input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #c73838;
}
.field-error {
  display: none;
  margin-top: 8px;
  font-size: 12px;
  color: #c73838;
}
.field.has-error .field-error {
  display: block;
}
.field.has-error .radio-row {
  box-shadow: none;
}

.radio-row {
  display: flex;
  gap: 14px;
}
.radio-pill {
  position: relative;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-pill span {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  transition:
    border-color 0.3s var(--ease),
    background-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.radio-pill input:checked + span {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: #fff;
}
.radio-pill input:focus-visible + span {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}

.book-success {
  text-align: center;
}
.success-title {
  font-size: 44px;
  margin: 0 0 16px;
  color: var(--cobalt);
}
.book-success p:not(.success-title) {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--black);
  color: var(--text-dim);
  text-align: center;
  padding: 60px var(--edge) 40px;
}
.footer-word {
  font-size: 30px;
  color: var(--white);
  margin: 0 0 12px;
}
.footer-fine {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .portrait-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  .care-grid {
    grid-template-columns: 1fr;
  }
  .care-divider {
    width: 100%;
    height: 1px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 736px) {
  .hero {
    min-height: 100svh;
    background:
      linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.35) 45%,
        rgba(10, 10, 10, 0.65) 100%
      ),
      url("images/client5.jpg") center center / cover no-repeat;
    --text-dark: #f5f3ee;
    --text-dim: #cfcac0;
    --white: #ffffff;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px var(--edge) 80px;
    overflow: hidden;
  }

  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease),
      visibility 0s linear 0.45s;
    border-left: none;
    z-index: 150;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease),
      visibility 0s linear 0s;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .nav-link {
    color: #1a1a1a !important;
    font-family: var(--font-serif);
    font-size: 19px;
    letter-spacing: 0.14em;
  }
  .nav-cta {
    margin-top: 14px;
    border-color: var(--cobalt);
    color: #1a1a1a !important;
  }
  .nav-cta:hover {
    color: #fff !important;
  }
  .band {
    padding: 80px 24px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .logo {
    height: 44px;
  }

  .logo img {
    height: 44px;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .radio-row {
    flex-direction: column;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .logo {
    height: 40px;
  }

  .logo img {
    height: 40px;
    max-width: 165px;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.35) 45%,
        rgba(10, 10, 10, 0.65) 100%
      ),
      url("images/client5.jpg") center center / cover no-repeat;
    --text-dark: #f5f3ee;
    --text-dim: #cfcac0;
    --white: #ffffff;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px var(--edge) 80px;
    overflow: hidden;
  }
}
