/* =========================================================
   In Contrada Vineyard & Kitchen — Design System
   Destination-winery aesthetic. Warm Hill Country + Italian.
   ========================================================= */

:root {
  /* Palette */
  --wine:        #5b1a2b;   /* deep burgundy */
  --wine-dark:   #401320;
  --wine-deep:   #2e0d16;
  --gold:        #b08642;   /* aged brass / award gold */
  --gold-light:  #c9a063;
  --cream:       #f7f1e7;   /* warm paper */
  --cream-2:     #efe6d6;
  --sage:        #6f7a5a;   /* vineyard green */
  --charcoal:    #2a2421;
  --ink:         #1d1916;
  --muted:       #6c6258;
  --line:        rgba(42,36,33,.14);
  --white:       #ffffff;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --shadow: 0 18px 50px -22px rgba(46,13,22,.45);
  --shadow-sm: 0 8px 26px -16px rgba(46,13,22,.35);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0 0 .4em; color: var(--ink); letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { margin: 0 0 1.1em; }
.serif { font-family: var(--serif); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px,5vw,70px) 0; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1rem;
}
.bg-cream2 { background: var(--cream-2); }
.bg-wine { background: var(--wine-deep); color: var(--cream); }
.bg-wine h1,.bg-wine h2,.bg-wine h3 { color: var(--cream); }
.bg-ink  { background: var(--charcoal); color: var(--cream-2); }
.bg-ink h2,.bg-ink h3 { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 500; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 50px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--wine); color: #fff; }
.btn--primary:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--gold { background: var(--gold); color: #2b1a08; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--outline { background: transparent; border-color: var(--wine); color: var(--wine); }
.btn--outline:hover { background: var(--wine); color: #fff; }
.btn--lg { padding: 18px 38px; font-size: .86rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,241,231,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 6px 24px -16px rgba(46,13,22,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand .brand-txt { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1; color: var(--ink); }
.brand .brand-txt small { display: block; font-family: var(--sans); font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--charcoal); font-weight: 400;
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-links a.active::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px; background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta .btn { padding: 11px 22px; font-size: .74rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; }
.nav-toggle span { display:block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s; }

/* mobile */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); padding: 8px 24px 28px;
    border-bottom: 1px solid var(--line); transform: translateY(-120%);
    transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 0; font-size: .9rem; }
  .nav-cta .btn-book-label { display: none; }
  .nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(105deg, rgba(28,8,14,.82) 0%, rgba(28,8,14,.5) 45%, rgba(28,8,14,.25) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero .eyebrow { color: var(--gold-light); }
.hero__sub { font-size: 1.25rem; max-width: 46ch; color: rgba(255,255,255,.92); font-weight: 300; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 22px 34px; font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.hero__meta b { color:#fff; font-weight:500; }
.hero__meta span { display:flex; align-items:center; gap:8px; }

/* ---------- Event strip ---------- */
.eventstrip { background: var(--wine); color: var(--cream); }
.eventstrip .wrap { display: flex; align-items: center; justify-content: center; gap: 14px 26px; padding: 14px 24px; flex-wrap: wrap; text-align: center; }
.eventstrip .tag { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; background: var(--gold); color:#2b1a08; padding: 4px 12px; border-radius: 40px; font-weight: 600; }
.eventstrip p { margin: 0; font-size: .98rem; }
.eventstrip a { color: var(--gold-light); font-weight: 500; border-bottom: 1px solid currentColor; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__media.stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split__media.stack img { max-height: 320px; }
.split__media.stack img:first-child { grid-row: span 2; max-height: 100%; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr;} }

.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card__body { padding: 24px 26px 28px; }
.card__body h3 { margin-bottom: .3em; }
.card .price { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.icon-card { text-align: center; padding: 36px 26px; background: var(--white); border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.icon-card .ic { font-size: 1.8rem; margin-bottom: 10px; }

/* ---------- Wine list ---------- */
.wine-item { display: grid; grid-template-columns: auto 1fr auto; gap: 6px 20px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.wine-item h3 { margin: 0; }
.wine-item .varietal { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); grid-column: 1/-1; order: -1; }
.wine-item .notes { color: var(--muted); grid-column: 1 / 3; font-size: .96rem; margin: 0; }
.wine-item .wprice { font-family: var(--serif); font-size: 1.3rem; color: var(--wine); font-weight: 600; }
.medal { display:inline-block; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; padding:3px 9px; border-radius:30px; font-weight:600; margin-left:8px; vertical-align: middle; }
.medal.gold { background:#f4e6c4; color:#7a5a16; }
.medal.silver { background:#e7e7ea; color:#5a5a63; }
.medal.bronze { background:#ead7c2; color:#7a4a23; }

/* ---------- Pricing table ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
@media (max-width: 620px){ .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 32px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.tier.featured { border-color: var(--gold); box-shadow: var(--shadow); position: relative; }
.tier.featured::before { content:"Most Popular"; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gold); color:#2b1a08; font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600; padding:5px 16px; border-radius:30px; white-space:nowrap; }
.tier h3 { margin-bottom: .1em; }
.tier .t-price { font-family: var(--serif); font-size: clamp(2.1rem, 2.4vw, 2.6rem); color: var(--wine); font-weight: 600; line-height: 1; margin: 12px 0 4px; }
.tier .t-price small { font-family: var(--sans); font-size: .9rem; color: var(--muted); font-weight: 300; }
.tier .t-sub { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.tier li { padding: 9px 0 9px 28px; position: relative; border-bottom: 1px solid var(--line); font-size: .95rem; }
.tier li::before { content:"✦"; position:absolute; left:0; color: var(--gold); }

/* ---------- Menu ---------- */
.menu-cat { margin-bottom: 48px; }
.menu-cat h3 { border-bottom: 2px solid var(--gold); padding-bottom: 8px; display: inline-block; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; padding: 14px 0; border-bottom: 1px dotted var(--line); align-items: baseline; }
.menu-row .mname { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.menu-row .mdesc { color: var(--muted); font-size: .92rem; grid-column: 1/-1; margin: 2px 0 0; }
.menu-row .mprice { font-family: var(--serif); color: var(--wine); font-size: 1.15rem; font-weight: 600; }

/* ---------- Reviews ---------- */
.review { background: var(--white); border-radius: var(--radius); padding: 30px 30px 26px; box-shadow: var(--shadow-sm); border:1px solid var(--line); display:flex; flex-direction:column; height:100%; }
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.review p { font-size: 1.02rem; font-style: italic; color: var(--charcoal); flex-grow:1; }
.review .who { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:14px; padding-top:14px; border-top:1px solid var(--line); }
.review .who b { font-family: var(--serif); font-size: 1.05rem; font-weight:600; }
.review .src { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }

/* ---------- Events list ---------- */
.event-row { display:grid; grid-template-columns: 92px 1fr auto; gap: 20px; align-items:center; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:18px 24px; margin-bottom:14px; box-shadow:var(--shadow-sm); transition: transform .25s; }
.event-row:hover { transform: translateX(4px); }
.event-date { text-align:center; border-right:1px solid var(--line); padding-right:18px; }
.event-date .d { font-family:var(--serif); font-size:1.9rem; font-weight:600; color:var(--wine); line-height:1; }
.event-date .m { font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
.event-row h3 { margin:0 0 2px; font-size:1.25rem; }
.event-row .etime { color:var(--muted); font-size:.88rem; }
@media (max-width:600px){ .event-row { grid-template-columns: 72px 1fr; } .event-row .btn { grid-column: 2; justify-self:start; } }

/* ---------- Badges row ---------- */
.badges { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 34px; }
.badges img { height: 78px; width:auto; filter: saturate(.95); opacity:.92; }
.badges .bcap { font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }

/* ---------- Email capture ---------- */
.capture { background: linear-gradient(135deg, var(--wine-deep), var(--wine)); color: var(--cream); border-radius: 10px; padding: clamp(34px,5vw,56px); text-align:center; }
.capture h2 { color:#fff; }
.capture p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 1.6em; }
.capture form { display:flex; gap:12px; max-width: 520px; margin: 0 auto; flex-wrap:wrap; }
.capture input { flex:1; min-width: 200px; padding: 15px 18px; border-radius: 50px; border:0; font-family:var(--sans); font-size:.95rem; }
.capture .fineprint { font-size:.74rem; color: rgba(255,255,255,.6); margin: 14px auto 0; }
.form-msg { margin-top:14px; font-size:.9rem; min-height:1.2em; }
.form-msg.ok { color: var(--gold-light); }

/* ---------- Forms ---------- */
.form-card { background:var(--white); border:1px solid var(--line); border-radius:8px; padding: clamp(26px,4vw,42px); box-shadow:var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--charcoal); margin-bottom:6px; font-weight:500; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1px solid var(--line); border-radius: var(--radius);
  font-family:var(--sans); font-size:1rem; background:var(--cream); color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:2px solid var(--gold); border-color:transparent; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .field-row { grid-template-columns:1fr; } }
.req { color: var(--wine); }

/* ---------- Info / contact blocks ---------- */
.info-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:28px; }
@media (max-width:780px){ .info-grid { grid-template-columns:1fr; } }
.info-block h4 { font-family:var(--sans); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; color:var(--gold); margin-bottom:8px; }
.info-block p { margin:0 0 .3em; }

.map-embed { width:100%; height:340px; border:0; border-radius:8px; box-shadow:var(--shadow-sm); }

/* ---------- Etiquette / accordion ---------- */
.acc { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-bottom:12px; background:var(--white); }
.acc summary { cursor:pointer; padding:18px 22px; font-family:var(--serif); font-size:1.2rem; font-weight:600; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.acc summary::-webkit-details-marker { display:none; }
.acc summary::after { content:"+"; color:var(--gold); font-size:1.5rem; transition:transform .25s; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc .acc-body { padding: 0 22px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--wine-deep); color: rgba(247,241,231,.8); padding: 64px 0 28px; }
.footer a { color: rgba(247,241,231,.8); }
.footer a:hover { color: var(--gold-light); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:860px){ .footer-top { grid-template-columns: 1fr 1fr; gap:32px; } }
@media (max-width:480px){ .footer-top { grid-template-columns: 1fr; } }
.footer h4 { color:#fff; font-family:var(--sans); text-transform:uppercase; letter-spacing:.14em; font-size:.76rem; margin-bottom:16px; }
.footer ul { list-style:none; margin:0; padding:0; }
.footer li { margin-bottom:9px; font-size:.92rem; }
.footer .f-brand { font-family:var(--serif); font-size:1.7rem; color:#fff; margin-bottom:8px; }
.footer .f-tag { font-size:.92rem; max-width:34ch; }
.footer .f-soc { display:flex; gap:14px; margin-top:16px; }
.footer .f-soc a { width:38px; height:38px; border:1px solid rgba(255,255,255,.25); border-radius:50%; display:grid; place-items:center; transition:.25s; }
.footer .f-soc a:hover { background:var(--gold); border-color:var(--gold); color:#2b1a08; }
.footer-bottom { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:24px; font-size:.8rem; color:rgba(247,241,231,.55); }

/* ---------- Page hero (interior) ---------- */
.pagehero { position:relative; padding: clamp(90px,14vh,150px) 0 clamp(56px,8vh,90px); color:#fff; text-align:center; overflow:hidden; }
.pagehero__bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.pagehero__bg::after { content:""; position:absolute; inset:0; background:linear-gradient(rgba(28,8,14,.72),rgba(28,8,14,.78)); }
.pagehero .wrap { position:relative; z-index:2; }
.pagehero h1 { color:#fff; }
.pagehero p { color:rgba(255,255,255,.9); max-width:60ch; margin:0 auto; font-size:1.15rem; }
.breadcrumb { font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:14px; }
.breadcrumb a { color:rgba(255,255,255,.7); }

/* ---------- Misc ---------- */
.ribbon { display:inline-flex; gap:8px; align-items:center; background:var(--cream-2); border:1px solid var(--line); border-radius:40px; padding:7px 16px; font-size:.8rem; color:var(--charcoal); }
.divider { width:60px; height:2px; background:var(--gold); margin: 18px 0; }
.center .divider { margin-left:auto; margin-right:auto; }
.muted { color: var(--muted); }
.small { font-size:.85rem; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-2{margin-top:1.4rem}.mb-2{margin-bottom:1.4rem}

/* reveal */
[data-reveal] { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity:1; transform:none; }

/* skip link */
.skip { position:absolute; left:-9999px; top:0; background:var(--wine); color:#fff; padding:10px 16px; z-index:200; }
.skip:focus { left:8px; top:8px; }

/* ---------- Age gate (21+) ---------- */
body.age-lock { overflow: hidden; }

.agegate {
  position: fixed; top:0; right:0; bottom:0; left:0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(46,13,22,.88);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
  backdrop-filter: blur(6px) saturate(115%);
}
.agegate__panel {
  width: 100%; max-width: 440px; text-align: center;
  background: var(--cream); border: 1px solid rgba(176,134,66,.55);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(30px,5vw,46px) clamp(22px,4vw,38px);
  animation: agegate-in .34s ease both;
}
.agegate__mark { width: 208px; height: auto; margin: 0 auto 20px; mix-blend-mode: multiply; }
.agegate__title { font-size: clamp(1.7rem, 4vw, 2.2rem); margin-bottom: .3em; }
.agegate__sub { color: var(--muted); font-size: .98rem; margin-bottom: 1.6em; }
.agegate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.agegate__actions .btn { min-width: 132px; justify-content: center; }
.agegate .btn--ghost { color: var(--muted); border-color: var(--line); }
.agegate .btn--ghost:hover { background: rgba(42,36,33,.06); color: var(--ink); }
.agegate__fine { font-size: .76rem; color: var(--muted); margin: 1.8em 0 0; line-height: 1.55; }
.agegate__fine a { text-decoration: underline; }

@keyframes agegate-in { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .agegate__panel { animation: none; } }
@media (max-width: 420px) { .agegate__actions .btn { width: 100%; } }

/* Honeypot — hidden from people, visible to bots. Not display:none, which
   some bots skip; off-canvas so screen readers ignore it via aria-hidden. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
