/**
 * Eternal Tan — Design System
 * ===========================
 * Single source of truth for matching pages.
 *
 * Usage:
 *   <link rel="preconnect" href="https://fonts.googleapis.com" />
 *   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
 *   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Dancing+Script:wght@400;500&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet" />
 *   <link rel="stylesheet" href="eternal-tan.css" />
 *
 * Override hero image on a page:
 *   :root { --et-hero-image: url("/path/to/image.jpg"); }
 */

/* -------------------------------------------------------------------------- */
/* 1. Fonts                                                                   */
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* 2. Design tokens                                                           */
/* -------------------------------------------------------------------------- */

:root {
  /* Brand colors */
  --et-pink: #ff2d8b;
  --et-pink-rgb: 255, 45, 139;
  --et-teal: #00c9c8;
  --et-teal-rgb: 0, 201, 200;
  --et-magenta: #ee10b0;

  /* Surfaces / night palette */
  --et-navy-deep: #0a0e2a;
  --et-navy: #0d1235;
  --et-navy-mid: #0d1b3e;
  --et-purple-deep: #130d2e;
  --et-navy-soft: #0a1230;
  --et-overlay: rgba(10, 15, 50, 0.45);

  /* Text */
  --et-text: #ffffff;
  --et-text-strong: rgba(255, 255, 255, 0.88);
  --et-text-body: rgba(255, 255, 255, 0.75);
  --et-text-muted: rgba(255, 255, 255, 0.6);
  --et-text-faint: rgba(255, 255, 255, 0.5);

  /* Borders */
  --et-border-subtle: rgba(255, 255, 255, 0.08);
  --et-border-soft: rgba(255, 255, 255, 0.12);
  --et-border-mid: rgba(255, 255, 255, 0.3);
  --et-border-strong: rgba(255, 255, 255, 0.65);
  --et-border-pink: rgba(255, 45, 139, 0.3);
  --et-border-teal: rgba(0, 201, 200, 0.3);

  /* Gradients */
  --et-grad-about: linear-gradient(135deg, var(--et-navy-deep) 0%, var(--et-purple-deep) 100%);
  --et-grad-services: linear-gradient(145deg, var(--et-navy) 0%, var(--et-navy-deep) 50%, var(--et-purple-deep) 100%);
  --et-grad-cta: linear-gradient(135deg, var(--et-pink) 0%, var(--et-teal) 100%);
  --et-grad-hero-overlay: linear-gradient(
    to bottom,
    rgba(10, 15, 50, 0.45) 0%,
    rgba(10, 15, 50, 0.25) 40%,
    rgba(10, 15, 50, 0.55) 100%
  );
  --et-grad-rule-pink: linear-gradient(90deg, transparent 0%, var(--et-pink) 50%, transparent 100%);
  --et-grad-rule-teal: linear-gradient(90deg, transparent 0%, var(--et-teal) 50%, transparent 100%);
  --et-grad-rule-white: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);

  /* Typography */
  --et-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --et-font-hero: Georgia, "Times New Roman", serif;
  --et-font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --et-font-script: "Dancing Script", cursive;
  --et-font-ui: "Helvetica Neue", Arial, sans-serif;

  --et-fs-hero: clamp(2.2rem, 5vw, 3.5rem);
  --et-fs-display: clamp(2.2rem, 4vw, 3.2rem);
  --et-fs-section: clamp(1.6rem, 2.8vw, 2.2rem);
  --et-fs-brand-script: clamp(1.8rem, 3vw, 2.4rem);
  --et-fs-h3: 1.6rem;
  --et-fs-h4: 1.4rem;
  --et-fs-h5: 1.2rem;
  --et-fs-body: 1rem;
  --et-fs-body-lg: 1.1rem;
  --et-fs-subhead: 1.2rem;
  --et-fs-small: 0.875rem;
  --et-fs-label: 0.8rem;
  --et-fs-btn: 0.78rem;
  --et-fs-note: 0.75rem;
  --et-fs-stat: 2.4rem;
  --et-fs-nav-logo: 2rem;

  --et-lh-tight: 1.15;
  --et-lh-snug: 1.18;
  --et-lh-heading: 1.2;
  --et-lh-body: 1.65;
  --et-ls-display: -0.01em;
  --et-ls-btn: 0.1em;
  --et-ls-label: 0.12em;
  --et-ls-nav: 0.08em;

  /* Spacing */
  --et-space-1: 8px;
  --et-space-2: 12px;
  --et-space-3: 16px;
  --et-space-4: 20px;
  --et-space-5: 24px;
  --et-space-6: 32px;
  --et-space-7: 40px;
  --et-space-8: 48px;
  --et-space-9: 56px;
  --et-space-10: 64px;
  --et-space-11: 80px;

  --et-section-pad-y: 80px;
  --et-section-pad-x: 40px;
  --et-section-pad-y-sm: 60px;
  --et-section-pad-x-sm: 20px;

  /* Layout */
  --et-max: 1320px;
  --et-max-narrow: 1200px;
  --et-max-content: 900px;
  --et-max-prose: 800px;
  --et-max-intro: 620px;
  --et-max-nav: 1280px;

  /* Radii */
  --et-radius-sm: 12px;
  --et-radius-md: 16px;
  --et-radius-lg: 20px;
  --et-radius-pill: 999px;

  /* Shadows / glow */
  --et-glow-pink: 0 0 20px rgba(var(--et-pink-rgb), 0.4);
  --et-glow-pink-strong: 0 0 25px rgba(var(--et-pink-rgb), 0.5), 0 6px 20px rgba(var(--et-pink-rgb), 0.3);
  --et-glow-teal: 0 0 15px rgba(var(--et-teal-rgb), 0.4);
  --et-glow-teal-strong: 0 0 20px rgba(var(--et-teal-rgb), 0.4), 0 4px 15px rgba(var(--et-teal-rgb), 0.25);
  --et-shadow-image: 0 0 30px rgba(var(--et-pink-rgb), 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
  --et-shadow-panel: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --et-shadow-text: 0 2px 24px rgba(0, 0, 0, 0.45);

  /* Motion */
  --et-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --et-duration: 0.3s;
  --et-duration-fast: 0.2s;

  /* Breakpoints (reference only — use in media queries as px) */
  /* sm: 480 | md: 768 | lg: 900 */

  /* Assets — override per page if needed */
  --et-hero-image: url("../input/hero_reference.jpg");
}

/* -------------------------------------------------------------------------- */
/* 3. Base                                                                    */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  overscroll-behavior: none;
  font-family: var(--et-font-body);
  color: var(--et-text);
  background: var(--et-navy-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
}

/* -------------------------------------------------------------------------- */
/* 4. Page shell & layout primitives                                          */
/* -------------------------------------------------------------------------- */

.et-page,
.site-preview-root {
  display: block;
  min-height: auto;
  background: #fff;
  color: var(--et-text);
}

.et-container,
.about-container,
.services-container,
.gallery-container {
  width: 100%;
  max-width: var(--et-max);
  margin: 0 auto;
}

.et-container--narrow {
  max-width: var(--et-max-narrow);
}

.et-container--prose {
  max-width: var(--et-max-prose);
}

.et-section {
  width: 100%;
  padding: var(--et-section-pad-y) var(--et-section-pad-x);
  position: relative;
}

.et-section--about {
  background: var(--et-grad-about);
  overflow: hidden;
}

.et-section--services {
  background: var(--et-grad-services);
  overflow: hidden;
}

.et-section--gallery {
  background: var(--et-navy-deep);
}

.et-section--cta {
  background: var(--et-grad-cta);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.et-section--footer {
  background: var(--et-navy);
  padding: 64px var(--et-section-pad-x) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.et-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

.et-rule--pink {
  height: 2px;
  background: var(--et-grad-rule-pink);
  box-shadow: 0 0 20px rgba(var(--et-pink-rgb), 0.6);
}

.et-rule--teal {
  background: var(--et-grad-rule-teal);
  box-shadow: var(--et-glow-teal);
}

.et-rule--white-center {
  left: 50%;
  right: auto;
  width: 200px;
  transform: translateX(-50%);
  background: var(--et-grad-rule-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color-scheme: normal !important;
}

.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}

/* -------------------------------------------------------------------------- */
/* 5. Typography primitives                                                   */
/* -------------------------------------------------------------------------- */

.et-heading,
.et-heading--display,
.about-heading,
.cta-title {
  font-family: var(--et-font-display);
  font-size: var(--et-fs-display);
  font-weight: 700;
  color: var(--et-text);
  line-height: var(--et-lh-tight);
  letter-spacing: var(--et-ls-display);
}

.et-heading--section,
.services-title,
.gallery-title {
  font-family: var(--et-font-display);
  font-size: var(--et-fs-section);
  font-weight: 700;
  color: var(--et-text);
  line-height: var(--et-lh-tight);
  letter-spacing: var(--et-ls-display);
}

.et-heading--hero,
.wf-hero__headline {
  font-family: var(--et-font-hero);
  font-size: var(--et-fs-hero);
  font-weight: 700;
  color: var(--et-text);
  line-height: var(--et-lh-snug);
  letter-spacing: var(--et-ls-display);
  text-shadow: var(--et-shadow-text);
}

.et-heading--script,
.footer-brand {
  font-family: var(--et-font-script);
  font-size: var(--et-fs-brand-script);
  font-weight: 400;
  color: var(--et-pink);
  text-shadow: var(--et-glow-pink);
}

.et-subhead,
.about-subhead {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-subhead);
  font-weight: 300;
  color: var(--et-text-body);
  line-height: var(--et-lh-body);
}

.et-text,
.et-body,
.about-text p,
.services-intro,
.gallery-intro,
.service-band p,
.brand-story {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-body);
  font-weight: 400;
  color: var(--et-text-body);
  line-height: var(--et-lh-body);
}

.et-text--strong {
  color: var(--et-text-strong);
}

.et-text--muted {
  color: var(--et-text-muted);
}

.et-label,
.stat-label,
.detail-label {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-label);
  font-weight: 600;
  color: var(--et-text-faint);
  text-transform: uppercase;
  letter-spacing: var(--et-ls-nav);
}

.et-caption,
.item-caption {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-small);
  font-weight: 500;
  color: var(--et-text-body);
  line-height: 1.4;
  text-align: center;
}

.et-header {
  text-align: center;
  margin-bottom: var(--et-space-10);
}

.et-header .et-heading--section,
.et-header .services-title,
.et-header .gallery-title {
  margin-bottom: var(--et-space-4);
}

.et-intro,
.services-intro,
.gallery-intro {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------- */
/* 6. Buttons & CTAs                                                          */
/* -------------------------------------------------------------------------- */

.et-btn,
.wf-hero__btn,
.wf-hero__nav-cta,
.main-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--et-font-body);
  font-size: var(--et-fs-btn);
  font-weight: 600;
  letter-spacing: var(--et-ls-btn);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--et-radius-pill);
  transition: background var(--et-duration-fast), border-color var(--et-duration-fast),
    transform 0.15s, box-shadow var(--et-duration);
  cursor: pointer;
}

.et-btn--ghost,
.wf-hero__btn--primary,
.wf-hero__btn--secondary {
  background: rgba(30, 25, 35, 0.55);
  color: var(--et-text);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  padding: 15px 30px;
}

.et-btn--ghost:hover,
.wf-hero__btn--primary:hover,
.wf-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.wf-hero__btn--secondary {
  background: rgba(30, 25, 35, 0.45);
  border-color: rgba(255, 255, 255, 0.55);
}

.et-btn--nav,
.wf-hero__nav-cta {
  color: var(--et-text);
  border: 1.5px solid var(--et-border-strong);
  padding: 9px 22px;
  background: transparent;
  text-transform: none;
  letter-spacing: var(--et-ls-btn);
}

.et-btn--nav:hover,
.wf-hero__nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.et-btn--pink,
.main-cta {
  background: rgba(var(--et-pink-rgb), 0.25);
  border: 2px solid rgba(var(--et-pink-rgb), 0.9);
  color: var(--et-text);
  padding: 16px 36px;
  letter-spacing: var(--et-ls-label);
  backdrop-filter: blur(8px);
  box-shadow: var(--et-glow-pink-strong);
}

.et-btn--pink:hover,
.main-cta:hover {
  background: rgba(var(--et-pink-rgb), 0.4);
  box-shadow: 0 0 35px rgba(var(--et-pink-rgb), 0.8), 0 8px 25px rgba(var(--et-pink-rgb), 0.5);
  transform: translateY(-2px);
}

.et-btn--teal,
.secondary-cta {
  background: rgba(var(--et-teal-rgb), 0.15);
  border: 2px solid rgba(var(--et-teal-rgb), 0.8);
  color: var(--et-text);
  padding: 16px 36px;
  letter-spacing: var(--et-ls-label);
  backdrop-filter: blur(8px);
  box-shadow: var(--et-glow-teal-strong);
}

.et-btn--teal:hover,
.secondary-cta:hover {
  background: rgba(var(--et-teal-rgb), 0.3);
  box-shadow: 0 0 30px rgba(var(--et-teal-rgb), 0.7), 0 6px 20px rgba(var(--et-teal-rgb), 0.4);
  transform: translateY(-2px);
}

.et-btn-group,
.wf-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

/* -------------------------------------------------------------------------- */
/* 7. Nav (standalone / hero)                                                 */
/* -------------------------------------------------------------------------- */

.et-nav,
.wf-hero__nav {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--et-max-nav);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10, 18, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--et-radius-sm);
  border: 1px solid var(--et-border-subtle);
}

.et-nav-logo,
.wf-hero__nav-logo {
  font-family: var(--et-font-hero);
  font-style: italic;
  font-size: var(--et-fs-nav-logo);
  font-weight: 400;
  color: var(--et-text);
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 100, 220, 0.4);
  text-decoration: none;
}

.et-nav-links,
.wf-hero__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 36px;
}

.et-nav-link,
.wf-hero__nav-link {
  text-decoration: none;
  color: var(--et-text-strong);
  font-family: var(--et-font-ui);
  font-size: var(--et-fs-btn);
  font-weight: 500;
  letter-spacing: var(--et-ls-nav);
  text-transform: uppercase;
  transition: color var(--et-duration-fast);
}

.et-nav-link:hover,
.wf-hero__nav-link:hover {
  color: #ffffff;
}

.et-nav-link--active,
.wf-hero__nav-link--active {
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 2px;
}

/* Hamburger toggle — hidden on desktop */
.wf-hero__menu-toggle {
  display: none;
  position: relative;
  z-index: 100002;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--et-text);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.wf-hero__menu-toggle-box {
  display: block;
  position: relative;
  width: 22px;
  height: 16px;
  margin: 0 auto;
}

.wf-hero__menu-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wf-hero__menu-bar:nth-child(1) { top: 0; }
.wf-hero__menu-bar:nth-child(2) { top: 7px; }
.wf-hero__menu-bar:nth-child(3) { top: 14px; }

body.et-menu-open .wf-hero__menu-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

body.et-menu-open .wf-hero__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.et-menu-open .wf-hero__menu-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Fixed fullscreen mobile menu — always above page content */
.et-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
  visibility: hidden;
}

.et-mobile-menu[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.et-mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.et-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 24, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.et-mobile-menu.is-open .et-mobile-menu__backdrop {
  opacity: 1;
}

.et-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 360px);
  padding: 96px 36px 48px;
  background:
    linear-gradient(165deg, rgba(13, 18, 53, 0.98) 0%, rgba(19, 13, 46, 0.98) 55%, rgba(10, 14, 42, 0.99) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
  transform: translate3d(104%, 0, 0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.et-mobile-menu.is-open .et-mobile-menu__panel {
  transform: translate3d(0, 0, 0);
}

.et-mobile-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.et-mobile-menu__links > li {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.et-mobile-menu.is-open .et-mobile-menu__links > li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(0.12s + var(--et-i, 0) * 0.06s);
}

.et-mobile-menu__link {
  display: block;
  padding: 14px 4px;
  font-family: var(--et-font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--et-text-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--et-duration-fast), padding-left var(--et-duration-fast);
}

.et-mobile-menu__link:hover,
.et-mobile-menu__link:focus-visible {
  color: #ffffff;
  padding-left: 8px;
  outline: none;
}

.et-mobile-menu__link--active {
  color: #ffffff;
  box-shadow: inset 3px 0 0 var(--et-pink);
  padding-left: 12px;
}

.et-mobile-menu__cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  border: 1.5px solid var(--et-border-strong);
  border-radius: var(--et-radius-pill);
  border-bottom: 1.5px solid var(--et-border-strong);
  letter-spacing: 0.12em;
  font-weight: 600;
  box-shadow: none;
}

.et-mobile-menu__cta:hover,
.et-mobile-menu__cta:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  padding-left: 22px;
}

html.et-menu-open,
body.et-menu-open {
  overflow: hidden;
}

/* Keep hamburger above the fullscreen menu while open */
body.et-menu-open .wf-hero__menu-toggle {
  background: rgba(10, 18, 48, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .wf-hero__menu-bar,
  .et-mobile-menu__backdrop,
  .et-mobile-menu__panel,
  .et-mobile-menu__links > li,
  .et-mobile-menu__link {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

@media (max-width: 869px) {
  .et-nav-links,
  .wf-hero__nav-links {
    display: none;
  }

  .wf-hero__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(18px, env(safe-area-inset-top, 0px));
    right: max(18px, env(safe-area-inset-right, 0px));
    z-index: 100002;
    width: 48px;
    height: 48px;
    margin-top: 8px;
    border-radius: 50%;
    background: rgba(10, 18, 48, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  }

  .et-nav,
  .wf-hero__nav {
    padding: 14px 18px;
    padding-right: 64px;
    margin-left: 12px;
    margin-right: 12px;
    width: calc(100% - 24px);
  }
}

/* -------------------------------------------------------------------------- */
/* 8. Hero                                                                    */
/* -------------------------------------------------------------------------- */

.wf-hero {
  font-family: var(--et-font-ui);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: var(--et-navy-mid);
  overflow: hidden;
}

.wf-hero__body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--et-hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--et-grad-hero-overlay);
}

.wf-hero__nav,
.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

.wf-hero__content {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 80px 24px 60px;
  max-width: var(--et-max-content);
  margin: 60px auto 120px;
}

.wf-hero__headline {
  margin: 0 0 24px;
}

.wf-hero__subheadline {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: var(--et-text-strong);
  line-height: var(--et-lh-body);
  margin: 0 0 42px;
  max-width: var(--et-max-intro);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.wf-hero__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .wf-hero__content {
    margin-top: 20px;
    padding: 40px 20px;
  }
}

/* -------------------------------------------------------------------------- */
/* 9. About                                                                   */
/* -------------------------------------------------------------------------- */

.about-section-v1 {
  background: var(--et-grad-about);
  padding: var(--et-section-pad-y) var(--et-section-pad-x);
  position: relative;
  overflow: hidden;
}

.about-section-v1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--et-grad-rule-pink);
  box-shadow: 0 0 20px rgba(var(--et-pink-rgb), 0.6);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--et-space-10);
  align-items: center;
}

.about-heading {
  margin-bottom: var(--et-space-3);
}

.about-subhead {
  margin-bottom: var(--et-space-6);
}

.about-text p {
  margin-bottom: var(--et-space-5);
}

.about-stats {
  display: flex;
  gap: var(--et-space-8);
  margin-top: var(--et-space-7);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--et-font-display);
  font-size: var(--et-fs-stat);
  font-weight: 700;
  color: var(--et-pink);
  text-shadow: var(--et-glow-pink);
  line-height: 1;
  margin-bottom: var(--et-space-1);
}

.stat-label {
  font-size: var(--et-fs-small);
  font-weight: 400;
  letter-spacing: var(--et-ls-label);
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--et-radius-md);
  border: 1px solid var(--et-border-pink);
  box-shadow: var(--et-shadow-image);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--et-space-7);
  }

  .about-stats {
    gap: var(--et-space-5);
    justify-content: center;
  }

  .about-section-v1,
  .et-section {
    padding: var(--et-section-pad-y-sm) var(--et-section-pad-x-sm);
  }
}

/* -------------------------------------------------------------------------- */
/* 10. Services                                                               */
/* -------------------------------------------------------------------------- */

.services-section-v1 {
  background: var(--et-grad-services);
  padding: var(--et-section-pad-y) var(--et-section-pad-x);
  position: relative;
  overflow: hidden;
}

.services-section-v1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--et-grad-rule-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.services-header,
.gallery-header {
  text-align: center;
  margin-bottom: var(--et-space-10);
}

.services-title,
.gallery-title {
  margin-bottom: var(--et-space-4);
}

.services-bands {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-band {
  padding: var(--et-space-7) 0;
  position: relative;
}

.service-band.primary {
  background: rgba(var(--et-pink-rgb), 0.08);
  border-left: 3px solid var(--et-pink);
}

.service-band.secondary {
  background: rgba(var(--et-teal-rgb), 0.08);
  border-left: 3px solid var(--et-teal);
}

.service-band.accent {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--et-border-mid);
}

.band-content {
  max-width: var(--et-max-prose);
  margin: 0 auto;
  padding: 0 var(--et-space-8);
}

.service-band h3 {
  font-family: var(--et-font-display);
  font-size: var(--et-fs-h3);
  font-weight: 600;
  color: var(--et-text);
  margin-bottom: var(--et-space-3);
  line-height: var(--et-lh-heading);
}

@media (max-width: 768px) {
  .services-section-v1 {
    padding: var(--et-section-pad-y-sm) var(--et-section-pad-x-sm);
  }

  .band-content {
    padding: 0 var(--et-space-5);
  }

  .service-band {
    padding: var(--et-space-6) 0;
  }
}

/* -------------------------------------------------------------------------- */
/* 11. Gallery                                                                */
/* -------------------------------------------------------------------------- */

.gallery-section-v1 {
  background: var(--et-navy-deep);
  padding: var(--et-section-pad-y) var(--et-section-pad-x);
  position: relative;
}

.gallery-section-v1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--et-grad-rule-teal);
  box-shadow: var(--et-glow-teal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  align-items: start;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: var(--et-space-2);
  min-width: 0;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--et-border-teal);
  border-radius: var(--et-radius-sm);
  transition: box-shadow var(--et-duration), border-color var(--et-duration);
}

.gallery-item:hover img {
  border-color: rgba(var(--et-teal-rgb), 0.65);
  box-shadow: 0 0 25px rgba(var(--et-teal-rgb), 0.35), 0 8px 30px rgba(0, 0, 0, 0.45);
}

.item-caption {
  padding: 0 4px;
}

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

@media (max-width: 768px) {
  .gallery-section-v1 {
    padding: var(--et-section-pad-y-sm) var(--et-section-pad-x-sm);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* -------------------------------------------------------------------------- */
/* 12. CTA                                                                    */
/* -------------------------------------------------------------------------- */

.cta-section-v2 {
  background: var(--et-grad-cta);
  padding: var(--et-section-pad-y) var(--et-section-pad-x);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.cta-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 42, 0.55);
  backdrop-filter: blur(2px);
}

.cta-section-v2::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--et-grad-cta);
  box-shadow: 0 0 30px rgba(var(--et-pink-rgb), 0.7), 0 0 80px rgba(238, 16, 176, 0.35);
}

.cta-container {
  max-width: var(--et-max-prose);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--et-border-soft);
  border-radius: var(--et-radius-lg);
  padding: var(--et-space-9) var(--et-space-8);
  backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: var(--et-shadow-panel);
}

.cta-title {
  margin-bottom: var(--et-space-5);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.cta-subtitle {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-body-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--et-lh-body);
  margin: 0 auto var(--et-space-8);
  max-width: 600px;
}

.panel-actions {
  display: flex;
  gap: var(--et-space-6);
  justify-content: center;
  margin-bottom: var(--et-space-8);
}

.action-primary,
.action-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--et-space-1);
}

.action-note {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-note);
  color: var(--et-text-muted);
  font-weight: 400;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--et-space-5);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--et-space-2);
  justify-content: center;
}

.trust-icon {
  font-size: 1.2rem;
  filter: grayscale(1) brightness(1.5);
}

.trust-text {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-small);
  color: var(--et-text-body);
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta-section-v2 {
    padding: var(--et-section-pad-y-sm) var(--et-section-pad-x-sm);
  }

  .cta-panel {
    padding: var(--et-space-7) var(--et-space-6);
  }

  .panel-actions {
    flex-direction: column;
    gap: var(--et-space-5);
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: var(--et-space-3);
  }
}

/* -------------------------------------------------------------------------- */
/* 13. Footer                                                                 */
/* -------------------------------------------------------------------------- */

.footer-section-v3 {
  background: var(--et-navy);
  padding: 64px var(--et-section-pad-x) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: var(--et-max-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--et-space-10);
}

.footer-primary {
  display: flex;
  flex-direction: column;
  gap: var(--et-space-7);
}

.footer-brand {
  margin-bottom: var(--et-space-4);
}

.section-title {
  font-family: var(--et-font-display);
  font-size: var(--et-fs-h4);
  font-weight: 600;
  color: var(--et-text);
  margin-bottom: var(--et-space-5);
  line-height: var(--et-lh-heading);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--et-space-1);
}

.detail-value {
  font-family: var(--et-font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--et-duration);
  line-height: 1.3;
}

.detail-value:hover,
a.detail-value:hover {
  color: var(--et-teal);
  text-shadow: 0 0 10px rgba(var(--et-teal-rgb), 0.3);
}

.footer-secondary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.links-section {
  display: flex;
  gap: var(--et-space-7);
}

.link-column {
  flex: 1;
}

.column-heading {
  font-family: var(--et-font-display);
  font-size: var(--et-fs-h5);
  font-weight: 600;
  color: var(--et-text);
  margin-bottom: var(--et-space-4);
  line-height: var(--et-lh-heading);
}

.footer-link {
  display: block;
  font-family: var(--et-font-body);
  font-size: 0.9rem;
  color: var(--et-text-muted);
  text-decoration: none;
  margin-bottom: var(--et-space-2);
  transition: color var(--et-duration);
  line-height: 1.4;
}

.footer-link:hover {
  color: var(--et-pink);
  text-shadow: 0 0 10px rgba(var(--et-pink-rgb), 0.3);
}

.footer-link:last-child {
  margin-bottom: 0;
}

.footer-final {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--et-space-5);
  margin-top: var(--et-space-7);
}

.footer-rights {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-label);
  color: var(--et-text-faint);
  margin-bottom: var(--et-space-1);
}

.footer-motto {
  font-family: var(--et-font-script);
  font-size: 1.1rem;
  color: rgba(var(--et-teal-rgb), 0.8);
  margin: 0;
  text-shadow: 0 0 15px rgba(var(--et-teal-rgb), 0.2);
}

@media (max-width: 768px) {
  .footer-section-v3,
  .et-section--footer {
    padding: 48px var(--et-section-pad-x-sm) 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--et-space-7);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--et-space-4);
  }

  .links-section {
    gap: var(--et-space-6);
  }
}

/* -------------------------------------------------------------------------- */
/* 14. Form primitives (for matching contact / booking pages)                 */
/* -------------------------------------------------------------------------- */

.et-form {
  display: flex;
  flex-direction: column;
  gap: var(--et-space-5);
  max-width: 560px;
}

.et-field {
  display: flex;
  flex-direction: column;
  gap: var(--et-space-1);
}

.et-field label {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-label);
  font-weight: 600;
  letter-spacing: var(--et-ls-nav);
  text-transform: uppercase;
  color: var(--et-text-faint);
}

.et-input,
.et-textarea,
.et-select {
  font-family: var(--et-font-body);
  font-size: var(--et-fs-body);
  color: var(--et-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--et-border-soft);
  border-radius: var(--et-radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--et-duration-fast), box-shadow var(--et-duration-fast);
}

.et-input:focus,
.et-textarea:focus,
.et-select:focus {
  border-color: rgba(var(--et-teal-rgb), 0.7);
  box-shadow: 0 0 0 3px rgba(var(--et-teal-rgb), 0.15);
}

.et-textarea {
  min-height: 140px;
  resize: vertical;
}

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

/* -------------------------------------------------------------------------- */
/* 15. Preview shell / scroll animations                                      */
/* -------------------------------------------------------------------------- */

.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

@keyframes wf-section-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s var(--et-ease) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }

  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }

  .et-btn,
  .wf-hero__btn,
  .main-cta,
  .secondary-cta {
    white-space: normal;
    text-align: center;
  }
}
