/* ============================================================
   DRS MASSAGE — DESIGN SYSTEM
   Dark theme, refined. See roadmap §13 §14 §19 §21.
   NOTE: --red is a placeholder (#e6342a). Swap to your exact
   brand red and everything downstream (buttons, hovers, icons,
   borders) updates automatically.
   ============================================================ */

:root {
  /* --- Color --- */
  --bg: #060606;
  --surface: #121212;
  --surface-featured: #191818;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.16);

  --red: #ff0000;
  --red-dark: #a60000;
  --red-soft: rgba(182, 61, 47, 0.12);

  --text: #f4efe7;
  --text-muted: #b7b0a6;
  --text-faint: #7b766f;

  /* --- Type --- */
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Radius --- */
  --radius: 12px;
  --radius-lg: 16px;

  /* --- Spacing rhythm (§19) --- */
  --space-section: clamp(64px, 9vw, 120px);
  --space-section-gap: clamp(20px, 3vw, 32px);
  --gutter: clamp(20px, 5vw, 64px);
  --card-padding: clamp(24px, 3vw, 32px);

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.18);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Content grids that had no width cap and were stretching edge-to-edge
   on wide screens, leaving oversized gaps between items. */
.service-grid,
.feature-grid,
.option-grid,
.reviews-swiper {
  max-width: 1180px;
  margin-inline: auto;
}

.faq-section {
  max-width: 860px;
  margin-inline: auto;
}

/* ============================================================
   SECTION RHYTHM (§19)
   ============================================================ */

main > section {
  padding-block: var(--space-section);
  padding-inline: var(--gutter);
}

.section-heading {
  max-width: 640px;
  margin: 0 0 var(--space-section-gap);
}

.section-heading h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

.section-cta {
  margin-top: var(--space-section-gap);
  display: flex;
  justify-content: center;
}

/* ==========================================
   TACTILE BUTTONS — box-shadow approach
========================================== */

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  transform: translateY(0);
  transition:
    transform 0.12s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.12s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.14s ease;
}

.button {
  background: var(--red);
  color: #fff;
  box-shadow: 0 5px 0 var(--red-dark);
}

.button-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.07);
}

/* Hover — button rises, shadow grows to keep base in same spot */
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--red-dark);
  background: var(--red-dark);
}

.button-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Active — button presses down, shadow shrinks */
.button:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--red-dark);
}

.button-outline:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Text-only link button */
.button-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  background: none;
  border: none;
  color: var(--red);
  padding: 4px 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.button-text i,
.button-text svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}
.button-text:hover svg,
.button-text:hover i {
  transform: translateX(4px);
}

/* Legacy aliases */
.button-primary { background: var(--red); color: #fff; padding: 14px 28px; border-radius: var(--radius); }
.button-secondary { background: transparent; color: var(--text); border: 1px solid var(--border-strong); padding: 14px 28px; border-radius: var(--radius); }



/* ============================================================
   CARDS (§14) — one shared component
   ============================================================ */

.card,
.service-card,
.feature-card,
.review-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-soft);
}

.card:hover,
.service-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.review-card:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   ICONS (§15) — Lucide, outline, red, uniform
   ============================================================ */

[data-lucide] {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  stroke-width: 2;
}

/* ============================================================
   NAVBAR — Responsive and Modern
   ============================================================ */

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--gutter);
  gap: 16px;
  min-height: 96px;
}

.site-header .site-nav {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
}

.site-header .brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.site-header .booking-cta {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  min-width: 120px;
  padding: 14px 22px;
}

.brand-logo { height: 40px; width: auto; }

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-weight: 500;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav { 
  display: flex; 
  gap: 32px; 
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  transform: translateY(-2px);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}




.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.mobile-menu-icon {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.3s var(--ease);
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.mobile-menu-icon::before {
  top: -6px;
}

.mobile-menu-icon::after {
  top: 6px;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   HERO (§2) — minor polish, not a redesign
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-section) var(--gutter);
  text-align: center;
  overflow: hidden;
}

.home-hero {
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.82)),
    var(--home-hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero .hero-center {
  position: relative;
  z-index: 1;
}

.hero-center {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 16px;
}

.hero-section h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-section p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   TRUST BAR (§3)
   ============================================================ */

.trust-bar {
  padding-block: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 6vw, 64px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.trust-item [data-lucide] {
  width: 18px;
  height: 18px;
}

/* ============================================================
   SERVICES (§4) — redesigned cards
   ============================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--red);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  z-index: 1;
}

.service-card:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.service-card:hover .service-image img {
  transform: none;
}

.service-content {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.service-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 20px;
  flex: 1;
}

.service-content .button-text {
  margin-top: auto;
}

/* ============================================================
   RECOVERY JOURNEY (new — between Services and Why DRS Massage)
   ============================================================ */

.journey {
  background: var(--surface-featured);
  border-radius: var(--radius-lg);
  margin-inline: var(--gutter);
  padding-block: var(--space-section);
}

.journey .section-heading {
  margin-inline: auto;
  text-align: center;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: start;
  max-width: 980px;
  margin-inline: auto;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-inline: 16px;
}

.journey-step .journey-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--red);
}

.journey-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.journey-step p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  max-width: 240px;
}

.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
}

.journey-connector [data-lucide] {
  width: 20px;
  height: 20px;
  stroke: var(--text-faint);
}

/* ============================================================
   WHY DRS MASSAGE (§5) — feature cards
   ============================================================ */

.why .section-heading {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transform: translateY(0);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.08);
  transition:
    transform 0.12s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.12s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  will-change: transform, box-shadow;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.08);
}

.feature-card:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--surface-featured);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   STUDIO VS MOBILE (§6)
   ============================================================ */

.options .section-heading {
  margin-inline: auto;
  text-align: center;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.option-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
  box-shadow: var(--shadow-soft);
}

.option-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--red);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  z-index: 3;
}

.option-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

.option-card:hover::before {
  transform: translateY(0);
  opacity: 1;
}

.option-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.option-card:hover img {
  transform: none;
}

.option-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.62) 100%);
}

.option-content {
  position: relative;
  z-index: 2;
  padding: var(--card-padding);
  color: #fff;
}

.option-content .eyebrow {
  color: var(--red);
}

.option-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.option-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
  max-width: 320px;
}

.option-content .button-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(5, 5, 5, 0.36);
}

.option-content .button-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   GOOGLE REVIEWS (§7)
   ============================================================ */

.reviews .section-heading {
  margin-inline: auto;
  text-align: center;
}

.options,
.reviews {
  overflow-x: hidden;
}

.reviews-swiper {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.reviews-swiper:active {
  cursor: grabbing;
}

.reviews-swiper .swiper-wrapper {
  align-items: flex-start;
}

.review-card {
  height: auto;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars [data-lucide] {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: var(--red);
}

.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.review-author .name {
  font-weight: 600;
  font-size: 14px;
}

.review-author .date {
  font-size: 13px;
  color: var(--text-faint);
}

.reviews-swiper .swiper-pagination {
  position: static;
  margin-top: 24px;
  display: none;
}

.reviews-swiper .swiper-pagination-bullet {
  background: var(--text-faint);
  opacity: 1;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--red);
}

.faq-section {
  background: var(--surface-featured);
}

.faq-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.faq-section details {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-soft);
}

.faq-section details::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--red);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  z-index: 1;
}

.faq-section details:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.faq-section details:hover::after,
.faq-section details[open]::after {
  transform: translateY(0);
  opacity: 1;
}

.faq-section details + details {
  margin-top: 12px;
}

.faq-section summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 52px 18px 18px;
}

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

.faq-section summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--red);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.faq-section details[open] summary::after {
  content: '-';
  background: rgba(230, 52, 42, 0.12);
}

.faq-section details p {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding: 16px 18px 18px;
}

/* ============================================================
   TESTIMONIALS (§8) — client stories, distinct from Google reviews
   ============================================================ */

.testimonials .section-heading {
  margin-inline: auto;
  text-align: center;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-section-gap);
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: var(--card-padding);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.testimonial-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.testimonial-quote-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-featured);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.testimonial-item blockquote {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.testimonial-item cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-item cite .name {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   FOOTER (§12) — complete redesign
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: var(--space-section);
  padding-top: clamp(48px, 6vw, 72px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 12px;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 260px;
  margin: 0;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin: 0 0 16px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.footer-col nav a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-social a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-social [data-lucide] {
  width: 16px;
  height: 16px;
  stroke: var(--text);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 20px;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-faint);
}

.footer-bottom-inner a {
  color: var(--text-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   ABOUT — banner (circular portrait over seaside background)
   ============================================================ */

.about-banner {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-section) var(--gutter);
}

.about-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/31690621/pexels-photo-31690621.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.75) 55%, var(--bg) 100%);
}

.about-portrait {
  position: relative;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--red), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-content {
  position: relative;
  max-width: 640px;
}

.about-banner-content h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
}

.about-banner-content p {
  color: rgba(245, 245, 243, 0.85);
  font-size: 16px;
  margin: 0 0 12px;
}

/* ============================================================
   ABOUT — content grid + studio swiper
   ============================================================ */

.about-body {
  padding-top: var(--space-section);
}

.about-highlight-panel {
  width: 100%;
  margin: 0 0 32px;
  padding: var(--card-padding);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
}

.about-highlight-header {
  max-width: 100%;
}

.about-highlight-header h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  position: relative;
  padding-top: 10px;
}

.about-highlight-header h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  transform: translateY(-6px);
}

.about-highlight-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

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

@media (max-width: 720px) {
  .about-highlight-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.content-grid .card h2,
.about-body > .card h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.content-grid .card p,
.about-body > .card p,
.about-highlight-grid .card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 8px;
}

.content-grid .card ul,
.about-highlight-grid .card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-grid .card img,
.about-highlight-grid .card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 20px;
}

.about-body .content-grid .card,
.about-highlight-grid .card,
.services .service-card,
.why .feature-card {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.12);
}

.about-body .content-grid .card h2,
.about-highlight-grid .card h2 {
  margin-top: 0;
}

.studio-mobile-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: var(--card-padding);
  margin-top: 32px;
}

.studio-mobile-panel .studio-mobile-copy h2 {
  margin-top: 0;
  position: relative;
  padding-top: 10px;
}

.studio-mobile-panel .studio-mobile-copy h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  transform: translateY(-6px);
}

.studio-mobile-panel .studio-mobile-copy p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 12px;
}

.studio-mobile-panel .office-swiper-wrap {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  align-items: stretch;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: clamp(300px, 34vw, 390px) auto;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.contact-panel:hover {
  transform: translateY(-4px);
  border-color: var(--red-glow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-image {
  position: relative;
  overflow: hidden;
}

.contact-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 45%, rgba(5, 5, 5, 0.72) 100%);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 0.5s var(--ease);
}

.contact-panel:hover .contact-image img {
  transform: scale(1.05);
}

.contact-panel-content {
  padding: var(--card-padding);
}

.contact-panel-content h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.contact-panel-content p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.contact-panel .hero-actions {
  justify-content: flex-start;
}

.contact-social {
  margin-top: 24px;
}

.contact-grid form {
  display: grid;
  gap: 12px;
}

.contact-grid label {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.contact-grid input,
.contact-grid textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-featured);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  resize: vertical;
}

.contact-grid input::placeholder,
.contact-grid textarea::placeholder {
  color: var(--text-faint);
}

.contact-grid input:focus,
.contact-grid textarea:focus {
  border-color: var(--red);
  outline: none;
}

.office-swiper-wrap {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.office-swiper .swiper-slide {
  min-height: 420px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-swiper img,
.office-swiper video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.office-swiper .swiper-button-next,
.office-swiper .swiper-button-prev {
  color: #fff;
}

.office-swiper .swiper-button-next::after,
.office-swiper .swiper-button-prev::after {
  font-size: 18px;
}

.office-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.office-swiper .swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
}

/* ============================================================
   SERVICES PAGE — single-column hero + pricing grid
   ============================================================ */

.hero-section.single-column {
  min-height: auto;
  align-items: flex-start;
  text-align: left;
  padding: 140px var(--gutter) 48px;
}

.hero-section.single-column .hero-animate {
  max-width: 640px;
  margin: 0;
}

.hero-section.single-column .eyebrow {
  text-align: left;
}

.hero-section.single-column p {
  margin-left: 0;
  margin-right: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin-inline: auto;
}

.pricing-visual-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto var(--space-section-gap);
  padding-block: 0;
  padding-inline: var(--gutter);
}

.pricing-visual-strip img {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pricing-visual-strip img:first-child {
  object-position: center 42%;
}

.pricing-grid .card h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-item:not(:first-of-type) {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.price-item strong {
  font-size: 16px;
  font-weight: 700;
}

.price-item span {
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
}

.pricing-grid .card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 8px 0 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px var(--gutter);
    position: relative;
    min-height: 72px;
  }
  .site-header .brand {
    position: static !important;
    transform: none !important;
    margin-inline: 0;
  }
  .site-header .booking-cta {
    position: absolute !important;
    top: 50%;
    right: calc(var(--gutter) + 56px);
    transform: translateY(-50%) !important;
    min-width: 96px;
    padding: 10px 14px;
    font-size: 14px;
  }
  /* Hamburger must be above the nav dropdown */
  .site-header .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: var(--gutter);
    transform: translateY(-50%);
    z-index: 200;
  }

  /* NAV DROPDOWN — visibility-based so all links are always in DOM and accessible */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    z-index: 100;
    /* closed state */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
    /* override the desktop display:flex — keep flex but control via visibility */
    display: flex !important;
  }
  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0s;
  }

  /* Link styles inside mobile dropdown */
  .site-nav a {
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    font-size: 16px;
    /* reset desktop transforms */
    transform: none !important;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  }
  .site-nav a::after {
    /* no underline bar inside mobile dropdown */
    display: none;
  }
  .site-nav a.active {
    color: #fff;
    border-left: 3px solid var(--red);
    padding-left: 21px;
    background: rgba(255, 0, 0, 0.06);
  }
  .site-nav a:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    padding-left: 30px;
  }
  .site-nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 14px var(--gutter);
    position: relative !important;
    min-height: 64px;
  }
  .site-header .brand {
    position: static !important;
    transform: none !important;
    order: 1;
    margin: 0;
    flex: 1;
  }
  .site-header .booking-cta {
    position: static !important;
    transform: none !important;
    order: 2;
    width: auto;
    min-width: unset;
    padding: 9px 12px;
    font-size: 13px;
    right: unset;
  }
  .site-header .mobile-menu-toggle {
    position: static !important;
    transform: none !important;
    order: 3;
    margin-left: 0;
    z-index: 200;
  }
  .hero-section { min-height: auto; padding-top: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-connector { transform: rotate(90deg); padding-block: 4px; }
  .journey { margin-inline: 0; border-radius: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .option-card { aspect-ratio: 3 / 2; }
  .reviews-swiper .swiper-pagination { display: flex; justify-content: center; gap: 6px; }
  .testimonial-item,
  .testimonial-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
    gap: 16px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .content-grid { grid-template-columns: 1fr; }
  .pricing-visual-strip {
    grid-template-columns: 1fr;
  }
  .pricing-visual-strip img {
    height: 260px;
  }
  .about-banner { min-height: auto; padding-top: 100px; }
  .office-swiper img { height: 260px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-section.single-column { padding-top: 110px; }
}

/* ── Card subtitle & surcharge block ─────────────────────── */
.card-subtitle {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: -8px 0 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card-surcharge-block {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 0, 0, 0.06);
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 46, 64, 0.12);
  border: 1px solid rgba(255, 46, 64, 0.24);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.card-badge.badge-red {
  background: rgba(255, 46, 64, 0.14);
  border-color: rgba(255, 46, 64, 0.28);
}
.surcharge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.surcharge-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.surcharge-text strong {
  color: var(--red);
}

@media (max-width: 480px) {
  .card-surcharge-block {
    padding: 14px 14px;
  }
  .surcharge-title {
    font-size: 0.82rem;
  }
  .surcharge-text {
    font-size: 0.78rem;
  }
}
