@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Merriweather:ital@1&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --forest:  #1a3a2a;
  --dark:    #0f1f16;
  --teal:    #2d7a6b;
  --teal-light: #3d9a8a;
  --teal-dark:  #1e5a4e;
  --sand:    #f5f0e8;
  --cream:   #faf8f4;
  --white:   #ffffff;
  --text-dark:  #0f1f16;
  --text-mid:   #3a5a48;
  --text-light: #6b8a78;
  --border:  rgba(45,122,107,0.18);
  --shadow-sm:  0 2px 12px rgba(15,31,22,0.10);
  --shadow-md:  0 8px 32px rgba(15,31,22,0.16);
  --shadow-lg:  0 20px 60px rgba(15,31,22,0.22);
  --radius:  12px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 76px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

/* ============================================================
   PASSWORD GATE OVERLAY
   ============================================================ */
.gate-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--forest) 60%, #1e4d35 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.gate-overlay.hidden { display: none; }

.gate-box {
  background: rgba(250,248,244,0.06);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.gate-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(45,122,107,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,122,107,0.25);
  border: 1px solid rgba(45,122,107,0.4);
  color: var(--teal-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.gate-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.gate-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--sand);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 4px;
}

.gate-logo span { color: var(--teal-light); }

.gate-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 36px;
}

.gate-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,240,232,0.7);
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gate-input {
  width: 100%;
  background: rgba(245,240,232,0.08);
  border: 1.5px solid rgba(245,240,232,0.18);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--sand);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  margin-bottom: 16px;
  outline: none;
  letter-spacing: 0.08em;
}

.gate-input::placeholder { color: rgba(245,240,232,0.3); }
.gate-input:focus { border-color: var(--teal-light); }

.gate-btn {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 15px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.gate-btn:hover { background: var(--teal-light); transform: translateY(-2px); }

.gate-error {
  color: #ff7070;
  font-size: 0.82rem;
  margin-top: 12px;
  min-height: 20px;
}

.gate-footer {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  margin-top: 28px;
  letter-spacing: 0.08em;
}

/* Gate wave decoration */
.gate-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.12;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(250,248,244,0.98);
  box-shadow: var(--shadow-sm);
}

.nav.dark-nav {
  background: rgba(15,31,22,0.92);
  border-bottom-color: rgba(45,122,107,0.2);
}

.nav.dark-nav .nav-link { color: var(--sand); }
.nav.dark-nav .nav-link:hover { color: var(--teal-light); }
.nav.dark-nav .nav-logo { color: var(--sand); }
.nav.dark-nav .nav-tagline { color: rgba(245,240,232,0.5); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--forest);
  letter-spacing: 0.1em;
  line-height: 1;
  transition: color var(--transition);
}
.nav-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 1px;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--teal); }
.nav-link.active { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}

.nav-cta:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,122,107,0.35);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.dark-nav .hamburger span { background: var(--sand); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--teal); }

.mobile-cta {
  display: block;
  margin-top: 20px;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark) 0%, var(--forest) 55%, #163321 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Textured noise overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(45,122,107,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards 0.3s;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--teal-light);
}

.hero-heading {
  font-size: clamp(5rem, 11vw, 10rem);
  color: var(--sand);
  line-height: 0.9;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s ease forwards 0.45s;
}

.hero-heading span { color: var(--teal-light); display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(245,240,232,0.75);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards 0.6s;
}

.hero-tagline {
  font-style: italic;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: var(--teal-light);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards 0.72s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards 0.85s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  border: 2px solid var(--teal);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45,122,107,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--sand);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  border: 2px solid rgba(245,240,232,0.35);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--sand);
  background: rgba(245,240,232,0.08);
  transform: translateY(-3px);
}

/* Review badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 100px;
  padding: 10px 20px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards 1s;
}

.hero-stars {
  color: #f4c430;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.hero-badge-text {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.7);
  font-weight: 400;
  line-height: 1.3;
}

.hero-badge-text strong {
  display: block;
  color: var(--sand);
  font-weight: 600;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-in 1s ease forwards 0.6s;
}

.hero-scissors-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.hero-circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(45,122,107,0.1);
  border: 1.5px solid rgba(45,122,107,0.25);
  animation: slow-spin 30s linear infinite;
}

.hero-circle-bg-2 {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(45,122,107,0.2);
  animation: slow-spin 20s linear infinite reverse;
}

.scissors-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scissors-svg:hover { transform: translate(-50%, -50%) rotate(25deg) scale(1.1); }

/* Stats row */
.hero-stats {
  position: absolute;
  top: 0;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-pill {
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-top: 2px;
}

/* ============================================================
   FLOATING SHAPES
   ============================================================ */
.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.07;
  animation: drift var(--dur, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.shape-circle {
  width: var(--size, 120px);
  height: var(--size, 120px);
  border-radius: 50%;
  background: var(--teal);
}

.shape-hex {
  width: var(--size, 100px);
  height: var(--size, 100px);
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.shape-ring {
  width: var(--size, 150px);
  height: var(--size, 150px);
  border-radius: 50%;
  border: 12px solid var(--teal);
  background: transparent;
  opacity: 0.05;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(12px, -18px) rotate(8deg); }
  50%  { transform: translate(-8px, -32px) rotate(-5deg); }
  75%  { transform: translate(16px, -12px) rotate(10deg); }
}

/* ============================================================
   ANIMATED WAVES
   ============================================================ */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
  pointer-events: none;
}

.wave-container svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  left: 0;
}

.wave-1 { animation: wave-anim 8s linear infinite; opacity: 0.4; }
.wave-2 { animation: wave-anim 11s linear infinite reverse; opacity: 0.25; animation-delay: -3s; }
.wave-3 { animation: wave-anim 14s linear infinite; opacity: 0.15; animation-delay: -6s; }

@keyframes wave-anim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 100px 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--forest);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
}

/* ============================================================
   INTRO STRIP (homepage)
   ============================================================ */
.intro-strip {
  background: var(--forest);
  padding: 28px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--sand);
  white-space: nowrap;
}

.marquee-item span {
  color: var(--teal-light);
  font-size: 1.4rem;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES PREVIEW (homepage)
   ============================================================ */
.services-section { background: var(--cream); }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(45,122,107,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon { background: rgba(45,122,107,0.18); }

.service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.service-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 2px;
}

/* ============================================================
   ABOUT PREVIEW (homepage)
   ============================================================ */
.about-section { background: var(--sand); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--forest) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-placeholder {
  text-align: center;
  color: rgba(245,240,232,0.5);
}

.about-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: rgba(245,240,232,0.3);
  fill: none;
  margin: 0 auto 16px;
  display: block;
}

.about-placeholder p {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}

.about-badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 2px;
}

.about-content .section-body { margin-bottom: 32px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(45,122,107,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-check svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

.feature-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.5; }

/* ============================================================
   VIBE STRIP (full-bleed dark section)
   ============================================================ */
.vibe-strip {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vibe-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45,122,107,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(45,122,107,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vibe-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.vibe-quote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(245,240,232,0.75);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.vibe-quote strong {
  color: var(--teal-light);
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15em;
  letter-spacing: 0.06em;
}

.vibe-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.vibe-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.vibe-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(45,122,107,0.15);
  border: 1px solid rgba(45,122,107,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-icon svg { width: 26px; height: 26px; stroke: var(--teal-light); fill: none; stroke-width: 1.6; }

.vibe-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  font-weight: 500;
}

/* ============================================================
   CTA BAND (homepage)
   ============================================================ */
.cta-band {
  background: var(--teal);
  padding: 80px 0;
}

.cta-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band-text {}
.cta-band-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--teal);
  padding: 18px 36px;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--sand);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest);
  padding: 72px 0 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--sand);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--sand); }

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
}

.footer-info-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  margin-top: 2px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(245,240,232,0.6);
  margin-bottom: 6px;
}

.hours-row .day { color: rgba(245,240,232,0.8); font-weight: 500; }
.hours-row .closed { color: rgba(245,240,232,0.35); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(245,240,232,0.1);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

.footer-powered {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

.footer-powered a { color: var(--teal-light); transition: color var(--transition); }
.footer-powered a:hover { color: var(--teal-light); opacity: 0.8; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--forest) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(45,122,107,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.page-breadcrumb a { color: var(--teal-light); transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--sand); }

.page-hero-title {
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--sand);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* Wave on page hero */
.page-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list-section { background: var(--cream); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-full-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--teal-light));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.service-full-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-full-card:hover::after { transform: scaleY(1); }

.service-full-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, rgba(45,122,107,0.12), rgba(45,122,107,0.06));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-full-icon svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 1.7; }

.service-full-info { flex: 1; }

.service-full-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.service-full-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.service-full-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--teal);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Signature service */
.service-full-card.signature {
  background: linear-gradient(135deg, var(--forest), var(--teal-dark));
  border-color: transparent;
  grid-column: 1 / -1;
}

.service-full-card.signature::after { background: linear-gradient(180deg, var(--teal-light), var(--sand)); }

.service-full-card.signature .service-full-name { color: var(--sand); }
.service-full-card.signature .service-full-desc { color: rgba(245,240,232,0.7); }
.service-full-card.signature .service-full-price { color: var(--teal-light); }

.service-full-card.signature .service-full-icon {
  background: rgba(245,240,232,0.1);
}

.service-full-card.signature .service-full-icon svg { stroke: var(--sand); }

.services-note {
  margin-top: 40px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.services-note svg { width: 20px; height: 20px; min-width: 20px; stroke: var(--teal); fill: none; stroke-width: 2; margin-top: 2px; }
.services-note p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-section { background: var(--cream); }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-text .section-body { margin-bottom: 24px; }

.about-story-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-story-text p.lead {
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.7;
}

.about-highlight-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-top: 36px;
}

.about-highlight-box .quote-text {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlight-box .quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 600;
}

.about-side-cards { display: flex; flex-direction: column; gap: 20px; }

.about-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

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

.about-side-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(45,122,107,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-side-card-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.about-side-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.about-side-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

.about-timeline { margin-top: 20px; }

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-dot {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-dot svg { width: 14px; height: 14px; stroke: var(--white); fill: none; stroke-width: 2.5; }

.timeline-content {}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.timeline-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.timeline-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}

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

.contact-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(45,122,107,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 1rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.4;
}

.contact-card-value a {
  color: var(--teal);
  transition: color var(--transition);
}

.contact-card-value a:hover { color: var(--teal-dark); }

/* Hours card */
.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.hours-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-title svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.hours-row-contact {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,122,107,0.08);
  font-size: 0.9rem;
}

.hours-row-contact:last-child { border-bottom: none; }
.hours-day { color: var(--text-mid); font-weight: 500; }
.hours-time { color: var(--text-dark); font-weight: 600; }
.hours-time.closed { color: var(--text-light); font-weight: 400; }

/* Map */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border);
  height: 220px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--forest);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,122,107,0.12);
  background: var(--white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%232d7a6b' stroke-width='1.5' fill='none' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45,122,107,0.35);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 140px;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-badge { display: inline-flex; }
  .hero-visual { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-full-card.signature { grid-column: auto; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 60px 20px 130px; }
  .hero-heading { font-size: clamp(4rem, 18vw, 6rem); }

  .section { padding: 72px 0; }
  .section-inner { padding: 0 20px; }

  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-band-inner { flex-direction: column; text-align: center; }

  .vibe-items { gap: 28px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .gate-box { padding: 36px 24px; margin: 0 16px; }

  .services-header { margin-bottom: 36px; }

  .page-hero { padding: 130px 0 60px; }
  .page-hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }

  .nav-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  .hero-inner { padding: 60px 20px 130px; }

  .about-timeline .timeline-item { flex-direction: column; gap: 8px; }
}
