/* Peachtree Luxe Restroom Trailers — luxury lead-gen site */
:root {
  --ink: #161412;
  --charcoal: #1f1c19;
  --gold: #c8a86b;
  --gold-deep: #b08f4f;
  --ivory: #f7f3ec;
  --cream: #efe8db;
  --muted: #6f675d;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(22, 20, 18, 0.12);
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .brand-text, blockquote p, .stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow.center, .section-title.center { text-align: center; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 18px; }
.center.section-title { margin-left: auto; margin-right: auto; max-width: 18ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(200,168,107,.35); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline { border-color: currentColor; color: var(--ivory); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-call { background: var(--ink); color: var(--ivory); padding: 11px 18px; font-size: .85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22,20,18,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: "Playfair Display", serif; font-weight: 700;
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1.5px solid var(--gold); color: var(--gold-deep); border-radius: 50%;
  font-size: 1.1rem; letter-spacing: -2px;
}
.brand-amp { color: var(--ink); }
.brand-text { font-size: 1.15rem; line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.brand-text small { font-family: "Inter", sans-serif; font-weight: 500; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink); }
.nav a:not(.btn):hover { color: var(--gold-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .25s; }

/* Hero */
.hero {
  position: relative; color: var(--ivory);
  background: linear-gradient(120deg, #1b1815, #2a251f);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/hero-trailer.jpg");
  background-size: cover; background-position: center right; opacity: .85;
}
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(20,17,14,.82) 0%, rgba(20,17,14,.5) 38%, rgba(20,17,14,.12) 62%, rgba(20,17,14,.05) 100%),
  radial-gradient(circle at 30% 20%, rgba(200,168,107,.18), transparent 60%); }
.hero-content { position: relative; padding: 110px 24px 100px; max-width: 760px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 22px; }
.hero-sub { font-size: 1.15rem; color: rgba(247,243,236,.85); max-width: 60ch; margin-bottom: 34px; }
.hero-phone { display: inline-block; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: var(--ivory); text-decoration: none; letter-spacing: .5px; margin-bottom: 30px; text-shadow: 0 2px 10px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.7); }
.hero-phone:hover { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { font-size: .9rem; color: rgba(247,243,236,.7); }

/* Sections */
.section { padding: 88px 0; }
.section-dark { background: var(--charcoal); color: var(--ivory); }
.section-dark .section-title, .section-dark .eyebrow { color: var(--ivory); }
.section-dark .eyebrow { color: var(--gold); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(22,20,18,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(22,20,18,.16); }
.card-icon { font-size: 1.8rem; width: 58px; height: 58px; display: grid; place-items: center; background: var(--cream); border-radius: 14px; margin-bottom: 18px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.why-copy p { color: rgba(247,243,236,.78); margin-bottom: 22px; }
.checklist { list-style: none; margin: 0 0 30px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: rgba(247,243,236,.9); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--gold); color: var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: rgba(247,243,236,.06); border: 1px solid rgba(247,243,236,.12); border-radius: var(--radius); padding: 26px 20px; text-align: center; }
.stat-num { display: block; font-size: 2.1rem; color: var(--gold); margin-bottom: 4px; }
.stat-label { font-size: .82rem; color: rgba(247,243,236,.7); letter-spacing: .04em; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.gallery-item { aspect-ratio: 3/4; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: var(--shadow); background-color: var(--cream); }
.g1 { background-image: url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=600&q=70"); }
.g2 { background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=600&q=70"); }
.g3 { background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=600&q=70"); }
.g4 { background-image: url("https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?auto=format&fit=crop&w=600&q=70"); }

/* Quote / testimonial */
.section-quote { background: var(--cream); text-align: center; padding: 70px 0; }
blockquote { max-width: 760px; margin: 0 auto; }
blockquote p { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 18px; }
blockquote em { color: var(--gold-deep); font-style: italic; }
cite { color: var(--muted); font-style: normal; font-weight: 600; letter-spacing: .04em; }

/* Contact */
.section-contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info p { color: var(--muted); margin-bottom: 26px; }
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list span { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep); font-weight: 600; }
.contact-list a { font-size: 1.15rem; font-weight: 600; }

.quote-form { background: var(--white); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(22,20,18,.05); }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; padding: 12px 14px;
  border: 1.5px solid rgba(22,20,18,.14); border-radius: 10px; background: var(--ivory); color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,107,.2); background: var(--white);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; text-align: center; font-size: .9rem; color: var(--gold-deep); font-weight: 600; }
.form-note--ok { color: #1a7a3c; }
.form-note--error { color: #b4232a; }

/* Footer */
.site-footer { background: var(--ink); color: var(--ivory); padding: 54px 0 30px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand p { font-family: "Playfair Display", serif; font-size: 1.05rem; }
.footer-brand small { font-family: "Inter", sans-serif; color: rgba(247,243,236,.6); font-size: .76rem; letter-spacing: .04em; }
.footer-fine { text-align: center; color: rgba(247,243,236,.5); font-size: .8rem; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(247,243,236,.12); }

/* Floating call (mobile) */
.float-call { display: none; position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--ink); place-items: center; font-size: 1.4rem; box-shadow: 0 10px 26px rgba(0,0,0,.3); z-index: 60; }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: var(--ivory); padding: 18px 24px 26px; gap: 16px; border-bottom: 1px solid rgba(22,20,18,.1); transform: translateY(-130%); transition: transform .3s ease; align-items: stretch; }
  .nav.open { transform: translateY(0); }
  .nav-call { text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .float-call { display: grid; }
}
