/* ============================================
   Depot Square Events — Redesign
   Inspired by modern event venue aesthetics
   ============================================ */

:root {
  --color-bg: #f7f4ef;
  --color-bg-dark: #1a1814;
  --color-bg-accent: #3d2e1f;
  --color-text: #2c2824;
  --color-text-light: #f7f4ef;
  --color-text-muted: #6b635a;
  --color-accent: #b8956a;
  --color-accent-hover: #a07d52;
  --color-border: rgba(44, 40, 36, 0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --side-padding: clamp(1.25rem, 4vw, 3.5rem);
  --content-max: 1440px;
  --header-height: 80px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease-out);
}

*, *::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: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---- Ambient fixed background ---- */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.ambient-bg__texture {
  position: absolute;
  inset: 0;
  background:
    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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #ebe6dc 0%, #f7f4ef 40%, #f0ebe3 70%, #e8e2d8 100%);
}

.ambient-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(184, 149, 106, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(61, 46, 31, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(184, 149, 106, 0.05) 0%, transparent 60%);
}

/* ---- Wide container — minimal side whitespace ---- */
.container-wide {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

/* ---- Typography ---- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-label--light { color: rgba(247, 244, 239, 0.6); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.section-title--light { color: var(--color-text-light); }

.section-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  max-width: 56ch;
}

.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section--accent {
  background: var(--color-bg-accent);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.section--accent::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 149, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(247, 244, 239, 0.4);
}

.btn--ghost:hover {
  border-color: var(--color-text-light);
  background: rgba(247, 244, 239, 0.08);
}

.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  transition: gap var(--transition);
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.link-arrow:hover { gap: 0.75rem; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(26, 24, 20, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--color-text-light);
}

.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.75);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--color-text-light); }

.nav__cta {
  padding: 0.6rem 1.25rem !important;
  background: var(--color-accent) !important;
  color: #fff !important;
  border-radius: 0;
}

.nav__cta:hover {
  background: var(--color-accent-hover) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 24, 20, 0.95) 0%, rgba(26, 24, 20, 0.4) 50%, rgba(26, 24, 20, 0.55) 100%),
    linear-gradient(to right, rgba(26, 24, 20, 0.3) 0%, transparent 50%, rgba(26, 24, 20, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 2rem);
  color: var(--color-text-light);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero__title-accent {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem 2rem;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero__highlights li {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  padding-left: 1rem;
  position: relative;
  opacity: 0.8;
}

.hero__highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--side-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 244, 239, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(247, 244, 239, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---- Stats ---- */
.stats {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
}

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about__image-stack {
  position: relative;
}

.about__image-stack img:first-child {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--color-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ---- Features ---- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  z-index: 1;
}

.feature-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 149, 106, 0.3);
}

.feature-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.feature-card:hover .feature-card__image img {
  transform: scale(1.05);
}

.feature-card__body {
  padding: 1.75rem;
}

.feature-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.feature-card__body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247, 244, 239, 0.6);
  line-height: 1.65;
}

/* ---- Amenities ---- */
.amenity-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.amenity-row:last-child { margin-bottom: 0; }

.amenity-row--reverse {
  direction: rtl;
}

.amenity-row--reverse > * {
  direction: ltr;
}

.amenity-row__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.amenity-row__content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.amenity-row__content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 45ch;
}

.amenity-row__media {
  overflow: hidden;
}

.amenity-row__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.amenity-row:hover .amenity-row__media img {
  transform: scale(1.03);
}

/* ---- Gallery ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), opacity var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

/* ---- Testimonial ---- */
.testimonial {
  text-align: center;
  background: transparent;
}

.testimonial__inner {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.testimonial__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
}

.testimonial__author {
  margin-top: 2rem;
}

.testimonial__name {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.testimonial__role {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ---- Mission ---- */
.mission__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mission__text {
  max-width: 65ch;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(247, 244, 239, 0.75);
  line-height: 1.8;
}

.mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.mission__pillar-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.mission__pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.mission__pillar p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247, 244, 239, 0.55);
  max-width: 28ch;
  margin-inline: auto;
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.contact__detail-value {
  font-size: 1.05rem;
  color: var(--color-text);
}

.contact__detail:hover .contact__detail-value {
  color: var(--color-accent);
}

.contact__form {
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.35rem;
  min-height: 1rem;
}

.form-success {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #27ae60;
  font-weight: 500;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(247, 244, 239, 0.6);
  padding-block: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.875rem;
  max-width: 35ch;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-content: start;
  justify-content: end;
}

.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--color-accent); }

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.lightbox[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission__pillars {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(26, 24, 20, 0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 0.9rem;
  }

  .about__grid,
  .contact__grid,
  .amenity-row {
    grid-template-columns: 1fr;
  }

  .amenity-row--reverse { direction: ltr; }

  .about__image-accent {
    left: auto;
    right: -1rem;
    bottom: -1.5rem;
    width: 45%;
  }

  .hero__scroll { display: none; }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-content: start;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
