/* Bahar Babacan Beauty Center — static port of the Next.js design */

:root {
  color-scheme: light;
  --background: #faf6ef;
  --foreground: #3d342c;
  --card: #fdfbf7;
  --primary: #b8955a;
  --primary-foreground: #fdfbf7;
  --secondary: #f0e8d8;
  --muted: #f2ebe0;
  --muted-foreground: #7a6b58;
  --accent: #e0c8b0;
  --border: #e2d6c4;
  --input: #e6dccd;
  --gold: #b8955a;
  --espresso: #3d342c;
  --rose: #d4a894;
  --cream: #faf6ef;
  --radius: 0.5rem;
  --font-sans: "Jost", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.main {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.font-serif {
  font-family: var(--font-serif);
}

.text-primary {
  color: var(--primary);
}

.text-espresso {
  color: var(--espresso);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.italic {
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Reveal / stagger (JS adds .in-view) ---------- */
.reveal,
.stagger-item,
.stat-card,
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  will-change: opacity, transform;
  transition-delay: var(--delay, 0s);
}

.reveal.from-left,
[data-animate="left"] {
  transform: translate3d(-56px, 0, 0);
}

.reveal.from-right,
[data-animate="right"] {
  transform: translate3d(56px, 0, 0);
}

.reveal.from-scale,
[data-animate="scale"] {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.reveal.in-view,
.stagger-item.in-view,
.stat-card.in-view,
[data-animate].in-view,
.stagger.in-view > .stagger-item,
.stats-grid.in-view > .stat-card {
  opacity: 1;
  transform: none;
}

/* Stagger delays (parent .stagger.in-view triggers children) */
.stagger > .stagger-item {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.stagger.in-view > .stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger.in-view > .stagger-item:nth-child(2) { transition-delay: 0.15s; }
.stagger.in-view > .stagger-item:nth-child(3) { transition-delay: 0.25s; }
.stagger.in-view > .stagger-item:nth-child(4) { transition-delay: 0.35s; }
.stagger.in-view > .stagger-item:nth-child(5) { transition-delay: 0.45s; }
.stagger.in-view > .stagger-item:nth-child(6) { transition-delay: 0.55s; }
.stagger.in-view > .stagger-item:nth-child(7) { transition-delay: 0.65s; }
.stagger.in-view > .stagger-item:nth-child(8) { transition-delay: 0.75s; }

/* Delay helpers */
.delay-1 { --delay: 0.1s; }
.delay-2 { --delay: 0.2s; }
.delay-3 { --delay: 0.3s; }
.delay-4 { --delay: 0.4s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s, background 0.3s;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(61, 52, 44, 0.12);
}

.btn-primary > span {
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(61, 52, 44, 0.25);
  color: var(--espresso);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
  animation: header-in 0.6s var(--ease-out) both;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 0 var(--border);
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 80rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
}

@media (min-width: 768px) {
  .header-inner {
    padding-inline: 2rem;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--espresso);
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1.5rem;
  }
}

.logo-sub {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--primary);
}

.logo-sub::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: rgba(184, 149, 90, 0.6);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  position: relative;
  font-size: 0.875rem;
  color: rgba(61, 52, 44, 0.8);
  transition: color 0.2s;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--primary);
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(61, 52, 44, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 82%;
  max-width: 24rem;
  background: var(--background);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-overlay.is-open .mobile-drawer {
  transform: none;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(226, 214, 196, 0.6);
  padding: 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  opacity: 0;
  transform: translateX(30px);
  transition: color 0.2s, opacity 0.4s, transform 0.4s;
}

.mobile-overlay.is-open .mobile-nav a {
  opacity: 1;
  transform: none;
}

.mobile-overlay.is-open .mobile-nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-overlay.is-open .mobile-nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-overlay.is-open .mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay.is-open .mobile-nav a:nth-child(4) { transition-delay: 0.26s; }
.mobile-overlay.is-open .mobile-nav a:nth-child(5) { transition-delay: 0.32s; }
.mobile-overlay.is-open .mobile-nav a:nth-child(6) { transition-delay: 0.38s; }

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: linear-gradient(to bottom, rgba(240, 232, 216, 0.6), var(--background) 55%, var(--background));
}

.hero-blob {
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
}

.hero-blob-1 {
  left: -6rem;
  top: 6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(224, 200, 176, 0.4);
}

.hero-blob-2 {
  right: -4rem;
  bottom: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(184, 149, 90, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .hero-grid {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .hero-copy {
    grid-column: span 6;
  }
  .hero-media {
    grid-column: span 6;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(184, 149, 90, 0.3);
  background: rgba(250, 246, 239, 0.6);
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  animation: fade-up 0.6s 0.2s var(--ease-out) both;
}

.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.hero-title {
  margin: 1.5rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--espresso);
}

.hero-title .word {
  display: inline-block;
  margin-right: 0.75rem;
  opacity: 0;
  transform: translate3d(0, 56px, 0) rotate(2.5deg);
  animation: word-in 0.9s var(--ease-out) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.25s; }
.hero-title .word:nth-child(2) { animation-delay: 0.4s; color: var(--primary); font-style: italic; }
.hero-title .word:nth-child(3) { animation-delay: 0.55s; }
.hero-title .word:nth-child(4) { animation-delay: 0.7s; }

@keyframes word-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  animation: fade-up 0.6s 0.9s var(--ease-out) both;
}

@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  animation: fade-up 0.6s 1.05s var(--ease-out) both;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  animation: fade-in 0.8s 1.25s both;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stats span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.hero-media {
  position: relative;
}

.hero-frame {
  position: relative;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 2rem 6rem 2rem 2rem;
  box-shadow: 0 25px 50px rgba(61, 52, 44, 0.2);
  animation: scale-in 1s var(--ease-out) both;
}

.hero-frame img,
.hero-frame .img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 122%;
  top: -11%;
  object-fit: cover;
  will-change: transform;
}

.spin-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2.5rem;
  display: none;
  place-items: center;
  width: 7rem;
  height: 7rem;
}

@media (min-width: 768px) {
  .spin-badge {
    display: grid;
  }
}

.spin-badge svg.text-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 22s linear infinite;
}

.spin-badge .center {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  z-index: 1;
}

.spin-badge .center svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-float-tag {
  position: absolute;
  right: 0.5rem;
  top: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(250, 246, 239, 0.9);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 30px rgba(61, 52, 44, 0.12);
  backdrop-filter: blur(8px);
  animation: fade-left 0.6s 1.1s var(--ease-out) both;
}

@media (min-width: 768px) {
  .hero-float-tag {
    right: 0;
  }
}

.hero-float-tag small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.hero-float-tag strong {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--espresso);
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  animation: fade-in 0.6s 1.5s both;
}

@media (min-width: 768px) {
  .scroll-hint {
    display: flex;
  }
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-hint svg {
  width: 1rem;
  height: 1rem;
  animation: bounce-y 1.8s ease-in-out infinite;
}

@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-left {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: none; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: none; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid rgba(184, 149, 90, 0.2);
  background: var(--primary);
  color: var(--primary-foreground);
  padding-block: 1rem;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}

.marquee.reverse .marquee-track {
  animation-name: marquee-right;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline: 2rem;
  white-space: nowrap;
}

.marquee-item em {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
}

.marquee-item .dot {
  opacity: 0.6;
  font-size: 1.125rem;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---------- Sections shared ---------- */
.section {
  position: relative;
  padding-block: 6rem;
}

@media (min-width: 768px) {
  .section {
    padding-block: 8rem;
  }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-title {
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--espresso);
}

.section-lead {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.section-head-center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.section-head-center .section-lead {
  margin-inline: auto;
}

.section-muted {
  background: rgba(240, 232, 216, 0.4);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-media {
  position: relative;
}

.about-main-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2rem 2rem 2rem 6rem;
  box-shadow: 0 20px 40px rgba(61, 52, 44, 0.15);
}

.about-main-img img,
.about-main-img .img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-founder {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  width: 11rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 4px solid var(--background);
  box-shadow: 0 20px 40px rgba(61, 52, 44, 0.2);
}

@media (min-width: 640px) {
  .about-founder {
    width: 13rem;
  }
}

.about-founder .aspect {
  position: relative;
  aspect-ratio: 1;
}

.about-founder img,
.about-founder .img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: -1rem;
  top: 2rem;
  border-radius: 1rem;
  background: var(--espresso);
  color: var(--background);
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 32px rgba(61, 52, 44, 0.25);
}

.about-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.about-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reason-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reason-card {
  display: flex;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.reason-card:hover {
  border-color: rgba(184, 149, 90, 0.4);
  box-shadow: 0 8px 24px rgba(61, 52, 44, 0.08);
}

.reason-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.3s, color 0.3s;
}

.reason-card:hover .reason-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.reason-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.reason-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
}

.reason-card p {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Services ---------- */
.services-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card.span-2 {
    grid-column: span 2;
  }
}

.service-card {
  position: relative;
  display: block;
  height: 18rem;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: 0 4px 16px rgba(61, 52, 44, 0.08);
}

@media (min-width: 768px) {
  .service-card {
    height: 20rem;
  }
}

.service-card img,
.service-card .img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease-out;
}

.service-card:hover img,
.service-card:hover .img-fallback {
  transform: scale(1.1);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 52, 44, 0.85), rgba(61, 52, 44, 0.25), transparent);
}

.service-body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.service-tag {
  width: fit-content;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  background: rgba(250, 246, 239, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: #fff;
}

.service-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}

.service-desc > p {
  margin: 0;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.service-desc > p span {
  display: block;
  margin-top: 0.5rem;
}

.service-card:hover .service-desc {
  grid-template-rows: 1fr;
}

.service-arrow {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(250, 246, 239, 0.9);
  color: var(--espresso);
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: none;
}

.service-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- Technology ---------- */
.tech {
  background: var(--espresso);
  color: var(--background);
  overflow: hidden;
}

.tech .section-title {
  color: var(--background);
}

.tech .section-lead {
  color: rgba(250, 246, 239, 0.7);
}

.tech-blob {
  pointer-events: none;
  position: absolute;
  right: -6rem;
  top: 33%;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(184, 149, 90, 0.2);
  filter: blur(48px);
}

.tech-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tech-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid rgba(250, 246, 239, 0.15);
  background: transparent;
  color: inherit;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.tech-tab:hover {
  border-color: rgba(250, 246, 239, 0.4);
}

.tech-tab.is-active {
  border-color: var(--primary);
  background: rgba(184, 149, 90, 0.1);
}

.tech-tab strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.tech-tab small {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.6);
}

.tech-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(250, 246, 239, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.tech-tab.is-active .tech-num {
  background: var(--primary);
  color: var(--primary-foreground);
}

.tech-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.tech-visual img,
.tech-visual .img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 52, 44, 0.7), transparent);
}

.tech-detail {
  margin-top: 1.5rem;
  opacity: 1;
  transform: none;
  transition: opacity 0.35s, transform 0.35s;
}

.tech-detail.is-fading {
  opacity: 0;
  transform: translateY(12px);
}

.tech-detail p {
  margin: 0;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.8);
}

.tech-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(250, 246, 239, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.tech-points svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.results-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2rem 6rem 2rem 2rem;
  box-shadow: 0 20px 40px rgba(61, 52, 44, 0.15);
}

.results-img img,
.results-img .img-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-quote {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border-radius: 1rem;
  background: rgba(250, 246, 239, 0.9);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.results-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--espresso);
}

.results-quote span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.stats-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}

.stats-grid.in-view > .stat-card:nth-child(1) { transition-delay: 0.05s; }
.stats-grid.in-view > .stat-card:nth-child(2) { transition-delay: 0.15s; }
.stats-grid.in-view > .stat-card:nth-child(3) { transition-delay: 0.25s; }
.stats-grid.in-view > .stat-card:nth-child(4) { transition-delay: 0.35s; }

.stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
}

.stat-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  position: relative;
  height: 100%;
  margin: 0;
  border-radius: 1.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(61, 52, 44, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  right: 1.75rem;
  top: 1.75rem;
  width: 2.25rem;
  height: 2.25rem;
  color: rgba(184, 149, 90, 0.15);
  transition: color 0.3s;
}

.testimonial-card:hover .testimonial-quote-icon {
  color: rgba(184, 149, 90, 0.3);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--primary);
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin: 1rem 0 0;
  line-height: 1.7;
  color: rgba(61, 52, 44, 0.85);
}

.testimonial-card figcaption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(184, 149, 90, 0.15);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.fig-name {
  font-weight: 500;
  color: var(--espresso);
}

.fig-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.press {
  margin-top: 5rem;
  text-align: center;
}

.press-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.press-names {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.press-names span {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  letter-spacing: 0.15em;
  color: rgba(61, 52, 44, 0.4);
  transition: color 0.2s;
}

.press-names span:hover {
  color: var(--primary);
}

/* ---------- Consultation ---------- */
.consultation {
  padding-block: 2.5rem;
}

@media (min-width: 768px) {
  .consultation {
    padding-block: 4rem;
  }
}

.consult-box {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--espresso);
  color: var(--background);
}

.consult-blob {
  pointer-events: none;
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  background: rgba(184, 149, 90, 0.25);
  filter: blur(48px);
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .consult-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.consult-img {
  position: relative;
  order: 2;
  min-height: 16rem;
}

@media (min-width: 1024px) {
  .consult-img {
    order: 1;
  }
}

.consult-img img,
.consult-img .img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(61, 52, 44, 0.6));
}

.consult-content {
  order: 1;
  padding: 2.25rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .consult-content {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .consult-content {
    order: 2;
  }
}

.consult-content .section-title {
  color: var(--background);
  font-size: clamp(1.875rem, 3vw, 2.25rem);
}

.consult-content .section-lead {
  color: rgba(250, 246, 239, 0.7);
}

.consult-steps {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.consult-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.consult-step-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(184, 149, 90, 0.2);
  color: var(--primary);
}

.consult-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.consult-step h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.consult-step p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.65);
}

.consult-content .btn {
  margin-top: 2.25rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.contact-form {
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2.25rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  margin-top: 1.25rem;
}

.field:first-child,
.form-row .field {
  margin-top: 0;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--espresso);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(122, 107, 88, 0.7);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(61, 52, 44, 0.7);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.chip:hover {
  border-color: rgba(184, 149, 90, 0.5);
}

.chip.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.contact-form .btn {
  margin-top: 1.75rem;
  width: 100%;
}

.form-success {
  display: none;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.form-success.is-shown {
  display: flex;
}

.form-success svg {
  width: 1rem;
  height: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  border-color: rgba(184, 149, 90, 0.4);
  box-shadow: 0 8px 24px rgba(61, 52, 44, 0.08);
}

.info-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  color: var(--primary);
}

.info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.info-card small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.info-card strong {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--espresso);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand .logo-title {
  color: var(--background);
  font-size: 1.5rem;
}

.footer-brand p {
  margin: 1.25rem 0 0;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.6);
}

.socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(250, 246, 239, 0.2);
  color: rgba(250, 246, 239, 0.8);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.socials a:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.socials svg {
  width: 1rem;
  height: 1rem;
}

.footer-col h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.footer-col ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: rgba(250, 246, 239, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-col li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(250, 246, 239, 0.1);
  padding-block: 2rem;
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ---------- Floating actions ---------- */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.35s, transform 0.35s, visibility 0.35s;
}

.floating-actions.is-shown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fab {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.fab:hover {
  transform: scale(1.1);
}

.fab svg {
  width: 1.25rem;
  height: 1.25rem;
}

.fab-wa { background: #25d366; }
.fab-phone { background: var(--espresso); }
.fab-cal { background: var(--primary); color: var(--primary-foreground); }

/* ---------- Image fallbacks ---------- */
.img-fallback {
  background:
    linear-gradient(145deg, rgba(184, 149, 90, 0.35), rgba(61, 52, 44, 0.55)),
    radial-gradient(circle at 30% 20%, rgba(250, 246, 239, 0.4), transparent 50%),
    #c4a574;
}

.img-fallback.darker {
  background:
    linear-gradient(160deg, rgba(61, 52, 44, 0.7), rgba(184, 149, 90, 0.4)),
    #8a7350;
}

/* ---------- Reduced motion: kısalt, tamamen kapatma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track,
  .spin-badge svg.text-ring,
  .scroll-hint svg {
    animation: none !important;
  }
  .reveal,
  .stagger > .stagger-item,
  .stat-card,
  [data-animate] {
    transition-duration: 0.35s !important;
  }
}

/* ---------- Site logo ---------- */
.site-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .site-logo {
    height: 56px;
  }
}

.logo .site-logo {
  max-height: 56px;
}

.footer-brand .site-logo {
  height: 52px;
  margin-bottom: 1rem;
}

.mobile-drawer-top .site-logo {
  height: 40px;
}

/* ---------- Press grid cards ---------- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.press-card {
  background: var(--card, #fffdf8);
  border: 1px solid rgba(184, 149, 90, 0.18);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(61, 52, 44, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(61, 52, 44, 0.1);
}

.press-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(184, 149, 90, 0.25), rgba(61, 52, 44, 0.35));
}

.press-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.press-card:hover .press-card-media img {
  transform: scale(1.05);
}

.press-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 9999px;
  background: rgba(250, 246, 239, 0.92);
  color: var(--espresso, #3d342c);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.press-play svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 2px;
}

.press-play:hover {
  transform: scale(1.08);
  background: #fff;
}

.press-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.press-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--espresso, #3d342c);
  margin: 0 0 0.5rem;
}

.press-card-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Video lightbox ---------- */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.video-lightbox[hidden] {
  display: none !important;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.72);
  backdrop-filter: blur(4px);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #1a1510;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.video-lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.video-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Celebrity slider ---------- */
.celeb-slider {
  position: relative;
  margin-top: 3rem;
  padding: 0 2.75rem;
}

@media (min-width: 768px) {
  .celeb-slider {
    padding: 0 3.5rem;
  }
}

.celeb-viewport {
  overflow: hidden;
  border-radius: 1.25rem;
}

.celeb-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.celeb-card {
  flex: 0 0 calc(50% - 0.625rem);
  margin: 0;
  background: linear-gradient(180deg, #fffdf8 0%, #f7efdf 100%);
  border: 1px solid rgba(184, 149, 90, 0.22);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(61, 52, 44, 0.07);
}

@media (min-width: 768px) {
  .celeb-card {
    flex-basis: calc(33.333% - 0.834rem);
  }
}

@media (min-width: 1024px) {
  .celeb-card {
    flex-basis: calc(25% - 0.938rem);
  }
}

.celeb-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(184, 149, 90, 0.3), rgba(61, 52, 44, 0.45));
}

.celeb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.celeb-card:hover .celeb-photo img {
  transform: scale(1.04);
}

.celeb-card figcaption {
  display: none;
}

.celeb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(184, 149, 90, 0.35);
  border-radius: 9999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--espresso, #3d342c);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(61, 52, 44, 0.1);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.celeb-arrow svg {
  width: 1.15rem;
  height: 1.15rem;
}

.celeb-arrow:hover {
  background: #fff;
  border-color: var(--primary, #b8955a);
  transform: translateY(-50%) scale(1.05);
}

.celeb-prev { left: 0; }
.celeb-next { right: 0; }

.celeb-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.celeb-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(184, 149, 90, 0.35);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.celeb-dots button.is-active {
  width: 1.35rem;
  background: var(--primary, #b8955a);
}

@media (prefers-reduced-motion: reduce) {
  .celeb-track,
  .press-card,
  .press-card-media img,
  .celeb-photo img {
    transition-duration: 0.2s !important;
  }
}

.page-hero {
  padding: 8.5rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(240,232,216,.7), var(--background));
  text-align: center;
}
.page-hero .section-label { display:inline-block; }
.page-hero h1 {
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--espresso);
}
.page-hero p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.nav-desktop a.is-active,
.mobile-nav a.is-active { color: var(--primary); }
.site-header.is-scrolled .nav-desktop a.is-active { color: var(--primary); }

/* ---------- Blog / articles ---------- */
a.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card-date {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary, #b8955a);
  margin-bottom: 0.45rem;
}
.blog-card-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary, #b8955a);
}

/* Article detail — editorial / corporate */
.article-breadcrumb {
  padding: 6.75rem 0 0;
  background: linear-gradient(180deg, rgba(240, 232, 216, 0.85), transparent);
}
.article-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted-foreground);
}
.article-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  opacity: 0.55;
}
.article-breadcrumb a {
  color: var(--espresso);
  text-decoration: none;
}
.article-breadcrumb a:hover {
  color: var(--primary);
}
.article-breadcrumb li[aria-current="page"] {
  color: var(--muted-foreground);
  max-width: 28rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-hero {
  position: relative;
  padding: 2.25rem 0 3.25rem;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(184, 149, 90, 0.18), transparent 55%),
    linear-gradient(180deg, #f3ead9 0%, var(--background) 100%);
}
.article-hero.has-cover {
  color: #fdfbf7;
  min-height: clamp(22rem, 52vh, 34rem);
  display: flex;
  align-items: flex-end;
  padding: 4.5rem 0 3.5rem;
}
.article-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(34, 28, 22, 0.35) 0%, rgba(34, 28, 22, 0.72) 55%, rgba(34, 28, 22, 0.88) 100%);
  pointer-events: none;
}
.article-hero:not(.has-cover) .article-hero-overlay {
  display: none;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.92;
}
.article-hero:not(.has-cover) .article-hero-meta {
  color: var(--muted-foreground);
}
.article-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(253, 251, 247, 0.35);
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.article-hero:not(.has-cover) .article-kicker {
  border-color: rgba(184, 149, 90, 0.45);
  color: var(--primary);
}
.article-hero-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.article-hero:not(.has-cover) .article-hero-title {
  color: var(--espresso);
}
.article-deck {
  margin: 1.15rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
  max-width: 40rem;
  opacity: 0.92;
}
.article-hero:not(.has-cover) .article-deck {
  color: var(--muted-foreground);
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.article-byline-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  background: rgba(184, 149, 90, 0.9);
  color: #fdfbf7;
  flex-shrink: 0;
}
.article-byline strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}
.article-byline span {
  display: block;
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}
.article-hero:not(.has-cover) .article-byline strong {
  color: var(--espresso);
}
.article-hero:not(.has-cover) .article-byline span {
  color: var(--muted-foreground);
}

.article-section {
  padding-top: 0.5rem;
}
.article-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 19.5rem;
    gap: 3.25rem;
    align-items: start;
  }
}
.article-main {
  min-width: 0;
}
.article-feature {
  margin: 0 0 2rem;
  border-radius: 1.1rem;
  overflow: hidden;
  background: rgba(61, 52, 44, 0.08);
  border: 1px solid rgba(184, 149, 90, 0.16);
}
.article-feature img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-feature figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  border-top: 1px solid rgba(184, 149, 90, 0.14);
}

.article-prose {
  font-size: 1.065rem;
  line-height: 1.85;
  color: var(--espresso);
  max-width: 42rem;
}
.article-prose > *:first-child {
  margin-top: 0;
}
.article-prose p {
  margin: 0 0 1.25rem;
}
.article-prose h2,
.article-prose h3,
.article-prose h4 {
  font-family: var(--font-serif);
  color: var(--espresso);
  line-height: 1.25;
  margin: 2.1rem 0 0.85rem;
}
.article-prose h2 { font-size: 1.7rem; }
.article-prose h3 { font-size: 1.35rem; }
.article-prose ul,
.article-prose ol {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}
.article-prose li {
  margin: 0.4rem 0;
}
.article-prose a {
  color: var(--primary);
  text-underline-offset: 0.18em;
}
.article-prose blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--primary);
  background: rgba(184, 149, 90, 0.08);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--espresso);
}
.article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.85rem;
  margin: 1.5rem 0;
}

.article-footer-bar {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(184, 149, 90, 0.22);
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .article-footer-bar {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.article-tags,
.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.article-tags > span,
.article-share > span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-right: 0.25rem;
}
.article-tags a,
.article-share a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 149, 90, 0.28);
  color: var(--espresso);
  text-decoration: none;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.article-tags a:hover,
.article-share a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.article-aside {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 1024px) {
  .article-aside {
    position: sticky;
    top: 6.5rem;
  }
}
.article-aside-card {
  background: #fff;
  border: 1px solid rgba(184, 149, 90, 0.18);
  border-radius: 1.15rem;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 18px 40px rgba(61, 52, 44, 0.05);
}
.article-aside-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.article-aside-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--espresso);
}
.article-aside-cta p {
  margin: 0.75rem 0 1.15rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  font-size: 0.95rem;
}
.article-aside-cta .btn {
  width: 100%;
  justify-content: center;
}
.article-aside-link {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  color: var(--espresso);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.article-aside-link:hover {
  color: var(--primary);
}
.article-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.article-related-list a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(184, 149, 90, 0.14);
}
.article-related-list li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}
.article-related-list strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--espresso);
  font-weight: 600;
}
.article-related-list a:hover strong {
  color: var(--primary);
}
.article-related-list span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
.article-aside-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.article-aside-trust li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--espresso);
  font-size: 0.92rem;
  line-height: 1.45;
}
.article-aside-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}
.article-more {
  margin-top: 0.5rem;
}

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .service-detail {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}
.service-detail-media {
  border-radius: 1.35rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(184, 149, 90, 0.22), rgba(61, 52, 44, 0.28));
}
.service-detail-media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: middle;
}
.service-detail-content .section-label {
  display: inline-block;
}
.service-detail-content h2 {
  margin: 0.85rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--espresso);
  line-height: 1.2;
}
.service-detail-lead {
  margin: 1.1rem 0 0;
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 1.05rem;
}
.service-detail-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.service-detail-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--espresso);
  line-height: 1.5;
}
.service-detail-points svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--primary);
}
.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.service-detail-form {
  max-width: 42rem;
  margin: 2rem auto 0;
}
.service-detail-form .contact-form {
  background: var(--background, #fff);
  border: 1px solid rgba(184, 149, 90, 0.18);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
@media (min-width: 700px) {
  .service-detail-form .contact-form {
    padding: 2.25rem;
  }
}
