/* ==========================================================================
   85 Main — Restaurant Website Styles
   Warm, dark, upscale but inviting. Destination dining, not corporate fine dining.
   ========================================================================== */

/* --- Google Fonts loaded in HTML head:
   Cormorant Garamond (300,400,500,600) — headings
   DM Sans (400,500) — body
--- */

:root {
  /* Colors — warm candlelight palette */
  --bg-primary: #0d0b08;
  --bg-secondary: #151210;
  --bg-tertiary: #1c1915;
  --bg-card: #1f1b17;
  --bg-card-hover: #262119;

  --text-primary: #f5efe6;
  --text-secondary: #b8a99a;
  --text-muted: #7a6e62;
  --text-dark: #0d0b08;

  --accent: #c8956c;
  --accent-hover: #d4a574;
  --accent-dark: #a67a52;
  --accent-glow: rgba(200, 149, 108, 0.2);

  --border: rgba(200, 149, 108, 0.15);
  --border-light: rgba(245, 239, 230, 0.08);
  --border-medium: rgba(245, 239, 230, 0.12);

  --overlay-dark: rgba(13, 11, 8, 0.7);
  --overlay-darker: rgba(13, 11, 8, 0.85);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-width: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Parallax */
  --parallax-y: 0px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 16px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

.text-accent { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* === Layout === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

.section--dark { background: var(--bg-primary); }
.section--medium { background: var(--bg-secondary); }
.section--light { background: var(--bg-tertiary); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-dark);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--text-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 8px 0;
  letter-spacing: 0.08em;
}

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

.btn--ghost::after {
  content: '→';
  transition: transform var(--transition-fast);
}

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

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.nav--solid {
  background: rgba(13, 11, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav__logo:hover {
  color: var(--accent);
}

.nav__logo span {
  color: var(--accent);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav__overlay--visible {
  display: block;
  opacity: 1;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--parallax-y));
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 11, 8, 0.4) 0%,
    rgba(13, 11, 8, 0.3) 40%,
    rgba(13, 11, 8, 0.7) 80%,
    rgba(13, 11, 8, 1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero__est {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.hero__cuisine {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === Story Section === */
.story {
  position: relative;
}

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

.story__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story__image:hover img {
  transform: scale(1.03);
}

.story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  pointer-events: none;
}

.story__text h2 {
  margin-bottom: 1.5rem;
}

.story__text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.story__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* === Menu Preview === */
.menu-preview__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.menu-preview__header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.menu-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.dish-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.dish-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.dish-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card__image img {
  transform: scale(1.05);
}

.dish-card__content {
  padding: 24px;
}

.dish-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.dish-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-preview__cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

/* === Social Proof / Acclaim === */
.acclaim {
  text-align: center;
  position: relative;
}

.acclaim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.acclaim__header {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.acclaim__header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 1rem auto 0;
}

.acclaim__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.stat {
  padding: 32px 16px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.stat:hover {
  border-color: var(--border);
  background: var(--bg-card);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.acclaim__quote {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
}

.acclaim__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.acclaim__quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

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

.events__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.events__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  pointer-events: none;
}

.events__text h2 {
  margin-bottom: 1.5rem;
}

.events__text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.events__features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.events__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.events__feature-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* === Newsletter === */
.newsletter {
  text-align: center;
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter__desc {
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 2rem;
}

.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter__form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 2px 0 0 2px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter__form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter__form input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter__form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.newsletter__form button:hover {
  background: var(--accent-hover);
}

.newsletter__message {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4rem;
}

.newsletter__message--success { color: #6bcb77; }
.newsletter__message--error { color: #e74c3c; }

/* === Footer === */
.footer {
  background: var(--bg-primary);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 60px;
}

.footer__brand {
  max-width: 300px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__brand-name span {
  color: var(--accent);
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col li a,
.footer__col li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__col li a:hover {
  color: var(--text-primary);
}

.footer__divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: var(--accent);
}

/* === Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* === Page Header (inner pages) === */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* === Menu Page === */
.menu-section {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  padding-left: 0.5rem;
}

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.menu-item__desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  padding-left: 2rem;
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

/* === Forms (Contact, Careers) === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a6e62' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__message {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4rem;
  text-align: center;
}

.form__message--success { color: #6bcb77; }
.form__message--error { color: #e74c3c; }

/* === Career Positions === */
.position-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.position-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.position-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.position-card__type {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.position-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .acclaim__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 1.5rem;
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-light);
    z-index: 1000;
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__cta {
    margin-top: 1rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__image {
    aspect-ratio: 16/9;
    order: -1;
  }

  .menu-preview__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .events__image {
    aspect-ratio: 16/9;
    order: -1;
  }

  .acclaim__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__form input[type="email"] {
    border-right: 1px solid var(--border);
    border-radius: 2px;
  }

  .newsletter__form button {
    border-radius: 2px;
    padding: 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__brand {
    max-width: 100%;
  }

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

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

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  .stat {
    padding: 24px 12px;
  }

  .stat__number {
    font-size: 2rem;
  }

  .hero__scroll {
    display: none;
  }
}

/* === Utility === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Analytics beacon */
.polsia-beacon {
  display: none;
}
