/* ============================================
   FORNI D'ORO – Central Stylesheet
   Aesthetic: Rustic-Modern Editorial
   Palette: Deep Charcoal, Warm Orange, Off-White, Cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500&family=Bebas+Neue&display=swap');

/* ─── CSS VARIABLES ─────────────────────────── */
:root {
  --orange:      #E8510A;
  --orange-light:#F97316;
  --orange-glow: rgba(232, 81, 10, 0.25);
  --charcoal:    #1A1510;
  --charcoal-mid:#2E2520;
  --cream:       #FDF6EC;
  --warm-white:  #FAF4E8;
  --muted:       #8C7B68;
  --border:      rgba(232, 81, 10, 0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Bebas Neue', Impact, sans-serif;

  --nav-h: 80px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--muted); }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(26, 21, 16, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(26, 21, 16, 0.92);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(253, 246, 236, 0.75);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px var(--orange-glow) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE NAV ─────────────────────────────── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(26, 21, 16, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: rgba(253, 246, 236, 0.85);
  }

  .nav-cta {
    margin: 0.5rem 2rem 0;
    text-align: center;
    border-radius: 8px;
  }
}

/* ─── HERO (index) ───────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 6% 8%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 21, 16, 0.25) 0%,
    rgba(26, 21, 16, 0.15) 40%,
    rgba(26, 21, 16, 0.72) 80%,
    rgba(26, 21, 16, 0.90) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(253, 246, 236, 0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 246, 236, 0.5);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(232, 81, 10, 0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--orange);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 12px 32px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(253, 246, 236, 0.35);
}
.btn-outline:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  box-shadow: 0 12px 32px rgba(26, 21, 16, 0.3);
}

/* ─── SECTIONS ───────────────────────────────── */
.section {
  padding: 7rem 6%;
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section-dark p { color: rgba(253, 246, 236, 0.6); }
.section-dark .section-label { color: var(--orange); }

.section-cream { background: var(--warm-white); }

/* ─── SKEW DIVIDERS ──────────────────────────── */
.skew-top {
  height: 80px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.skew-bottom {
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  margin-bottom: -80px;
  position: relative;
  z-index: 1;
}

/* ─── BENTO GRID (homepage features) ────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
  margin-top: 4rem;
}

.bento-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26, 21, 16, 0.12);
}

.bento-a { grid-column: 1 / 8; grid-row: 1; min-height: 360px; }
.bento-b { grid-column: 8 / 13; grid-row: 1; min-height: 360px; }
.bento-c { grid-column: 1 / 5; grid-row: 2; min-height: 260px; }
.bento-d { grid-column: 5 / 10; grid-row: 2; min-height: 260px; }
.bento-e { grid-column: 10 / 13; grid-row: 2; min-height: 260px; }

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bento-card:hover img { transform: scale(1.04); }

.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, rgba(26,21,16,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.bento-card-overlay h3 { color: var(--cream); margin-bottom: 0.35rem; }
.bento-card-overlay p  { color: rgba(253,246,236,0.65); font-size: 0.88rem; }

.bento-stat {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.bento-stat .stat-number {
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--cream);
  line-height: 1;
}

.bento-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(253,246,236,0.8);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ─── ASYMMETRIC ABOUT STRIP ─────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}

.about-strip-img {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-strip:hover .about-strip-img img { transform: scale(1.04); }

.about-strip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
}

.about-strip-content .section-label { color: var(--orange); }
.about-strip-content h2 { margin-bottom: 1.25rem; }
.about-strip-content p  { margin-bottom: 1.25rem; max-width: 460px; }

/* ─── MENU GRID ──────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.menu-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 21, 16, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,21,16,0.12);
}

.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img { transform: scale(1.05); }

.menu-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.menu-card-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.menu-card-body p  { font-size: 0.88rem; margin-bottom: 1rem; }

.menu-price {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.menu-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ─── MASONRY GALLERY ────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--charcoal);
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
}

.masonry-grid {
  column-count: 3;
  column-gap: 1.25rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.04); }
.masonry-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; height: 0; margin: 0; overflow: hidden; }

/* ─── TESTIMONIALS ───────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.review-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(26, 21, 16, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(26,21,16,0.1);
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.18;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.9rem;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── FAQ ────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 3.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 21, 16, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ─── CONTACT ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.contact-detail {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail .label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: var(--warm-white);
  border: 1.5px solid rgba(26, 21, 16, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── ABOUT PAGE ─────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.team-card { text-align: center; }

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  filter: grayscale(25%);
  transition: filter var(--transition), transform var(--transition);
}

.team-card:hover .team-card-img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card .role {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── VALUES / PILLARS ───────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.pillar {
  padding: 2rem;
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(232, 81, 10, 0.15);
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition);
}

.pillar:hover {
  background: rgba(232, 81, 10, 0.08);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.pillar h3 { color: var(--cream); font-size: 1.05rem; margin-bottom: 0.5rem; }

/* ─── MAP PLACEHOLDER ────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 380px;
  background: var(--charcoal-mid);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(232,81,10,0.07) 0%, transparent 60%),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(232,81,10,0.04) 40px, rgba(232,81,10,0.04) 41px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(232,81,10,0.04) 40px, rgba(232,81,10,0.04) 41px);
}

/* ─── HEADER (inner pages) ───────────────────── */
.page-header {
  padding: 10rem 6% 5rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,81,10,0.12) 0%, transparent 65%);
}

.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--cream); }

.page-header .breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.page-header .breadcrumb a { color: var(--orange); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ─── HIGHLIGHT STRIP ────────────────────────── */
.highlight-strip {
  background: var(--orange);
  padding: 4rem 6%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.highlight-item .number {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: var(--cream);
  display: block;
}

.highlight-item .desc {
  font-size: 0.85rem;
  color: rgba(253,246,236,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 5rem 6% 3rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 81, 10, 0.1);
}

.footer-brand .nav-logo {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(253,246,236,0.45);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(253,246,236,0.55);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(253,246,236,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links { display: flex; gap: 1rem; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232,81,10,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(253,246,236,0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .bento-a { grid-column: 1 / 13; min-height: 300px; }
  .bento-b { grid-column: 1 / 7; }
  .bento-c { display: none; }
  .bento-d { grid-column: 7 / 13; }
  .bento-e { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-h: 68px; }

  .about-strip { grid-template-columns: 1fr; min-height: auto; }
  .about-strip-img { height: 320px; clip-path: none; }
  .about-strip-content { padding: 3rem 2rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .masonry-grid { column-count: 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
  .section { padding: 5rem 5%; }

  .bento-grid { display: flex; flex-direction: column; }
  .bento-a, .bento-b, .bento-d { min-height: 240px; }

  .masonry-grid { column-count: 1; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-header { padding: 8rem 5% 4rem; }
}