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

:root {
  --black: #FDFBF8;
  --dark: #ECEAE5;
  --card: #eae8e4;
  --border: #d1cfc9;
  --gold: #9e7c2e;
  --gold2: #876a22;
  --cream: #2a2a2a;
  --muted: #5e5c57;
  --white: #111111;
  --svc-num: #c5c2bb;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
  --black: #080808;
  --dark: #111111;
  --card: #161616;
  --border: #252525;
  --gold: #C9A96E;
  --gold2: #e0c48a;
  --cream: #f5f0e8;
  --muted: #7a7570;
  --white: #ffffff;
  --svc-num: #252525;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── SELECTION ── */
::selection {
  background: var(--gold);
  color: #fff;
}

/* ── CURSOR (sadece mouse cihazlarda) ── */
@media (pointer: fine) {
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .1s var(--ease), width .3s, height .3s, opacity .3s;
    opacity: 0;
  }

  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .15s var(--ease), width .3s, height .3s, opacity .3s, background-color .3s;
    opacity: 0;
  }
}

@media (pointer: coarse) {

  .cursor,
  .cursor-ring {
    display: none !important;
  }
}

.touch-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}

.touch-ripple.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .3s;
  cursor: pointer;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s;
}

nav.scrolled {
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
}

:root nav.scrolled {
  background: rgba(255, 255, 255, .92);
}

[data-theme="dark"] nav.scrolled {
  background: rgba(8, 8, 8, .92);
}

/* ── SVG LOGO & ICON COLOR OVERRIDES ── */
.nav-logo svg rect,
.footer-brand svg rect,
.about-img-inner svg rect {
  stroke: var(--gold);
}

.nav-logo svg text[fill="#C9A96E"],
.footer-brand svg text[fill="#C9A96E"],
.about-img-inner svg text[fill="#C9A96E"] {
  fill: var(--gold);
}

.nav-logo svg line,
.footer-brand svg line,
.about-img-inner svg line {
  stroke: var(--gold);
}

.nav-logo svg text[fill="#7a7570"],
.footer-brand svg text[fill="#7a7570"],
.about-img-inner svg text[fill="#7a7570"] {
  fill: var(--muted);
}

.contact-icon svg path,
.contact-icon svg polyline,
.contact-icon svg rect,
.contact-icon svg circle {
  stroke: var(--gold);
}

.contact-icon svg circle[fill="#C9A96E"] {
  fill: var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.nav-logo svg {
  width: 44px;
  height: 44px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text span:first-child {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo-text span:last-child {
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

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

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: #fff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream);
  transition: .3s;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 24px;
  transition: border-color .3s, background .3s;
  margin-left: 12px;
}

.theme-toggle:hover {
  border-color: var(--gold);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: opacity .3s;
}

.theme-toggle .icon-sun {
  display: block;
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.theme-toggle-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}

@media (max-width: 900px) {
  .theme-toggle {
    padding: 6px 12px;
    margin-left: 0;
  }

  .theme-toggle-label {
    display: none;
  }
}

/* ── PAGES ── */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ── HERO 2026 ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 160px 60px 120px;
  background: var(--black);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  right: -10%;
  height: 70%;
  background: radial-gradient(ellipse at 60% 40%,
      rgba(201, 169, 110, .07) 0%,
      rgba(201, 169, 110, .03) 40%,
      transparent 70%);
  pointer-events: none;
}

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

[data-theme="dark"] .hero::after {
  opacity: .5;
}

.hero-meta {
  position: absolute;
  top: 108px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.hero-meta-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-meta-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-meta-year {
  font-family: var(--ff-serif);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  font-style: italic;
}

.hero-headline {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-line {
  display: block;
  line-height: .92;
  clip-path: inset(0 0 -35% 0);
}

.hero-line-inner {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.02em;
  transform: translateY(110%);
  animation: lineReveal .9s var(--ease) forwards;
}

.hero-line:nth-child(1) .hero-line-inner {
  animation-delay: .1s;
  font-size: clamp(72px, 11vw, 160px);
}

.hero-line:nth-child(2) .hero-line-inner {
  animation-delay: .22s;
  font-size: clamp(68px, 10.5vw, 152px);
  font-style: italic;
  color: var(--gold);
  padding-left: clamp(40px, 8vw, 140px);
}

.hero-line:nth-child(3) .hero-line-inner {
  animation-delay: .34s;
  font-size: clamp(72px, 11vw, 160px);
  padding-left: clamp(80px, 16vw, 280px);
}

@keyframes lineReveal {
  to {
    transform: translateY(0);
  }
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .6s forwards;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 380px;
  letter-spacing: .01em;
}

.hero-stats-row {
  display: flex;
  gap: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.stat {
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--gold);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color .3s;
  background: none;
  border: none;
}

.btn-ghost:hover {
  color: var(--gold);
}

.btn-ghost svg {
  transition: transform .3s;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .9s forwards;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: var(--border);
  display: block;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 140px 24px 48px;
  }

  .hero-meta {
    left: 24px;
    right: 24px;
    top: 96px;
  }

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

  .hero-stats-row {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .hero-scroll {
    display: none;
  }
}

/* ── SECTIONS ── */
section {
  padding: 120px 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── SERVICES ── */
.services-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--dark);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background .4s, box-shadow .4s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:hover {
  background: var(--card);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

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

.service-num {
  font-family: var(--ff-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--svc-num);
  line-height: 1;
  margin-bottom: 28px;
  transition: color .4s;
}

.service-card:hover .service-num {
  color: var(--gold);
  opacity: .18;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon svg {
  stroke: var(--gold);
}

.service-name {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.service-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 140px 60px;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--border);
  z-index: 1;
}

.about-img-inner {
  width: 80%;
  height: 80%;
  background: linear-gradient(160deg, var(--card), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .8s cubic-bezier(.19, 1, .22, 1);
}

.about-img-frame:hover .about-img-inner {
  transform: scale(1.05);
}

[data-theme="dark"] .about-img-inner {
  background: linear-gradient(160deg, #181613, #0a0a0a);
}

.about-logo-svg {
  opacity: .6;
}

[data-theme="dark"] .about-logo-svg {
  opacity: .2;
}

.about-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

.about-badge span:first-child {
  font-family: var(--ff-serif);
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.about-badge span:last-child {
  font-size: 8px;
  letter-spacing: .2em;
  color: #fff;
  text-transform: uppercase;
}

.about-body {
  font-size: 19px;
  color: var(--muted);
  line-height: 2;
  margin: 36px 0 48px;
}

.about-body strong {
  color: var(--cream);
  font-weight: 400;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.value-item {
  background: var(--dark);
  padding: 28px 24px;
}

.value-item h4 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PRICE LIST PAGE ── */
.price-hero {
  padding: 180px 60px 80px;
  text-align: center;
}

.price-hero .section-tag {
  justify-content: center;
}

.price-hero .section-tag::before {
  display: none;
}

.price-hero .section-title {
  font-size: clamp(44px, 5vw, 72px);
}

.price-hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 24px auto 0;
  line-height: 1.9;
}

.price-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 60px 0;
}

.price-divider span {
  width: 80px;
  height: 1px;
  background: var(--border);
  display: block;
}

.price-divider svg {
  stroke: var(--gold);
}

.price-categories {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 60px 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.price-category h3 {
  font-family: var(--ff-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .05em;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-category h3::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.price-row:hover {
  border-bottom-color: var(--gold);
}

.price-row:last-child {
  border-bottom: none;
}

.price-item-name {
  font-size: 19px;
  color: var(--cream);
  letter-spacing: .02em;
}

.price-item-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: .01em;
}

.price-item-price {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  padding-left: 24px;
}

.price-note {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 60px 80px;
}

.price-note-inner {
  border: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.price-note-inner svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-note-inner p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 100px;
}

.contact-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-items {
  margin: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--gold);
}

.contact-info-item h4 {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 19px;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.6;
  transition: color .3s;
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-hours {
  border: 1px solid var(--border);
  padding: 32px;
}

.contact-hours h4 {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--muted);
}

.hours-row span:last-child {
  color: var(--gold);
}

.contact-right {
  background: var(--card);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-title {
  font-family: var(--ff-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--black);
  color: var(--cream);
}

.form-group textarea {
  resize: none;
  height: 100px;
}

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

.form-submit {
  margin-top: 16px;
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 18px;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: background .3s, transform .2s;
}

.form-submit:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* ── MAP ── */
.map-section {
  padding: 0;
}

.map-frame {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(1) contrast(.9);
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  transition: border-color .3s, color .3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
  cursor: pointer;
}

.footer-col ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 24px;
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand .nav-logo {
    justify-content: center;
    margin: 0 auto;
  }
  .social-links {
    justify-content: center;
  }
  .footer-col h4 {
    margin-bottom: 20px;
  }
  .footer-col ul {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
  }
}

.footer-bottom p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
}

.footer-bottom span {
  color: var(--gold);
}

/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  background: var(--dark);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-size: 14px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--dark);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-serif);
  font-size: 280px;
  font-weight: 300;
  color: var(--gold);
  opacity: .06;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 860px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

/* ── GOOGLE REVIEWS ── */
section.google-reviews-section {
  padding: 80px 0 !important;
  background: var(--dark);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  padding: 0 40px;
}

.google-icon {
  flex-shrink: 0;
}

.reviews-rating {
  text-align: left;
}

.reviews-score {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.reviews-stars {
  color: #FBBC05;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 4px 0 2px;
}

.reviews-count {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* wrapper = scroll container */
.reviews-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 40px;
  scrollbar-width: none;
  padding: 8px 0 16px;
  cursor: grab;
}

.reviews-wrapper:active {
  cursor: grabbing;
}

.reviews-wrapper::-webkit-scrollbar {
  display: none;
}

/* track = flex row, wider than viewport */
.reviews-track {
  display: inline-flex;
  gap: 20px;
  padding: 0 40px;
}

/* card */
.review-card {
  width: calc((100vw - 120px) / 3);
  min-width: 280px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px 24px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: .1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.review-card:first-child {
  margin-left: 40px;
}

.review-card:last-child {
  margin-right: 40px;
}

.review-text.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.review-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.review-more {
  background: none;
  border: none;
  padding: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  margin-top: -4px;
  align-self: flex-start;
  transition: opacity .3s;
}

.review-more:hover {
  opacity: .7;
}

/* Review Navigation Arrows */
.reviews-container {
  position: relative;
  max-width: 100vw;
  margin: 0 auto;
}

.reviews-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background .3s, color .3s, transform .2s, border-color .3s;
}

.reviews-nav:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.reviews-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.reviews-nav.prev {
  left: 24px;
}

.reviews-nav.next {
  right: 24px;
}

@media (max-width: 900px) {
  .reviews-nav {
    width: 36px;
    height: 36px;
  }

  .reviews-nav.prev {
    left: 8px;
  }

  .reviews-nav.next {
    right: 8px;
  }
}

/* card inner */
.review-card-stars {
  color: #FBBC05;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.review-name {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .03em;
}

.review-date {
  font-family: var(--ff-sans);
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: .02em;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    padding: 10px;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse-whatsapp 2s infinite;
}

.review-source {
  font-family: var(--ff-sans);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* cta */
.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 40px;
  padding: 0 40px;
  transition: opacity .3s;
}

.reviews-cta:hover {
  opacity: .7;
}

/* ── DARK MAP ── */
[data-theme="dark"] .map-frame {
  filter: grayscale(1) invert(1) contrast(.8);
}

/* ── MOBILE ── */
@media (max-width: 1280px) {
  .review-card {
    width: calc((100vw - 100px) / 2.3);
  }
}

@media (max-width: 768px) {
  .reviews-track {
    padding: 0 20px;
    gap: 14px;
  }

  .review-card {
    width: calc(100vw - 60px);
    min-width: unset;
    padding: 24px 20px 20px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 24px 24px;
  }

  nav.scrolled {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 80px 24px;
  }

  section.google-reviews-section {
    padding: 48px 0 !important;
  }

  .reviews-header {
    gap: 12px;
    padding: 0 24px;
  }

  .reviews-score {
    font-size: 26px;
  }

  .reviews-cta {
    padding: 0 24px;
    margin-top: 28px;
  }

  .reviews-nav {
    display: none !important;
  }

  .reviews-wrapper {
    overflow-x: visible;
    padding: 0 24px;
    cursor: default;
  }

  .reviews-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  .review-card {
    width: 100% !important;
    min-width: unset !important;
    margin: 0 !important;
    padding: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }

  .about-badge {
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .price-hero {
    padding: 140px 24px 60px;
  }

  .price-categories {
    padding: 0 24px 80px;
  }

  .price-note {
    padding: 0 24px 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 80px 24px 48px;
  }

  .contact-right {
    padding: 48px 24px 80px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .footer-brand, .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-col ul {
    align-items: center;
  }

  footer {
    padding: 48px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── APPOINTMENT SYSTEM ── */
.appt-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 40px 120px;
}

.appt-header {
  text-align: center;
  margin-bottom: 80px;
}

.appt-stepper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 32px;
  opacity: 1;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.step.disabled {
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(1);
}

.step-num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.selection-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  color: var(--cream);
}

.selection-item:hover {
  border-color: var(--gold);
  background: var(--dark);
  transform: translateY(-2px);
}

.selection-item.selected {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.selection-item.selected small {
  color: rgba(255, 255, 255, 0.8);
}

.selection-item.busy {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--border);
  text-decoration: line-through;
}

.selection-item small {
  font-size: 13px;
  color: var(--muted);
}

.custom-date-input {
  width: 100%;
  max-width: 300px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 16px;
  outline: none;
  cursor: pointer;
}

.custom-date-input:focus {
  border-color: var(--gold);
}

#finalForm {
  display: grid;
  gap: 20px;
  max-width: 500px;
}

@media (max-width: 600px) {
  .appt-container {
    padding: 120px 24px 80px;
  }

  .step {
    gap: 16px;
  }

  .step-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-title {
    font-size: 22px;
  }

  .selection-grid {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile Override Fix */
  .footer-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 40px !important;
  }
  .footer-brand, .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-col ul {
    align-items: center !important;
  }
}