/* =========================================================
   Atlanta Event Rental — style.css
   Palette: "The Pavilion" — warm ivory · charcoal · brass
   Fonts: Cormorant Garamond · Inter Tight · JetBrains Mono
   Base: Site Forge house style
   ========================================================= */

:root {
  --ivory:       #F9F5EE;
  --ivory-2:     #F1EBE0;
  --ivory-3:     #EDE6D8;
  --charcoal:    #1C1C1C;
  --charcoal-2:  #282828;
  --brass:       #B8863C;
  --brass-2:     #D4A860;
  --brass-soft:  #EAD09A;
  --muted:       #4C4438;
  --muted-2:     #6D6050;

  --paper:       var(--ivory);
  --paper-2:     var(--ivory-2);
  --paper-soft:  var(--ivory-3);
  --ink:         var(--charcoal);
  --ink-2:       var(--charcoal-2);
  --accent:      var(--brass);
  --accent-2:    var(--brass-2);
  --accent-soft: var(--brass-soft);
  --spot:        #7A5230;
  --line:        rgba(28,28,28,.13);
  --line-2:      rgba(28,28,28,.06);

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  --container:        1320px;
  --container-narrow: 1040px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px -16px rgba(0,0,0,.10);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.06), 0 24px 48px -20px rgba(0,0,0,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
*::selection { background: var(--ink); color: var(--paper); }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100vw; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body); font-size: 16px; line-height: 1.65; font-weight: 400;
  color: var(--ink); background: var(--paper); overflow-x: hidden;
  width: 100%; max-width: 100vw; position: relative;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
section, header, footer { max-width: 100vw; overflow-x: clip; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .35s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--ink); }

/* ── Film grain ── */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: -.012em; line-height: 1.08; color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
p  { color: var(--muted); }
em, .italic { font-style: italic; font-family: var(--f-display); }
.serif { font-family: var(--f-display); font-weight: 400; }

.eyebrow {
  font-family: var(--f-body); text-transform: uppercase;
  letter-spacing: .4em; font-size: 11px; font-weight: 500;
  color: var(--ink); display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--accent); margin-right: 14px; vertical-align: middle;
}
.label-mono {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2);
}

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 10vw, 140px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: rgba(249,245,238,.72); }
.section--paper2 { background: var(--paper-2); }
.grid { display: grid; gap: clamp(24px, 4vw, 64px); }
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 56px; }
.maxw-prose { max-width: 60ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 11.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: all .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); opacity: 1; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn--accent:hover { background: transparent; color: var(--ink); border-color: var(--ink); opacity: 1; }
.btn--light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--paper); border-color: var(--paper); opacity: 1; }

/* ── Announce bar ── */
.announce {
  background: var(--ink); text-align: center; padding: 11px 20px;
  font-size: 10.5px; letter-spacing: .36em; text-transform: uppercase;
  color: rgba(249,245,238,.75); font-weight: 400;
}
.announce span { color: var(--accent-2); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px; padding: 20px var(--gutter);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.nav.scrolled { padding-top: 13px; padding-bottom: 13px; }
.nav-logo {
  justify-self: start; font-family: var(--f-display);
  font-size: 1.3rem; letter-spacing: .04em; font-weight: 500;
  line-height: 1.2;
}
.nav-logo strong { display: block; font-size: .95rem; letter-spacing: .06em; }
.nav-logo small { display: block; font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.nav-links {
  display: flex; gap: 30px; justify-self: center; list-style: none;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500;
}
.nav-links a:hover { color: var(--accent); opacity: 1; }
.nav-cta { justify-self: end; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end;
  padding: clamp(80px,14vh,180px) 0 clamp(56px,8vw,110px);
  background: var(--charcoal);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1469371670807-013ccf25f16a?w=1800&q=80&auto=format&fit=crop");
  background-size: cover; background-position: center 30%;
  opacity: .52;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,28,28,.55) 0%, rgba(28,28,28,.25) 50%, rgba(28,28,28,.70) 100%);
}
.hero .container { position: relative; z-index: 2; max-width: 860px; }
.hero-meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  color: rgba(249,245,238,.65); margin-bottom: 28px;
}
.hero-meta-row .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--brass-2); flex-shrink: 0; }
.hero h1 { color: var(--ivory); margin-bottom: 20px; }
.hero h1 em { color: var(--brass-2); font-style: italic; }
.hero-tag { font-size: clamp(1rem, 1.7vw, 1.2rem); max-width: 50ch; color: rgba(249,245,238,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in, .no-js .reveal, .reveal.reveal--shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Image fallback ── */
.img-fallback { display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); border: 1px solid var(--line); min-height: 240px; }
.img-fallback-cap { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted-2); padding: 24px; text-align: center; }

/* ── Marquee ── */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 16px 0; background: var(--paper-2); }
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap; width: max-content;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted-2);
  animation: marq 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .dot-sep { color: var(--accent); }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── Trust bar ── */
.trust { background: var(--ink); padding: clamp(48px,7vw,88px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(249,245,238,.1); }
.trust-item {
  padding: clamp(24px,4vw,48px) 20px; text-align: center;
  background: var(--charcoal-2); position: relative;
}
.trust-item::after { content:""; position:absolute; right:0; top:20%; bottom:20%; width:1px; background:rgba(249,245,238,.1); }
.trust-item:last-child::after { display:none; }
.trust-num { font-family: var(--f-display); font-size: clamp(2.2rem,4vw,3.4rem); color: var(--ivory); line-height:1; }
.trust-num span { color: var(--brass-2); }
.trust-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(249,245,238,.55); margin-top: 10px; }

/* ── Category cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 0; }
.cat-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--charcoal);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), opacity .6s var(--ease);
  opacity: .72;
}
.cat-card:hover img { transform: scale(1.04); opacity: .55; }
.cat-content {
  position: absolute; inset: 0; padding: clamp(20px,3vw,44px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(28,28,28,.72) 0%, rgba(28,28,28,.12) 60%, transparent 100%);
}
.cat-eyebrow { font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass-2); margin-bottom: 8px; }
.cat-title { font-family: var(--f-display); font-size: clamp(1.5rem,2.5vw,2.2rem); color: var(--ivory); }
.cat-desc { font-size: 13px; color: rgba(249,245,238,.75); margin-top: 8px; max-width: 38ch; line-height: 1.5; }

/* ── Story section ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: center; }
.story-img { position: relative; }
.story-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.story-img::before {
  content: attr(data-year); position: absolute; bottom: -16px; right: -16px;
  font-family: var(--f-display); font-size: clamp(4rem,8vw,7rem);
  color: var(--brass-soft); opacity: .4; line-height: 1; z-index: -1; font-weight: 400;
}
.story-text .eyebrow { margin-bottom: 18px; }
.story-text h2 { margin-bottom: 22px; }
.story-text p { margin-bottom: 16px; line-height: 1.8; }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(24px,3vw,48px); }
.process-item { border-top: 1px solid var(--line); padding-top: 24px; }
.process-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 16px; }
.process-item h3 { font-size: clamp(1.15rem,1.8vw,1.5rem); margin-bottom: 10px; }
.process-item p { font-size: 14px; line-height: 1.7; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  margin-top: clamp(36px,5vw,72px);
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(5) { aspect-ratio: 3/4; }
.gallery-item:nth-child(6) { aspect-ratio: 3/4; }

/* ── Quote form ── */
.quote-form {
  background: var(--paper-2); padding: clamp(40px,6vw,80px);
  border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2);
}
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--line); background: var(--paper);
  padding: 13px 16px; font-family: var(--f-body); font-size: 14px;
  color: var(--ink); outline: none; appearance: none;
  transition: border-color .25s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234C4438' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ── Service area ── */
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,3vw,40px); margin-top: clamp(36px,5vw,64px); }
.area-col h4 { font-family: var(--f-display); font-size: 1.2rem; color: var(--ivory); margin-bottom: 14px; border-bottom: 1px solid rgba(249,245,238,.14); padding-bottom: 10px; }
.area-col ul { list-style: none; }
.area-col li { font-size: 13px; color: rgba(249,245,238,.65); padding: 4px 0;
  font-family: var(--f-body); letter-spacing: .02em; }
.area-col li::before { content: "—"; color: var(--brass); margin-right: 8px; font-family: var(--f-mono); }

/* ── Footer ── */
.footer { background: var(--ink); color: var(--paper); padding: clamp(56px,8vw,100px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px,5vw,80px); margin-bottom: clamp(40px,6vw,72px); }
.footer-brand-name { font-family: var(--f-display); font-size: 1.6rem; letter-spacing: .02em; color: var(--ivory); margin-bottom: 14px; }
.footer-brand-name em { color: var(--brass-2); }
.footer p { color: rgba(249,245,238,.62); font-size: 14px; line-height: 1.7; }
.footer a { color: rgba(249,245,238,.72); transition: color .25s; }
.footer a:hover { color: var(--brass-2); opacity: 1; }
.footer h4 { font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul li { font-size: 14px; color: rgba(249,245,238,.65); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(249,245,238,.72); }
.footer-credit {
  padding-top: 28px; border-top: 1px solid rgba(249,245,238,.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; color: rgba(249,245,238,.38);
}
.footer-credit a { color: rgba(249,245,238,.5); }
.footer-credit a:hover { color: var(--brass-2); }
.footer-bbb { display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(249,245,238,.18); padding: 6px 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brass-2); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links.open {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column;
    background: var(--paper); padding: 32px var(--gutter); gap: 22px;
    border-bottom: 1px solid var(--line); z-index: 99;
  }
  .nav-cta { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img { order: -1; }
  .story-img img { aspect-ratio: 3/2; }
  .story-img::before { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 3/2; }
  .gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 3/2; }
  .gallery-item:nth-child(5), .gallery-item:nth-child(6) { aspect-ratio: 1/1; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .area-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-credit { flex-direction: column; align-items: flex-start; }
}
