/* Hungry for Tea — site.css
   Mobile-first, responsive, high-contrast, Copperplate headings.
*/

:root{
  --bg0:#0e0c09;
  --bg1:#17120e;
  --ink:#efe8dd;
  --muted:rgba(239,232,221,.75);
  --stroke:rgba(255,255,255,.12);
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --shadow:0 18px 45px rgba(0,0,0,.55);

  --brand:#4A2E1B;          /* box colour */
  --sand:#d8b37f;
  --sand2:#caa06a;

  --radius:22px;
  --radius2:16px;
  --max:1120px;

  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Copperplate", "Copperplate Gothic Light", "Copperplate Gothic", "Papyrus", serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--ink);
  font-family:var(--font-body);
  letter-spacing:.2px;
  background:
    radial-gradient(1100px 700px at 70% 10%, rgba(216,179,127,.16), transparent 60%),
    radial-gradient(900px 600px at 20% 15%, rgba(74,46,27,.22), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0; }
ul{ margin:0; padding-left:18px; }

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

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.7);
  border:1px solid var(--stroke);
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(15,12,9,.88), rgba(15,12,9,.65));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}

.brand{ display:flex; flex-direction:column; gap:8px; }
.brand-link{ display:inline-flex; align-items:center; }
.brand-banner{
  width:min(520px, 62vw);
  height:auto;
  border-radius:12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
}
.brand-subtitle{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.16em;
}

.header-cta{ display:flex; align-items:center; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--ink);
  font-weight:700;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ background:rgba(255,255,255,.09); }
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(216,179,127,.98), rgba(202,160,106,.86));
  border-color: rgba(216,179,127,.38);
  color:#1a120c;
}
.btn-primary:hover{
  background: linear-gradient(180deg, rgba(216,179,127,1), rgba(202,160,106,.92));
  border-color: rgba(216,179,127,.55);
}

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}

.btn-full{ width:100%; }

/* Hero */
.hero{ padding:18px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items:start;
}

.hero-header__spacer {
  height: 18px;
}

.hero-left{
  background: var(--panel2);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.kicker{
  font-size:12px;
  color:rgba(239,232,221,.78);
  text-transform:uppercase;
  letter-spacing:.18em;
}

.hero-title{
  margin:10px 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.1;
  font-size: clamp(26px, 6.2vw, 44px);
}
.hero-title br{ display:none; }

.hero-lede{
  margin-top:10px;
  color:var(--muted);
  line-height:1.55;
  font-size:14.5px;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px;
  color: rgba(239,232,221,.92);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.small-note{
  margin-top:12px;
  font-size:12px;
  color: rgba(239,232,221,.60);
}

.story-card{
  margin-top:16px;
  padding-top:14px;
  border-top: 1px dashed rgba(255,255,255,.14);
}

.section-title{
  margin:0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 15px;
  color: rgba(239,232,221,.92);
}

.story-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.story-block{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  border-radius: var(--radius2);
  padding:12px;
}
.story-heading{
  margin:0 0 6px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color: rgba(216,179,127,.92);
}
.story-text{
  margin:0;
  font-size:13.5px;
  line-height:1.55;
  color: var(--muted);
}

/* Right artwork */
.hero-right{
  background: var(--panel2);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow);
}

.art-frame{ margin:0; }
.hero-art{
  width:100%;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.art-caption{
  margin-top:12px;
  padding:10px 12px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: rgba(239,232,221,.80);
  font-size: 13px;
  line-height:1.5;
}
.art-credit{
  display:block;
  margin-top:6px;
  color: rgba(239,232,221,.60);
  font-size: 12px;
}

/* Waitlist */
.waitlist{ padding: 12px 0 38px; }
.waitlist-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}

.waitlist-left, .waitlist-right{
  background: var(--panel2);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.waitlist-subtitle{
  margin-top:10px;
  color: var(--muted);
  line-height:1.5;
  font-size:14px;
}

.waitlist-form{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.field{ display:flex; flex-direction:column; gap:6px; }
.field-label{
  font-size:12px;
  color: rgba(239,232,221,.72);
  text-transform:uppercase;
  letter-spacing:.16em;
}
.field-input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: var(--ink);
  outline: none;
}
.field-input::placeholder{ color: rgba(239,232,221,.40); }
.field-input:focus{
  border-color: rgba(216,179,127,.45);
  box-shadow: 0 0 0 3px rgba(216,179,127,.14);
}

.form-note{
  margin-top:2px;
  font-size:12px;
  color: rgba(239,232,221,.55);
}

.form-status{
  margin-top:6px;
  min-height: 18px;
  font-size:12px;
  color: rgba(239,232,221,.70);
}
.form-status[data-state="error"]{ color: rgba(255,170,170,.95); }
.form-status[data-state="ok"]{ color: rgba(180,255,200,.95); }

.info-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  border-radius: var(--radius2);
  padding:12px;
}
.info-card + .info-card{ margin-top:10px; }

.info-title{
  margin:0 0 8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color: rgba(216,179,127,.92);
}
.info-list{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  font-size:13.5px;
}

/* Footer */
.site-footer{
  padding: 10px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(15,12,9,.25), rgba(15,12,9,.55));
}
.footer-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
  padding-top:16px;
}
.footer-left, .footer-right{
  font-size:12px;
  color: rgba(239,232,221,.60);
}
.footer-right a{ text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (min-width: 720px){
  .container{ padding: 0 20px; }
  .hero-grid{ grid-template-columns: 1.05fr .95fr; }
  .hero-title br{ display:inline; }
  .story-grid{ grid-template-columns: 1fr 1fr; }
  .waitlist-grid{ grid-template-columns: 1.05fr .95fr; }
  .footer-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}

@media (min-width: 980px){
  .story-grid{ grid-template-columns: 1fr 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn{ transition:none; }
}


/* Mobile: make hero banner full-width */
@media (max-width: 719px) {
  .hero-header {
    margin-left: -18px;
    margin-right: -18px;
  }

  .brand-banner {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .hero-header__spacer {
    height: 20px;
  }
}

/* Mobile: make the banner image full-bleed inside the left hero panel */
@media (max-width: 719px) {
  /* Covers your likely banner class names (past + current) */
  .hero-left .brand-banner,
  .hero-left .brand__img,
  .hero-left .hero-banner,
  .hero-left img[src*="hungryfortea-banner"] {
    display: block;
    width: calc(100% + 36px);   /* 18px left + 18px right (matches your panel padding) */
    max-width: none;
    margin: -18px -18px 18px;  /* pull to panel edges, then add space below */
    border-radius: 0;
  }
}