/* ============================================================
   TOP1 UNISEX HAIRDRESSER - Design System
   Palette: warm ivory + off-black ink + deep emerald accent
   Type: Playfair Display (display) + Outfit (UI/body)
   ============================================================ */

:root{
  --bg: #f7f5f0;
  --bg-elevated: #ffffff;
  --bg-soft: #eeebe2;
  --bg-deep: #efece4;

  --ink: #18160f;
  --ink-2: #4c4a41;
  --ink-3: #83806f;

  --accent: #1e5b48;
  --accent-2: #2f7a61;
  --accent-dark: #123c30;
  --accent-tint: #e7efe9;

  --line: rgba(24, 22, 15, 0.12);
  --line-soft: rgba(24, 22, 15, 0.07);

  --glass-bg: rgba(255, 255, 255, 0.5);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 18px 60px rgba(24, 22, 15, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);

  --radius-pill: 999px;
  --radius-panel: 22px;
  --radius-card: 18px;
  --radius-input: 12px;

  --shadow-soft: 0 12px 32px rgba(24, 22, 15, 0.08);
  --shadow-lift: 0 24px 56px rgba(24, 22, 15, 0.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 78px;
  --demo-h: 40px;
}

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

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--demo-h);
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ margin: 0; font-family: "Lora", serif; font-weight: 600; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em, h4 em, h1 i, h2 i, h3 i, h4 i { font-family: "Playfair Display", serif; font-style: italic; font-weight: inherit; }
p{ margin: 0; }

.wrap{ max-width: 1280px; margin-inline: auto; padding-inline: 24px; }
@media (max-width: 768px){ .wrap{ padding-inline: 20px; } }

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

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px !important; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:active{ transform: scale(0.97); }
.btn-primary{ background: var(--accent); color: #fdfcf9 !important; box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost{ background: var(--glass-bg); color: var(--ink) !important; border-color: var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.btn-ghost:hover{ background: var(--bg-elevated); border-color: var(--accent); color: var(--accent-dark) !important; transform: translateY(-2px); }
.btn-dark{ background: var(--ink); color: var(--bg) !important; box-shadow: var(--shadow-soft); }
.btn-dark:hover{ background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn i{ font-size: 18px; }
.btn-sm{ padding: 11px 22px !important; font-size: 14px; }

/* ---------- Glass ---------- */
.glass{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: var(--glass-shadow);
}
.glass-strong{ background: var(--glass-bg-strong); }
@media (prefers-reduced-transparency: reduce){
  .glass, .glass-strong{ background: var(--bg-elevated); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-tint);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.eyebrow::before{ display: none; }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin-top: 14px; }
.section-head p{ margin-top: 16px; color: var(--ink-2); font-size: 16.5px; max-width: 52ch; }
.section-head.center{ margin-inline: auto; text-align: center; }

section{ position: relative; padding: 96px 0; scroll-margin-top: 90px; }
@media (max-width: 768px){ section{ padding: 64px 0; } }

/* ============================================================
   NAV
   ============================================================ */
.site-nav{
  position: fixed; top: var(--demo-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-nav > .wrap{ display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.site-nav.scrolled{
  height: 66px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 8px 30px rgba(24,22,15,0.06);
}
.site-nav.menu-open{
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line-soft);
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 54px; width: auto; transition: height 0.4s var(--ease); }
.site-nav.scrolled .brand img{ height: 42px; }

.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links > a, .nav-links > .nav-item > a{
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0; transition: color 0.3s var(--ease);
}
.nav-links > a::after, .nav-links > .nav-item > a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent); transition: right 0.35s var(--ease);
}
.nav-links > a:hover, .nav-links > .nav-item > a:hover{ color: var(--ink); }
.nav-links > a:hover::after, .nav-links > .nav-item > a:hover::after,
.nav-links > a.active::after, .nav-links > .nav-item > a.active::after{ right: 0; }
.nav-links > a.active, .nav-links > .nav-item > a.active{ color: var(--accent-dark); }

/* ---------- Mega menu ---------- */
.nav-item{ position: relative; }
.nav-item > a i{ font-size: 15px; margin-left: 4px; transition: transform 0.3s var(--ease); vertical-align: -1px; }
.nav-item:hover > a i, .nav-item.open > a i{ transform: rotate(180deg); }
.mega{
  position: fixed; left: 0; right: 0; top: calc(var(--demo-h) + var(--nav-h)); z-index: 95;
  padding: 36px 0 30px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 26px 50px rgba(24,22,15,0.10);
}
.site-nav.scrolled ~ .mega, .site-nav.scrolled .mega{ top: calc(var(--demo-h) + 66px); }
.nav-item:hover .mega, .mega:hover, .mega.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px 14px; }
.mega-col a{
  position: relative; display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  border-radius: 12px;
}
.mega-col a::after{
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 9px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.mega-col a:hover::after{ transform: scaleX(1); }
.mega-col a:hover .mega-icon{ background: var(--accent); color: #fff; }
.mega-col a:hover strong{ color: var(--accent-dark); }
.mega-col a:hover .mega-arrow{ opacity: 1; transform: translateX(0); }
.mega-icon{
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.mega-col a strong{ display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); font-family: "Outfit", sans-serif; transition: color 0.3s var(--ease); }
.mega-col a small{ display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; font-weight: 400; }
.mega-arrow{
  margin-left: auto; align-self: center; font-size: 15px; color: var(--accent);
  opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mega-foot{ display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.mega-foot p{ font-size: 13.5px; color: var(--ink-3); }
@media (max-width: 1150px){ .mega-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px){ .mega{ display: none; } }

.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-call{
  display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.nav-call i{ font-size: 19px; color: var(--accent); }

.nav-toggle{
  display: none; background: none; border: none; width: 42px; height: 42px;
  border-radius: 12px; align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle i{ font-size: 24px; }

.mobile-panel{
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-elevated);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  overflow-y: auto; padding: calc(var(--demo-h) + var(--nav-h) + 24px) 24px 40px;
}
.mobile-panel.open{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-panel a{ font-family: "Playfair Display", serif; font-size: 28px; padding: 12px 0; color: var(--ink); }
.mobile-panel .btn{ margin-top: 18px; width: 100%; max-width: 320px; }
.mobile-services{ width: 100%; max-width: 380px; margin: 6px 0; }
.mobile-services summary{
  font-family: "Playfair Display", serif; font-size: 28px; padding: 12px 0; color: var(--ink);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.mobile-services summary::-webkit-details-marker{ display: none; }
.mobile-services summary i{ font-size: 18px; transition: transform 0.3s var(--ease); }
.mobile-services[open] summary i{ transform: rotate(180deg); }
.mobile-services-list{ display: flex; flex-direction: column; gap: 2px; padding: 4px 0 16px; align-items: center; }
.mobile-services-list a{ font-family: "Outfit", sans-serif; font-size: 15px; padding: 8px 0; color: var(--ink-2); }

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-call span{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 60px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 84% 12%, rgba(30,91,72,0.10), transparent 70%),
    radial-gradient(50% 40% at 10% 92%, rgba(30,91,72,0.08), transparent 70%),
    var(--bg);
}
.hero .wrap{
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero-copy h1{
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.06; color: var(--ink);
}
.hero-copy h1 em{ font-style: italic; color: var(--accent-dark); line-height: 1.15; padding-bottom: 2px; display: inline-block; }
.hero-copy .lede{
  margin-top: 22px; font-size: 18px; color: var(--ink-2); max-width: 46ch; line-height: 1.6;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-points{ display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; }
.hero-point{ display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.hero-point i{ font-size: 20px; color: var(--accent); }

.hero-visual{ position: relative; aspect-ratio: 4 / 5; margin-right: 2vw; }
.hero-frame{
  position: absolute; inset: 0; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-frame img{ width: 100%; height: 100%; object-fit: cover; }
.hero-badge{
  position: absolute; left: -30px; bottom: 42px; z-index: 3;
  padding: 20px 24px; border-radius: var(--radius-panel);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
  background: #ffffff !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: var(--shadow-soft) !important;
}
.hero-badge .scissor-mark{
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent);
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge .scissor-mark i{ font-size: 22px; }
.hero-badge strong{ display: block; font-family: "Playfair Display", serif; font-size: 17px; }
.hero-badge span{ font-size: 12.5px; color: var(--ink-3); }

.hero-swatch{
  position: absolute; top: -26px; right: -22px; z-index: 3;
  padding: 14px 18px; border-radius: var(--radius-panel);
  text-align: center;
  background: #ffffff !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: var(--shadow-soft);
}
.hero-swatch strong{ display: block; font-family: "Playfair Display", serif; font-size: 22px; color: var(--accent-dark); }
.hero-swatch span{ font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }

@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; aspect-ratio: 16/11; max-width: 480px; margin-inline: auto; width: 100%; }
  .hero-badge{ left: 12px; bottom: -24px; }
  .hero-swatch{ right: 12px; top: -18px; }
}
@media (max-width: 560px){
  .hero-badge{ display: none; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip{ padding: 30px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-elevated); }
.trust-strip .wrap{ display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; }
.trust-item{ display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.trust-item i{ font-size: 22px; color: var(--accent); }

/* ============================================================
   ABOUT
   ============================================================ */
.about .wrap{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-visual{ position: relative; z-index: 1; }
.about-visual::before{
  content: ""; position: absolute; top: -24px; left: -24px; right: 24px; bottom: 24px;
  border-radius: var(--radius-panel); background: var(--accent-tint); z-index: -1;
  transition: transform 0.5s var(--ease);
}
.about-visual:hover::before{ transform: translate(8px, 8px); }
.about-img{ border-radius: var(--radius-panel); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lift); }
.about-img img{ width: 100%; height: 100%; object-fit: cover; }
.about-stat{
  position: absolute; bottom: -28px; right: -20px; padding: 22px 26px; border-radius: var(--radius-panel);
  text-align: center;
  background: #ffffff !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: var(--shadow-soft) !important;
}
.about-stat strong{ display: block; font-family: "Playfair Display", serif; font-size: 30px; color: var(--accent-dark); }
.about-stat span{ font-size: 12px; color: var(--ink-3); }

.about-body p{ color: var(--ink-2); font-size: 16.5px; margin-top: 18px; max-width: 56ch; }
.about-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; margin-top: 30px; }
.about-list li{ 
  display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  background: var(--bg-elevated); padding: 16px 20px; border-radius: 16px; box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-list li:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.about-list i{ font-size: 20px; color: var(--accent); margin-top: 0; }

@media (max-width: 900px){
  .about .wrap{ grid-template-columns: 1fr; }
  .about-visual{ max-width: 420px; margin-inline: auto; width: 100%; }
  .about-list{ grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES BENTO (home teaser)
   ============================================================ */
.bento{
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 18px;
}
.bento-card{
  position: relative; border-radius: var(--radius-card); padding: 26px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  background: var(--bg-elevated); border: 1px solid var(--line-soft);
}
.bento-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.bento-card.span-2{ grid-column: span 2; }
.bento-card.tall{ grid-row: span 2; }
.bento-card.photo{ color: #fff; }
.bento-card.photo img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform 0.7s var(--ease);
}
.bento-card.photo:hover img{ transform: scale(1.07); }
.bento-card.photo::before{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(15,20,15,0.82) 5%, rgba(15,20,15,0.15) 65%, transparent 100%);
}
.bento-card.accent{ background: linear-gradient(155deg, var(--accent), var(--accent-dark)); color: #fdfcf9; border: none; }
.bento-inner{ position: relative; z-index: 2; }
.bento-card i.bento-icon{ font-size: 26px; color: var(--accent); margin-bottom: 12px; display: block; }
.bento-card.photo i.bento-icon, .bento-card.accent i.bento-icon{ color: #fff; }
.bento-card h3{ font-size: 20px; color: inherit; }
.bento-card p{ font-size: 13.5px; margin-top: 6px; opacity: 0.85; color: inherit; max-width: 26ch; }
.bento-card .from{ font-size: 12px; margin-top: 10px; opacity: 0.75; font-weight: 600; letter-spacing: 0.02em; }

@media (max-width: 980px){
  .bento{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .bento-card.tall{ grid-row: span 1; }
}
@media (max-width: 620px){
  .bento{ grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento-card.span-2{ grid-column: span 1; }
}

.services-cta{ margin-top: 40px; display: flex; justify-content: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-strip{ background: var(--bg-deep); }
.gallery-grid{
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; grid-auto-rows: 130px;
}
.gallery-grid figure{
  margin: 0; border-radius: 16px; overflow: hidden; position: relative; cursor: zoom-in;
}
.gallery-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid figure:hover img{ transform: scale(1.08); }
.gallery-grid figure::after{
  content: "\f349"; font-family: "Phosphor"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; background: rgba(18,60,48,0.0); opacity: 0; transition: all 0.4s var(--ease);
}
.gallery-grid figure:hover::after{ background: rgba(18,60,48,0.35); opacity: 1; }
.g1{ grid-column: 1 / 3; grid-row: 1 / 3; }
.g4{ grid-column: 5 / 7; grid-row: 1 / 3; }
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 110px; }
  .g1{ grid-column: 1 / 3; grid-row: 1 / 3; }
  .g4{ grid-column: 1 / 3; grid-row: 3 / 5; }
}
@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .gallery-grid figure{ aspect-ratio: 1 / 1; }
  .g1, .g4{ grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16 / 10; }
}

.lightbox{
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(15,18,14,0.78); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); padding: 30px;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox img{ max-width: min(900px, 92vw); max-height: 82vh; border-radius: 18px; box-shadow: var(--shadow-lift); }
.lightbox-close{
  position: absolute; top: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--glass-bg-strong); border: 1px solid var(--glass-border); color: var(--ink);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(12px);
}
.lightbox-close i{ font-size: 22px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track{
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 20px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar{ display: none; }
.testi-card{
  scroll-snap-align: start; flex: 0 0 min(380px, 84vw); padding: 40px; border-radius: var(--radius-panel);
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--line-soft) !important;
  background: var(--bg-elevated) !important;
  box-shadow: none !important;
  position: relative; overflow: hidden;
}
.testi-card::before{
  content: '“';
  position: absolute; top: -10px; right: 24px;
  font-family: "Playfair Display", serif; font-size: 140px;
  color: var(--accent-tint); line-height: 1; opacity: 0.7; pointer-events: none;
}
.testi-stars{ display: flex; gap: 6px; color: var(--accent); font-size: 18px; position: relative; z-index: 2; }
.testi-card p{ font-size: 16.5px; color: var(--ink-2); line-height: 1.6; position: relative; z-index: 2; font-style: italic; }
.testi-who{ display: flex; align-items: center; gap: 14px; margin-top: auto; position: relative; z-index: 2; }
.testi-avatar{
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  background: var(--accent-tint);
}
.testi-avatar img{ width: 100%; height: 100%; object-fit: cover; }
.testi-who strong{ display: block; font-size: 14.5px; }
.testi-who span{ font-size: 12.5px; color: var(--ink-3); }

.testi-nav{ display: flex; gap: 12px; margin-top: 8px; }
.testi-nav button{
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease);
}
.testi-nav button:hover{ background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================================
   LOCATION / CONTACT PANEL
   ============================================================ */
.location{
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}
.location .wrap{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.location-card{ padding: 44px; border-radius: 28px; display: flex; flex-direction: column; gap: 26px; }
.location-row{ display: flex; gap: 16px; align-items: flex-start; }
.location-row i{ font-size: 22px; color: var(--accent); margin-top: 3px; }
.location-row strong{ display: block; font-size: 15px; margin-bottom: 4px; }
.location-row span, .location-row a{ font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.hours-table{ width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td{ padding: 7px 0; font-size: 14.5px; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child td{ border-bottom: none; }
.hours-table td:last-child{ text-align: right; font-weight: 600; color: var(--ink); }
.map-frame{ border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-soft); min-height: 340px; border: 1px solid var(--line-soft); }
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

@media (max-width: 900px){
  .location .wrap{ grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  position: relative; margin: 0 24px; border-radius: 32px; overflow: hidden;
  padding: 72px 40px; text-align: center;
  background: linear-gradient(155deg, var(--accent-dark), var(--accent));
  color: #fdfcf9;
}
.cta-band h2{ font-size: clamp(28px, 4vw, 42px); color: #fdfcf9; }
.cta-band p{ margin-top: 14px; color: rgba(253,252,249,0.85); font-size: 16px; }
.cta-band .btn-primary{ background: #fdfcf9; color: var(--accent-dark) !important; margin-top: 30px; }
.cta-band .btn-primary:hover{ background: #fff; color: var(--accent-dark) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ padding: 80px 0 40px; background: var(--ink); color: #fdfcf9; margin-top: 40px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img{ height: 38px; filter: brightness(0) invert(1); }
.footer-brand p{ margin-top: 16px; font-size: 14.5px; color: rgba(253,252,249,0.7); max-width: 32ch; line-height: 1.6; }
.footer-col h4{ font-family: "Outfit", sans-serif; font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253,252,249,0.5); font-weight: 600; margin-bottom: 20px; }
.footer-col a, .footer-col span{ display: block; font-size: 15px; color: rgba(253,252,249,0.85); margin-bottom: 14px; transition: color 0.3s var(--ease); }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.footer-bottom span{ font-size: 13.5px; color: rgba(253,252,249,0.5); }

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

/* ============================================================
   INNER PAGE HEADER (services / contact)
   ============================================================ */
.page-header{
  padding-top: calc(var(--nav-h) + 64px); padding-bottom: 60px; text-align: center;
  background: radial-gradient(60% 60% at 50% 0%, rgba(30,91,72,0.09), transparent 70%);
}
.page-header .eyebrow{ justify-content: center; }
.page-header h1{ font-size: clamp(34px, 5vw, 56px); margin-top: 16px; }
.page-header p{ margin: 16px auto 0; max-width: 52ch; color: var(--ink-2); font-size: 16.5px; }
.breadcrumb{ display: flex; justify-content: center; gap: 8px; font-size: 13.5px; color: var(--ink-3); margin-bottom: 6px; }
.breadcrumb a:hover{ color: var(--accent-dark); }

/* ============================================================
   PRICING LAYOUT
   ============================================================ */
.pricing-section {
  padding: 60px 0 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.pricing-sidebar {
  position: sticky;
  top: calc(var(--demo-h) + var(--nav-h) + 16px);
  background: var(--bg-elevated);
  padding: 24px;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
  z-index: 10;
}
.price-index{ display: flex; flex-direction: column; gap: 2px; }
.price-index a{
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 10px 14px; border-radius: 12px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.price-index a i, .price-index a .material-symbols-rounded{ font-size: 19px; color: var(--ink-3); flex-shrink: 0; transition: color 0.3s var(--ease); }
.price-index a:hover{ background: var(--accent-tint); color: var(--accent-dark); }
.price-index a:hover i, .price-index a:hover .material-symbols-rounded{ color: var(--accent); }
.price-index a.active{ background: var(--accent); color: #fdfcf9; }
.price-index a.active i, .price-index a.active .material-symbols-rounded{ color: #fdfcf9; }
.price-index span:not(.material-symbols-rounded){ display: none; }

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.price-panel{ 
  background: var(--bg-elevated); padding: 44px; border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft); scroll-margin-top: calc(var(--nav-h) + 40px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-panel:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.price-panel-head{ display: flex; align-items: center; gap: 18px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.price-icon{
  width: 60px; height: 60px; border-radius: 18px; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.price-panel-head h3{ font-family: "Lora", serif; font-size: 28px; color: var(--accent-dark); }
.price-panel-head p{ font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.price-list{ display: grid; grid-template-columns: 1fr; gap: 0; }
.price-row{ display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--line-soft); }
.price-row:last-child{ border-bottom: none; }
.price-row .name{ font-size: 16px; color: var(--ink); font-weight: 500; }
.price-row .name small{ display: block; font-size: 13px; color: var(--ink-3); font-weight: 400; margin-top: 4px; }
.price-row .amount{ font-family: "Outfit", sans-serif; font-size: 18px; font-weight: 600; color: var(--accent-dark); }

@media (max-width: 1100px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-sidebar{ position: static; margin-bottom: 40px; }
  .price-index{ display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; }
}
@media (max-width: 480px){
  .price-index{ grid-template-columns: 1fr; }
}

.price-note{
  margin-top: 50px; padding: 26px 30px; border-radius: var(--radius-panel); display: flex; gap: 16px; align-items: flex-start;
}
.price-note i{ font-size: 22px; color: var(--accent); margin-top: 2px; }
.price-note p{ font-size: 14.5px; color: var(--ink-2); }

.price-banner{
  position: relative; margin: 8px 0 44px; border-radius: 24px; overflow: hidden; min-height: 220px;
  display: flex; align-items: center; color: #fdfcf9;
}
.price-banner img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.price-banner::before{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(15,25,20,0.86) 30%, rgba(15,25,20,0.35) 75%, rgba(15,25,20,0.15) 100%);
}
.price-banner-body{ position: relative; z-index: 2; padding: 40px 46px; max-width: 480px; }
.price-banner-body span{ font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,252,249,0.75); }
.price-banner-body h3{ font-size: 26px; color: #fdfcf9; margin-top: 8px; }
.price-banner-body p{ font-size: 14.5px; color: rgba(253,252,249,0.85); margin-top: 10px; line-height: 1.6; }
@media (max-width: 640px){ .price-banner-body{ padding: 32px 26px; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form{ padding: 40px; border-radius: 28px; }
.field{ margin-bottom: 20px; }
.field label{ display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select{
  width: 100%; padding: 14px 16px; border-radius: var(--radius-input); border: 1px solid var(--line);
  background: var(--bg-elevated); font-family: inherit; font-size: 14.5px; color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-3); }
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint);
}
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error{ font-size: 12.5px; color: #a3312a; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea{ border-color: #a3312a; }
.field.invalid .field-error{ display: block; }
.form-note{ font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.form-success{
  display: none; align-items: center; gap: 12px; padding: 16px 18px; border-radius: var(--radius-input);
  background: var(--accent-tint); color: var(--accent-dark); font-size: 14px; font-weight: 500; margin-top: 18px;
}
.form-success.show{ display: flex; }
.form-success i{ font-size: 20px; }

@media (max-width: 900px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in > *{ opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay: 0.02s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: 0.10s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: 0.34s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: 0.42s; }

/* ---------- Back to top ---------- */
.to-top{
  position: fixed; right: 22px; bottom: 62px; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.4s var(--ease);
}
.to-top.show{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top i{ font-size: 20px; }

/* ---------- Demo Banner ---------- */
.demo-banner{
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--accent-dark); color: #fff; text-align: center;
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  height: 40px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Material Symbols ---------- */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24 !important;
}

/* ---------- Theme Switcher ---------- */
.theme-toggle-btn{
  position: fixed; bottom: 22px; left: 22px; z-index: 1000;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-elevated); color: var(--ink); border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); cursor: pointer; transition: transform 0.2s;
}
.theme-toggle-btn:hover{ transform: scale(1.05); }
.theme-toggle-btn i{ font-size: 22px; }
.theme-panel{
  position: fixed; bottom: 82px; left: 22px; z-index: 1000;
  background: var(--bg-elevated); padding: 16px; border-radius: 16px;
  box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px; max-width: 210px;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s var(--ease);
}
.theme-panel.open{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.theme-swatch{
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.2s; padding: 0;
}
.theme-swatch:hover{ transform: scale(1.1); }
.theme-swatch.active{ border-color: var(--ink); transform: scale(1.1); }
.theme-swatch.custom{
  background: conic-gradient(from 180deg, #e1553f, #e8b23d, #4f9e5c, #3b82c4, #8b5fbf, #e1553f);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.theme-swatch.custom::before{
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--bg-elevated);
}
.theme-swatch.custom i{ position: relative; z-index: 1; font-size: 13px; color: var(--ink-2); }
.theme-swatch.custom.has-color::before{ display: none; }
.theme-swatch.custom.has-color i{ color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
#customColorInput{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
