/* ═══════════════════════════════════════════════════
   Altınşiş Restaurant — Design System v3
   Palette: Gold · Charcoal · Cream · Warm Neutrals
   ═══════════════════════════════════════════════════ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --gold:        #C8A255;
  --gold-light:  #E2C97E;
  --gold-dark:   #A07D3A;
  --charcoal:    #1A1A1A;
  --charcoal-90: #222222;
  --charcoal-80: #2C2C2C;
  --cream:       #FAF6EE;
  --cream-dark:  #F0E8D8;
  --warm-gray:   #8A8070;
  --warm-white:  #FEFCF8;
  --overlay:     rgba(18, 14, 8, 0.72);
  --whatsapp:    #25D366;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);

  --radius:   12px;
  --radius-lg: 20px;

  --max-w: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--charcoal);
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}


/* ════════════════════════════════════════════════════
   § PRELOADER
   ════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.preloader--done {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preloader__icon {
  font-size: 1.8rem;
  color: var(--gold);
  animation: preloaderPulse 1.2s var(--ease-smooth) infinite;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.2); }
}


/* ════════════════════════════════════════════════════
   § SCROLL-REVEAL
   ════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.36s; }


/* ════════════════════════════════════════════════════
   § NAVIGATION
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.5s var(--ease-out),
              padding 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.nav__brand:hover { opacity: 0.85; }

.nav__brand-icon {
  font-size: 0.7em;
  opacity: 0.6;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-light);
}

.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links .btn--nav::after { display: none; }
.btn--nav { padding: 10px 24px !important; font-size: 0.78rem !important; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}


/* ════════════════════════════════════════════════════
   § HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 6, 0.55) 0%,
    rgba(18, 14, 8, 0.78) 60%,
    rgba(18, 14, 8, 0.92) 100%
  );
  z-index: 1;
}

/* ── Floating particles ── */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s var(--ease-smooth) infinite;
}

.particle--1 { left: 15%; bottom: 20%; animation-delay: 0s; }
.particle--2 { left: 70%; bottom: 30%; animation-delay: 2.5s; width: 3px; height: 3px; }
.particle--3 { left: 45%; bottom: 15%; animation-delay: 5s; width: 2px; height: 2px; }

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.3); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border: 1px solid rgba(200, 162, 85, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 0.8s both;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              background 0.3s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-light));
  box-shadow: 0 8px 30px rgba(200,162,85,0.4);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.btn svg { width: 16px; height: 16px; }


/* ════════════════════════════════════════════════════
   § STATS COUNTER
   ════════════════════════════════════════════════════ */
.stats {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 8vw, 80px);
  border-top: 1px solid rgba(200, 162, 85, 0.3);
  padding-top: clamp(40px, 6vw, 64px);
}

.stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.stats__number-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  font-weight: 400;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
  transition: -webkit-text-stroke-color 0.6s var(--ease-out);
}

.stats__item:hover .stats__number {
  -webkit-text-stroke-color: var(--gold);
}

.stats__suffix {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 0.75;
  margin-left: 8px;
}

.stats__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  position: relative;
  padding-top: 20px;
}

.stats__label::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}

.stats__item:hover .stats__label::before {
  width: 64px;
}


/* ════════════════════════════════════════════════════
   § DIVIDER
   ════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
}

.section-divider__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-divider__icon {
  color: var(--gold);
  font-size: 1rem;
  animation: pulse 3s var(--ease-smooth) infinite;
}

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


/* ════════════════════════════════════════════════════
   § ABOUT / INFO SECTION
   ════════════════════════════════════════════════════ */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--cream-dark), transparent);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about__image-wrapper:hover img {
  transform: scale(1.04);
}

.about__image-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: -1;
}

.about__image-tag {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(200,162,85,0.3);
  text-align: center;
  line-height: 1.2;
}

.about__image-tag span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.about__image-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}

.about__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about__heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.about__text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── Info Cards ── */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  padding: 24px;
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid rgba(200,162,85,0.12);
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: rgba(200,162,85,0.3);
}

.info-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  margin-bottom: 14px;
}

.info-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.info-card__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.info-card__note {
  font-size: 0.82rem;
  color: var(--gold-dark);
  margin-top: 4px;
  font-weight: 500;
}

/* Clickable info cards */
.info-card--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.info-card--link:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(200,162,85,0.12);
}

.info-card--link .info-card__note {
  transition: letter-spacing 0.3s var(--ease-out), color 0.3s;
}

.info-card--link:hover .info-card__note {
  letter-spacing: 0.04em;
  color: var(--gold);
}





/* ════════════════════════════════════════════════════
   § CONTACT
   ════════════════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,162,85,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  position: relative;
}

.contact__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  position: relative;
}

/* ── Contact Tiles ── */
.contact-tiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-tile {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--charcoal-80);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s var(--ease-out),
              background 0.3s;
  position: relative;
}

.contact-tile:hover {
  border-color: rgba(200,162,85,0.3);
  transform: translateY(-2px);
  background: var(--charcoal-90);
}

.contact-tile--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-tile__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,162,85,0.12);
  border-radius: 12px;
  transition: background 0.3s;
}

.contact-tile:hover .contact-tile__icon {
  background: rgba(200,162,85,0.2);
}

.contact-tile__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-tile__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.contact-tile__value {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.contact-tile__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.contact-tile:hover .contact-tile__arrow {
  opacity: 0.7;
  transform: translateY(-50%) translateX(4px);
}

/* ── Map (Dark themed) ── */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
}

.contact__map:hover {
  border-color: rgba(200,162,85,0.2);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.3) brightness(0.8) contrast(1.1);
  transition: filter 0.5s;
}

.contact__map:hover iframe {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.5) brightness(0.85) contrast(1.1);
}


/* ════════════════════════════════════════════════════
   § FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  padding: 32px 0 20px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__agency {
  text-align: center;
  padding: 16px 0 4px;
}

.footer__agency a {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  transition: color 0.3s;
}

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

.footer__agency strong {
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer__agency a:hover strong {
  color: var(--gold-light);
}





/* ════════════════════════════════════════════════════
   § SCROLL TO TOP
   ════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(200,162,85,0.3);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s, visibility 0.4s,
              transform 0.4s var(--ease-out),
              background 0.3s, border-color 0.3s;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}


/* ════════════════════════════════════════════════════
   § SCROLL INDICATOR
   ════════════════════════════════════════════════════ */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s var(--ease-out) 1.2s both;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollDot 2s var(--ease-smooth) infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 8px; }
  50%      { opacity: 0.3; top: 20px; }
}

.scroll-indicator__text {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}


/* ════════════════════════════════════════════════════
   § RESPONSIVE
   ════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

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

  .contact__map {
    aspect-ratio: 16 / 9;
  }

  .stats__grid {
    gap: clamp(20px, 4vw, 40px);
  }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 99;
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
  }

  .nav__toggle {
    display: block;
    z-index: 101;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) { opacity: 0; }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .info-cards { grid-template-columns: 1fr; }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__particles { display: none; }
  .contact-tile__arrow { display: none; }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    border-top: none;
    padding-top: 0;
  }
  
  .stats__item {
    border-top: 1px solid rgba(200, 162, 85, 0.3);
    padding-top: 32px;
  }



  .scroll-top {
    bottom: 82px;
    right: 24px;
    width: 38px;
    height: 38px;
  }
}


/* ════════════════════════════════════════════════════
   § REDUCED MOTION
   ════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__bg img {
    transform: scale(1) !important;
  }

  .particle { display: none; }
}
