/* Event Ready Restrooms — static marketing site
   Plain, dependency-light CSS. Fonts load from Google Fonts with system fallbacks;
   if the CDN is unreachable the site still renders cleanly in Georgia / system sans. */

:root {
  --charcoal: #2b2a28;
  --charcoal-soft: #37352f;
  --peach: #f0c3a0;
  --peach-dark: #e3a878;
  --cream: #faf6f1;
  --cream-2: #f3ebe1;
  --text: #2f2c28;
  --muted: #6f665d;
  --line: #e7ddd0;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--charcoal); margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
a { color: var(--peach-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--peach);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--peach-dark); text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-light { background: #fff; color: var(--charcoal); }
.btn-light:hover { background: var(--peach); }

/* ---------- Header ---------- */
.site-header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: .04em;
}
.brand .word {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d9cfc4;
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.navlink {
  color: #f3ede6;
  font-size: .98rem;
  font-weight: 500;
}
.nav-links a.navlink:hover { color: var(--peach); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(20,18,16,.45); }
.hero .container { position: relative; padding-top: 90px; padding-bottom: 90px; }
.hero-card {
  background: rgba(255,255,255,.96);
  color: var(--text);
  max-width: 620px;
  padding: 48px 46px;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.hero-card h1 { margin-bottom: .3em; }
.hero-card p { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--peach-dark);
  margin-bottom: 14px;
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-tight { padding: 54px 0; }
.section-cream2 { background: var(--cream-2); }
.section-dark { background: var(--charcoal); color: #f0e9e1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 760px; margin: 0 auto 8px; }
.section-dark .lead { color: #cabfb4; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split img { border-radius: 6px; box-shadow: 0 20px 40px rgba(0,0,0,.14); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 46px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.1); }
.card img { width: 100%; height: 210px; object-fit: cover; }
.card .card-body { padding: 26px 24px 30px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Feature banner ---------- */
.feature-note {
  background: var(--cream-2);
  border-left: 4px solid var(--peach);
  padding: 22px 26px;
  border-radius: 6px;
  margin: 26px 0;
  font-size: .98rem;
  color: var(--muted);
}
.price-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: var(--charcoal);
  color: #fff;
  padding: 22px 34px;
  border-radius: 8px;
  text-align: center;
}
.price-badge .amt { font-family: var(--serif); font-size: 2rem; color: var(--peach); }
.price-badge .lbl { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #c9beb2; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 40px auto 0; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 4px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--peach-dark);
  font-weight: 400;
}
.faq details[open] summary::after { content: "\2013"; }
.faq .faq-a { padding: 0 6px 20px; color: var(--muted); font-size: .98rem; }

/* ---------- Contact block ---------- */
.contact-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.contact-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 28px;
  text-align: center;
}
.contact-tile .ic { font-size: 1.8rem; margin-bottom: 10px; }
.contact-tile h3 { margin-bottom: .3em; }
.contact-tile a { font-size: 1.12rem; font-weight: 600; color: var(--charcoal); }
.contact-tile a:hover { color: var(--peach-dark); }
.contact-tile p { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }

/* ---------- Testimonials ---------- */
.trust { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.trust .badges { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust .badges img { height: 46px; width: auto; display: inline-block; }
.avatars { display: flex; justify-content: center; }
.avatars img { width: 62px; height: 62px; border-radius: 50%; border: 3px solid #fff; margin-left: -14px; box-shadow: 0 3px 8px rgba(0,0,0,.15); }
.avatars img:first-child { margin-left: 0; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.3em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; color: var(--muted); }
.prose .meta {
  background: var(--cream-2);
  border-radius: 8px;
  padding: 20px 26px;
  margin-bottom: 30px;
  font-size: .95rem;
}
.prose .meta p { margin: .2em 0; }

/* ---------- Thank you ---------- */
.thankyou { text-align: center; padding: 120px 0; }
.thankyou h1 { font-size: clamp(3rem, 8vw, 5rem); color: var(--peach-dark); }
.thankyou p { font-size: 1.3rem; color: var(--muted); max-width: 640px; margin: 0 auto 1.4em; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--charcoal); color: #fff; text-align: center; padding: 70px 0; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: #cabfb4; max-width: 620px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: #211f1d; color: #c9beb2; padding: 56px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand .mark { font-size: 1.7rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #c9beb2; display: block; margin-bottom: 10px; }
.site-footer a:hover { color: var(--peach); text-decoration: none; }
.footer-bottom { border-top: 1px solid #38342f; margin-top: 40px; padding-top: 22px; text-align: center; color: #8f847a; font-size: .84rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { display: none; }
  .hero-card { padding: 34px 26px; }
}
