/* ═══════════════════════════════════════════════════════════
   Events by Faya — Main Stylesheet
   Aesthetic: Garden Luxe · Deep Forest · Warm Gold · Ivory
═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --deep-forest: #0a1b10;
  --forest: #122018;
  --forest-mid: #1e3425;
  --sage: #3d6b4f;
  --gold: #c4973a;
  --gold-light: #ddb96a;
  --gold-pale: #f3e6c4;
  --cream: #faf8f2;
  --warm-white: #fff9f2;
  --ivory: #f5f0e6;
  --blush: #e8c4b4;
  --text: #1a1a14;
  --text-muted: #6b6358;
  --text-light: #e8e0d4;
  --border: rgba(196, 151, 58, 0.2);
  --border-dark: rgba(196, 151, 58, 0.35);

  --font-display: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Raleway', sans-serif;

  --radius: 2px;
  --radius-lg: 6px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --section-gap: clamp(5rem, 10vw, 9rem);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  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; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Scroll bar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep-forest); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── Selection ─── */
::selection { background: var(--gold); color: var(--deep-forest); }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ─── Section base ─── */
.section {
  padding: var(--section-gap) 0;
}
.section--dark {
  background: var(--deep-forest);
  color: var(--text-light);
}
.section--cream {
  background: var(--ivory);
}
.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__label--light { color: var(--gold-light); }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--gold-light); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--deep-forest);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 151, 58, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--deep-forest);
}
.btn--sm { padding: 0.65rem 1.5rem; font-size: 0.72rem; }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════
   NAVIGATION
══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10, 27, 16, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(196, 151, 58, 0.15);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
}
.nav__logo-script {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-light);
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link:hover::after { color: var(--gold-light); width: 100%; }
.nav__link--cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
}
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--deep-forest);
}
.nav__link--cta::after { display: none; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold-light);
  transition: all var(--transition);
}

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--deep-forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
  text-align: center;
}

/* subtle noise texture overlay */
.hero::before {
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(196,151,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__botanicals {
  position: absolute; inset: 0;
  pointer-events: none;
}
.botanical {
  position: absolute;
  width: clamp(180px, 30vw, 380px);
}
.botanical--tl { top: 0; left: 0; }
.botanical--br { bottom: 0; right: 0; }
.botanical--tr { top: 0; right: 0; width: clamp(120px, 18vw, 240px); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeUp 1s ease both;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: fadeUp 1s 0.15s ease both;
}
.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.25s ease both;
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s 0.35s ease both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.45s ease both;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s 1s ease both;
}
.hero__scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(196,151,58,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════
   MARQUEE
══════════════════════════ */
.marquee-wrap {
  background: var(--forest-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.marquee span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 0;
  flex-shrink: 0;
}

/* ══════════════════════════
   ABOUT
══════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about__visual { position: relative; }
.about__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  max-height: 600px;
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__img-wrap:hover img { transform: scale(1.04); }
.about__img-accent {
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}
.about__stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--deep-forest);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.about__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
.about__stat-plus {
  font-size: 1.8rem;
  vertical-align: super;
}
.about__stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.8;
}
.about__text {
  padding-left: clamp(0rem, 2vw, 2rem);
}
.about__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about__body strong { color: var(--text); font-weight: 600; }
.about__values {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about__values li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about__value-icon {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ══════════════════════════
   SERVICES
══════════════════════════ */
.services__intro {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  margin-top: 3.5rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  padding: 2.5rem 2rem;
  background: var(--forest);
  border: 0;
  transition: background var(--transition);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1.5px;
  background: var(--border-dark);
}
.service-card:last-child::after,
.service-card:nth-last-child(-n+2)::after { display: none; }
.service-card:hover { background: var(--forest-mid); }
.service-card__icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-card__list li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  padding-left: 1rem;
  position: relative;
}
.service-card__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.15em;
}

/* ══════════════════════════
   PROCESS
══════════════════════════ */
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  counter-reset: none;
}
.process__step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
}
.process__arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 3rem;
  flex: none;
  font-family: var(--font-serif);
}
.process__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}
.process__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.process__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════
   GALLERY
══════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  margin-bottom: 3rem;
}
.gallery__item {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,27,16,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}
.gallery__cta {
  text-align: center;
  padding: 0 1rem;
}
.gallery__cta-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.gallery__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════
   EVENTS SERVED / OCCASIONS
══════════════════════════ */
.occasions__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.occasion-tag {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--warm-white);
  transition: all var(--transition);
}
.occasion-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-forest);
  transform: translateY(-2px);
}

/* ══════════════════════════
   FAQ
══════════════════════════ */
.faq__container { max-width: 760px; }
.faq__list {
  border-top: 1px solid var(--border-dark);
}
.faq__item {
  border-bottom: 1px solid var(--border-dark);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--gold); }
.faq__question[aria-expanded="true"] { color: var(--gold); }
.faq__icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq__answer p { margin: 0; }

/* ══════════════════════════
   CONTACT
══════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact__body {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.contact__details a {
  color: var(--gold-light);
  transition: color var(--transition);
}
.contact__details a:hover { color: var(--gold); }
.contact__detail-icon { font-size: 1rem; }
.contact__botanical {
  width: 180px;
  margin-top: 2rem;
  opacity: 0.6;
}

/* Form */
.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form__group--full { margin-bottom: 1.25rem; }
.form__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.form__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,151,58,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.form__input::placeholder { color: rgba(255,255,255,0.3); }
.form__input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form__select { cursor: pointer; }
.form__select option {
  background: var(--forest);
  color: var(--cream);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.05em;
}
.form__success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(196,151,58,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.form__success[hidden] { display: none; }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
  background: var(--forest);
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}
.footer__brand { text-align: left; }
.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
.footer__nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}
.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}
.footer__seo-text {
  font-size: 0.62rem !important;
  opacity: 0.5;
  margin-top: 0.25rem;
}

/* ══════════════════════════
   KEYFRAMES
══════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 480px; margin: 0 auto; }
  .about__text { padding-left: 0; }
  .about__stat-card { right: 0; }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery__item--wide { grid-column: span 1; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { text-align: center; }
  .footer__nav ul { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer__social { align-items: center; flex-direction: row; justify-content: center; }

  .process__arrow { display: none; }
  .process__steps { gap: 0; }
  .process__step { min-width: 180px; }
}

@media (max-width: 680px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    bottom: 0;
    width: min(280px, 85vw);
    background: var(--deep-forest);
    border-left: 1px solid var(--border-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    z-index: 99;
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 0.85rem; }
  .nav__hamburger { display: flex; z-index: 101; }

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

  .services__grid { grid-template-columns: 1fr; gap: 1.5px; }

  .gallery__grid { grid-template-columns: 1fr; gap: 4px; }
  .gallery__item--tall,
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
