/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colours */
  --bg:            #0F0F0F;
  --bg-subtle:     #141414;
  --bg-card:       #1A1A1A;
  --bg-elevated:   #222222;
  --border:        rgba(255 255 255 / 0.07);
  --border-accent: rgba(232 131 42 / 0.35);

  --text-primary:   #F5ECD7;
  --text-secondary: #9A8F7F;
  --text-muted:     #5A5248;

  --accent:       #E8832A;
  --accent-light: #F09840;
  --accent-dark:  #C06818;
  --accent-glow:  rgba(232 131 42 / 0.18);

  /* Typography */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:    clamp(5rem, 10vw, 9rem);
  --container-px:  clamp(1.25rem, 5vw, 3rem);
  --container-max: 1280px;

  /* Shape */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Motion */
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:     0.4s;
  --dur-lg:  0.8s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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-family: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section { padding-block: var(--section-py); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow--light { color: var(--accent-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.13;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

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

.section-title--light { color: var(--text-primary); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.8;
}

.section-desc--light { color: rgba(245 236 215 / 0.72); }

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-desc { margin-inline: auto; }

.section-header--light .section-title { color: var(--text-primary); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease),
              color     var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-fire {
  background: var(--accent);
  color: #fff;
}

.btn-fire:hover,
.btn-fire:focus-visible {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255 255 255 / 0.22);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   FOCUS (accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--dur-lg) var(--ease),
              transform var(--dur-lg) var(--ease);
}

.reveal      { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right{ transform: translateX(30px); }

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 90;
  padding-block: 1.25rem;
  transition: background var(--dur) var(--ease),
              padding    var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(10 10 10 / 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.875rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--dur);
  z-index: 91;
}

.nav__brand:hover { opacity: 0.85; }

.nav__logo-img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  transition: opacity var(--dur);
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245 236 215 / 0.72);
  position: relative;
  transition: color var(--dur);
}

.nav__link::after {
  content: '';
  position: absolute;
  inset-block-end: -3px;
  inset-inline-start: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible { color: var(--text-primary); }
.nav__link:hover::after  { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--r-sm);
  transition: background var(--dur), transform var(--dur);
}

.nav__cta::after { display: none !important; }

.nav__cta:hover  {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  z-index: 91;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Dim overlay for mobile nav */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0 0 0 / 0.6);
  z-index: 88;
  backdrop-filter: blur(2px);
}

.nav__overlay.active { display: block; }

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

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(10 8 5 / 0.55) 0%, rgba(10 8 5 / 0.2) 100%),
    linear-gradient(to bottom, rgba(10 8 5 / 0.4)  0%, rgba(10 8 5 / 0.75) 100%);
}

.hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--container-px);
  padding-block: 6rem 8rem;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.3s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0 0 0 / 0.45);
}

.hero__headline em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(245 236 215 / 0.8);
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

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

/* Scroll indicator */
.hero__scroll-hint {
  position: absolute;
  inset-block-end: 2.5rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.8s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero__scroll-hint span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245 236 215 / 0.45);
}

.hero__scroll-line {
  width: 1.5px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(245 236 215 / 0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.br-lg { display: none; }
@media (min-width: 640px) { .br-lg { display: block; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--bg-subtle);
  border-block: 1px solid var(--border);
  padding-block: 1.375rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust::-webkit-scrollbar { display: none; }

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  min-width: max-content;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust__icon {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust__sep {
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }

.about__grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
  }
}

.about__visual { position: relative; }

.about__img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 32px 80px rgba(0 0 0 / 0.55);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.about__img-frame:hover .about__img { transform: scale(1.04); }

.about__badge {
  position: absolute;
  inset-block-end: -1.5rem;
  inset-inline-end: -0.75rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(232 131 42 / 0.45);
}

.about__badge-since {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255 255 255 / 0.85);
}

.about__badge-year {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.about__content { padding-block-start: 1rem; }

.about__para {
  color: var(--text-secondary);
  margin-bottom: 1.375rem;
  line-height: 1.85;
}

.about__para strong { color: var(--text-primary); font-weight: 600; }

.about__nums {
  display: flex;
  gap: 2.5rem;
  margin-block-start: 2.5rem;
  padding-block-start: 2.5rem;
  border-block-start: 1px solid var(--border);
}

.about__num {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about__num strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about__num span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--bg-subtle); }

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 600px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .menu__grid { grid-template-columns: repeat(3, 1fr); } }

.pizza-card {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}

.pizza-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.pizza-card:hover { background: var(--bg-elevated); }
.pizza-card:hover::before { opacity: 1; }

.pizza-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.pizza-card__num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  transition: color var(--dur);
  user-select: none;
}

.pizza-card:hover .pizza-card__num { color: rgba(232 131 42 / 0.2); }

.pizza-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232 131 42 / 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.pizza-card__name {
  font-family: var(--serif);
  font-size: 1.4375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.pizza-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pizza-card__line {
  margin-block-start: 1.5rem;
  height: 2px;
  width: 36px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.pizza-card:hover .pizza-card__line { transform: scaleX(1); }

.menu__footnote {
  text-align: center;
  margin-block-start: 2.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.menu__footnote a {
  color: var(--accent);
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--dur);
}

.menu__footnote a:hover { text-decoration-color: var(--accent); }

/* ============================================================
   EVENTS
   ============================================================ */
.events {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
}

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

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

.events__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10 8 5 / 0.94) 0%, rgba(10 8 5 / 0.87) 100%);
}

.events__inner {
  position: relative;
  z-index: 2;
}

.events__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) { .events__grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  background: rgba(255 255 255 / 0.04);
  border: 1px solid rgba(255 255 255 / 0.07);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--dur), background var(--dur);
}

.event-card:hover {
  border-color: var(--border-accent);
  background: rgba(232 131 42 / 0.06);
}

.event-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232 131 42 / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background var(--dur);
}

.event-card:hover .event-card__icon { background: rgba(232 131 42 / 0.22); }

.event-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.event-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.event-card p {
  font-size: 0.9375rem;
  color: rgba(245 236 215 / 0.62);
  line-height: 1.75;
}

.events__cta { text-align: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  display: block;
  transition: transform 0.65s var(--ease);
}

.gallery__item--tall img { aspect-ratio: auto; height: 100%; }
.gallery__item--wide img { aspect-ratio: 16 / 9; }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10 8 5 / 0);
  transition: background var(--dur);
}

.gallery__item:hover img    { transform: scale(1.07); }
.gallery__item:hover::after { background: rgba(10 8 5 / 0.22); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-subtle); }

.contact__grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
  }
}

.contact__desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--dur), background var(--dur);
}

.contact__detail:hover {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(232 131 42 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg { width: 20px; height: 20px; color: var(--accent); }

.contact__detail > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact__detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__detail-val {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Social links */
.contact__social {
  display: flex;
  gap: 0.625rem;
  margin-block-start: 0.25rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur), background var(--dur);
}

.social-link svg {
  width: 17px;
  height: 17px;
  color: var(--text-secondary);
  transition: color var(--dur);
}

.social-link:hover {
  border-color: var(--accent);
  background: rgba(232 131 42 / 0.08);
}

.social-link:hover svg { color: var(--accent); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A8F7F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--bg-elevated); color: var(--text-primary); }

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-group input[type="date"] { color-scheme: dark; }

.contact-form > .btn { margin-block-start: 0.5rem; }

.form-note {
  text-align: center;
  margin-block-start: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-success {
  text-align: center;
  margin-block-start: 1rem;
  font-size: 0.9375rem;
  color: #5fcea8;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  border-block-start: 1px solid var(--border);
  padding-block: 4rem 2rem;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__certs span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232 131 42 / 0.1);
  padding: 0.275rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(232 131 42 / 0.2);
}

.footer__nav h3,
.footer__contact h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.footer__nav a,
.footer__contact a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--dur);
}

.footer__nav a:hover,
.footer__contact a:hover { color: var(--accent); }

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block-start: 2rem;
  border-block-start: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   MOBILE NAV  (≤ 768 px)
   ============================================================ */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    width: min(320px, 82vw);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    background: rgba(10 10 10 / 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-inline-start: 1px solid var(--border);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 89;
  }

  .nav__menu.open { transform: none; }

  .nav__link {
    font-size: 1.5rem;
    font-family: var(--serif);
    color: var(--text-primary);
    padding-block: 1rem;
    width: 100%;
    border-block-end: 1px solid var(--border);
  }

  .nav__link::after { display: none; }

  .nav__cta {
    margin-block-start: 2rem;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--sans);
    padding-block: 1rem;
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: var(--r-sm);
    text-align: center;
  }
}

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