/* =========================================================
   bleuthebarber — Global Stylesheet
   Palette: black + light blue (#7CC6F0 / #B8E0F2) + cream
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --surface: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --text-dim: #6e6e6e;
  --blue: #7CC6F0;
  --blue-soft: #B8E0F2;
  --blue-deep: #2C7DA0;
  --blue-glow: rgba(124, 198, 240, 0.18);
  --cream: #f4efe6;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --font-display: "Bodoni Moda", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
  --container: 1280px;
  --header-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--blue);
  color: var(--bg);
}

/* ----- Type ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-style: italic;
}
.logo .logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
}
.logo .blue { color: var(--blue); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-desktop a {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.4s ease;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 35px -10px var(--blue-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 12px 0;
}
.btn-ghost:hover {
  color: var(--blue);
}

.btn .arrow {
  transition: transform 0.35s ease;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 200;
}
.hamburger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); background: var(--blue); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); background: var(--blue); }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}
.nav-mobile.open a {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.35s; }
.nav-mobile.open a:nth-child(7) { transition-delay: 0.4s; }
.nav-mobile a span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue);
}
.nav-mobile-footer {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================================
   PAGE HEADER (sub-page hero)
   ========================================================= */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, #0d1418 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.page-hero h1 .italic {
  font-style: italic;
  color: var(--blue);
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--blue); }

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, var(--blue-glow), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(44, 125, 160, 0.12), transparent 50%);
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text .eyebrow {
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-text h1 .line {
  display: block;
  overflow: hidden;
}
.hero-text h1 .line span {
  display: inline-block;
  animation: heroLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(110%);
}
.hero-text h1 .line:nth-child(2) span { animation-delay: 0.15s; }
.hero-text h1 .line:nth-child(3) span { animation-delay: 0.3s; }
.hero-text h1 .italic {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
@keyframes heroLine {
  to { transform: translateY(0); }
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  position: relative;
  height: 580px;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-card.main {
  width: 62%;
  aspect-ratio: 966 / 1224;
  top: 0;
  right: 0;
}
.hero-card.accent {
  width: 48%;
  aspect-ratio: 970 / 1234;
  bottom: 0;
  left: 0;
  border: 6px solid var(--bg);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: var(--blue);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 40px -10px var(--blue-glow);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--bg);
  border-radius: 50%;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Marquee under hero */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  gap: 4rem;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item .star {
  color: var(--blue);
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head-text .eyebrow { margin-bottom: 1rem; }
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}
.section-head h2 .italic {
  font-style: italic;
  color: var(--blue);
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
}

/* Centered head */
.section-head.centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section-head.centered .eyebrow::before {
  display: none;
}
.section-head.centered .eyebrow {
  justify-content: center;
}

/* =========================================================
   ABOUT TEASER (homepage)
   ========================================================= */
.about-teaser {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-img {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--blue);
  box-shadow: 0 30px 60px -20px var(--blue-glow), 0 0 0 1px rgba(124, 198, 240, 0.2);
  background: linear-gradient(160deg, rgba(124, 198, 240, 0.08), rgba(0, 0, 0, 0.4));
  margin: 0 auto;
}
.about-teaser-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.15));
  pointer-events: none;
}
.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-teaser-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1rem 0 1.5rem;
}
.about-teaser-text h2 .italic {
  font-style: italic;
  color: var(--blue);
}
.about-teaser-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-teaser-text .btn {
  margin-top: 1.5rem;
}

/* About full page */
.about-full {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--blue);
  box-shadow: 0 30px 60px -20px var(--blue-glow), 0 0 0 1px rgba(124, 198, 240, 0.2);
  background: linear-gradient(160deg, rgba(124, 198, 240, 0.08), rgba(0, 0, 0, 0.4));
  margin: 0 auto;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1rem 0 1.5rem;
}
.about-content h2 .italic {
  font-style: italic;
  color: var(--blue);
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-content .lead {
  color: var(--text);
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 4rem;
}
.value-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: all 0.4s ease;
}
.value-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.value-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--blue-glow);
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.value-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 50px 1.3fr 1fr 0.6fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 24px;
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-row:hover { padding-left: 36px; }
.service-row:hover::before { opacity: 1; }
.service-row:hover .service-name { color: var(--blue); font-style: italic; }
.service-row:hover .service-arrow { color: var(--blue); transform: translateX(4px); }

.service-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}
.service-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.service-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue);
}
.service-arrow {
  color: var(--text-muted);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Services CTA pricing card */
.services-cta {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
}
.services-cta-content { position: relative; z-index: 1; }
.services-cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.services-cta-content h3 .italic { font-style: italic; color: var(--blue); }
.services-cta-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.services-cta-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.product-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px var(--blue-glow);
}
.product-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2228 0%, #0d1418 100%);
  display: grid;
  place-items: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}
.product-img svg {
  width: 60%;
  height: 60%;
  color: var(--blue);
  opacity: 0.85;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img svg {
  transform: scale(1.08) rotate(-2deg);
}
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg);
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-info {
  padding: 28px 24px 32px;
}
.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  min-height: 50px;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue);
}
.product-coming {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* =========================================================
   REVIEWS / TESTIMONIALS
   ========================================================= */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}
.review-stat {
  text-align: center;
  border-right: 1px solid var(--line);
}
.review-stat:last-child { border-right: none; }
.review-stat .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--blue);
  line-height: 1;
}
.review-stat .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.review-stat .stars {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: 4px;
  letter-spacing: 2px;
}

.reviews-columns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.reviews-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 380px;
  animation: scrollUp linear infinite;
}
.reviews-column.col-1 { animation-duration: 35s; }
.reviews-column.col-2 { animation-duration: 35s; }
.reviews-column.col-3 { animation-duration: 35s; }
.reviews-columns:hover .reviews-column { animation-play-state: paused; }

@keyframes scrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (max-width: 1024px) {
  .reviews-column.col-3 { display: none; }
}
@media (max-width: 768px) {
  .reviews-column.col-2 { display: none; }
}

.review-card {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}
.review-card:hover { border-color: var(--blue); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.review-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.review-stars {
  color: var(--blue);
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

/* =========================================================
   FIND US / CONTACT
   ========================================================= */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.find-us-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: all 0.4s ease;
}
.info-block:hover {
  border-color: var(--blue);
}
.info-block .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--blue-glow);
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  margin-bottom: 1rem;
}
.info-block h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.info-block p, .info-block a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.info-block a:hover { color: var(--blue); }

.hours-list {
  list-style: none;
  margin-top: 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.today {
  color: var(--blue);
  font-weight: 500;
}
.hours-list li .day {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 500px;
  background: var(--bg-2);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4) brightness(0.95);
  min-height: 500px;
}

/* =========================================================
   INSTAGRAM SECTION (homepage)
   ========================================================= */
.instagram-section {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.instagram-section .elfsight-app-881f379b-dc52-43f6-82e8-d5b79b0ffdf7 {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.ig-fallback {
  margin-top: 40px;
  padding: 60px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
}
.ig-fallback p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* =========================================================
   BIG CTA STRIP
   ========================================================= */
.cta-strip {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1418 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, var(--blue-glow), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(44, 125, 160, 0.1), transparent 50%);
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 1.5rem 0;
  letter-spacing: -0.04em;
}
.cta-strip h2 .italic { font-style: italic; color: var(--blue); }
.cta-strip p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* =========================================================
   BOOK NOW PAGE
   ========================================================= */
/* Book page — simplified single-column with big CTA */
.book-page-simple {
  min-height: calc(100vh - var(--header-h));
  padding: calc(var(--header-h) + 60px) 0 100px;
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(124, 198, 240, 0.08), transparent 70%),
    linear-gradient(180deg, #0d1418 0%, var(--bg) 100%);
}
.book-simple-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.book-simple-inner .breadcrumb { justify-content: center; }
.book-simple-inner .eyebrow { display: inline-block; margin-top: 0.5rem; }
.book-simple-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 1.2rem 0 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.book-simple-title .italic { font-style: italic; color: var(--blue); }
.book-simple-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 540px;
}
.book-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 2rem;
  max-width: 520px;
  text-align: left;
}
.book-service-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: all 0.3s ease;
}
.book-service-pill:hover { border-color: var(--blue); transform: translateX(4px); }
.book-service-pill .name { font-weight: 500; display: flex; align-items: center; }
.book-service-pill .duration {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-left: 12px;
}
.book-service-pill .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue);
}

/* Big CTA button */
.book-big-cta {
  display: block;
  margin: 2.5rem auto 2rem;
  max-width: 520px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue) 0%, #5BB3E5 100%);
  color: var(--bg);
  text-decoration: none;
  box-shadow: 0 25px 60px -15px var(--blue-glow), 0 0 0 1px rgba(124, 198, 240, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.book-big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.book-big-cta:hover { transform: translateY(-4px); box-shadow: 0 35px 80px -15px var(--blue-glow); }
.book-big-cta:hover::before { transform: translateX(100%); }
.book-big-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.book-big-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}
.book-big-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.book-big-cta-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.book-big-cta-sub {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 4px;
}
.book-big-cta-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.book-big-cta:hover .book-big-cta-arrow { transform: translateX(6px); }

/* Trust row */
.book-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 2rem auto 1.5rem;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 520px;
}
.book-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.book-trust-item svg { color: var(--blue); }

.book-help {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
}
.book-help a { color: var(--blue); text-decoration: none; }
.book-help a:hover { text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--blue); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.socials a:hover {
  background: var(--blue);
  color: var(--bg);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom .blue-dot {
  color: var(--blue);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 480px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-full { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { position: static; }
  .find-us-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-cta { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .header-cta-desktop { display: none; }
  .service-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 28px 16px;
    grid-template-areas:
      "num arrow"
      "name name"
      "desc desc"
      "meta meta";
  }
  .service-num { grid-area: num; }
  .service-name { grid-area: name; font-size: 1.6rem; }
  .service-desc { grid-area: desc; }
  .service-meta { grid-area: meta; flex-direction: row; gap: 16px; align-items: center; }
  .service-arrow { grid-area: arrow; }
  .service-row:hover { padding-left: 16px; }
  .reviews-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .review-stat { border-right: none; }
  .review-stat:nth-child(1), .review-stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-mobile a { font-size: 2rem; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }

  /* Book page mobile */
  .book-big-cta { padding: 22px 22px; }
  .book-big-cta-inner { gap: 14px; }
  .book-big-cta-title { font-size: 1.4rem; }
  .book-big-cta-sub { font-size: 0.78rem; }
  .book-big-cta-arrow { width: 46px; height: 46px; }
  .book-big-cta-arrow svg { width: 26px; height: 26px; }
  .book-trust { gap: 16px; }
  .book-trust-item { font-size: 0.8rem; }
  .book-simple-title { font-size: 2.8rem; }

  /* Hero on mobile */
  .hero-visual { height: 420px; }
  .hero-card.main { width: 68%; }
  .hero-card.accent { width: 50%; }
}

/* =========================================================
   3D TILT CARDS
   Applied via JS to: .product-card, .value-card, .info-block,
   .book-service-pill (strong) and .review-card (soft).
   ========================================================= */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: auto;
}
/* When pointer is moving over the card, JS sets inline transform
   AND the transition still applies for smoothing. We keep the
   transition shorter for the soft-tilt review cards via a class. */
.tilt-card.review-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

/* Glare overlay — sits above the card content but ignores clicks.
   Positioned absolute to cover the whole card surface. */
.tilt-card { position: relative; }
.tilt-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  z-index: 3;
  mix-blend-mode: screen;
}

/* Ensure children of book-service-pill stack above glare correctly.
   Glare sits above content visually but mix-blend-mode keeps text legible. */
.tilt-card > * { position: relative; }
.tilt-card > .tilt-glare { z-index: 3; }

/* Make sure rounded corners on .info-block / .value-card are inherited
   by the glare so the highlight respects card shape. */
.value-card, .info-block, .book-service-pill, .product-card, .review-card {
  isolation: isolate;
}

/* Disable tilt on touch / reduced motion — JS already skips,
   but add CSS belt-and-braces. */
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .tilt-card { transform: none !important; }
  .tilt-glare { display: none !important; }
}
