/* beccyandewan.co — full static homepage (cPanel friendly) + private gate */
:root{
  --bg:#fafafa;
  --card:#ffffff;
  --text:#0a0a0a;
  --muted:#5f6368;
  --border:#e6e6e6;
  --shadow: 0 1px 2px rgba(0,0,0,.05);
  --radius: 20px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.wrap{max-width:1100px; margin:0 auto; padding:0 16px}
.grid{display:grid; gap:16px}
@media (min-width: 1024px){
  .hero__grid{grid-template-columns: 7fr 5fr}
  .tripGrid{grid-template-columns: 7fr 5fr}
}
@media (min-width: 768px){
  .threeUp{grid-template-columns: repeat(3, 1fr)}
  .twoUp{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 767px){
  .nav{display:none}
  .actions .btn--ghost{display:none}
}

/* Gate */
.gate{
  position:fixed; inset:0;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 24px;
  z-index: 9999;
}
.gate.isOpen{display:flex}
.gate__card{
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  padding: 18px 18px 16px;
  text-align: center;
}
.gate__mark{
  width:44px; height:44px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin: 2px auto 10px;
  box-shadow: var(--shadow);
}
.gate__title{margin:0; font-size:18px; font-weight:900; letter-spacing:-.01em}
.gate__sub{margin:8px 0 14px; color: var(--muted); font-size:14px}
.gate__form{display:grid; gap:10px; text-align:left; margin-top: 6px}
.gate__label{font-size:12px; color: var(--muted); font-weight:700}
.gate__input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 16px;
  outline: none;
}
.gate__input:focus{border-color:#111}
.gate__btn{width:100%}
.gate__error{margin: 0; min-height: 18px; color:#b00020; font-size: 13px}
.gate__hint{margin: 10px 0 0; color: var(--muted); font-size: 12px}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace}

/* Existing site styles */
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(250,250,250,.85);
  border-bottom:1px solid var(--border);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 16px}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:36px; height:36px; border-radius: 14px;
  border:1px solid var(--border);
  background:var(--card);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
}
.brand__name{font-size:14px; font-weight:700}
.brand__tag{font-size:12px; color:var(--muted)}
.nav{display:flex; gap:18px}
.nav a{font-size:14px; font-weight:600; color:#444}
.nav a:hover{color:#000}
.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid #111;
  background:#111;
  color:#fff;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}
.btn--ghost{
  border:1px solid var(--border);
  background:#fff;
  color:#111;
  font-weight:700;
}
.btn--block{width:100%}
.hero{padding:40px 0 18px}
.section{padding:34px 0}
.section--last{padding-bottom:44px}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__head{padding:16px 16px 10px}
.card__head--tight{padding-bottom:6px}
.card__title{margin:0; font-size:14px; font-weight:800}
.card__body{padding: 10px 16px 16px}
.stack{display:grid; gap:14px}
.heroCard{position:relative; min-height: 360px}
.heroMedia{
  height:260px;
  background: url("images/bickleigh_osmap.jpg") center/cover no-repeat;
}
.heroOverlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,.10), rgba(0,0,0,0));
}
.heroContent{
  position:absolute; left:0; right:0; bottom:0;
  padding:22px 22px 20px;
  color:#fff;
}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color:#111;
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  font-weight:800;
}
.heroTitle{margin:0; font-size:38px; line-height:1.05; letter-spacing:-.02em}
.heroSub{margin:10px 0 0; color: rgba(255,255,255,.92); max-width: 520px}
.heroCtas{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.weekRow{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.weekTitle{font-weight:800}
.weekSub{margin-top:6px; color:var(--muted)}
.iconPill{
  width:42px; height:42px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow);
}
.miniGrid{margin-top:14px; display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.miniStat{border:1px solid var(--border); border-radius: 18px; padding:12px; background:#fff}
.miniLabel{font-size:12px; color:var(--muted)}
.miniValue{margin-top:6px; font-weight:800}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:12px}
.h2{margin:0; font-size:24px; font-weight:900; letter-spacing:-.02em}
.muted{color:var(--muted); font-size:14px; line-height:1.5}
.tripSide{display:grid; gap:12px}
.panel{
  border:1px solid var(--border);
  border-radius: 18px;
  padding:14px;
  background:#fff;
}
.panelLabel{font-size:12px; color:var(--muted)}
.panelValue{margin-top:6px; font-size:18px; font-weight:900; letter-spacing:-.01em}
.panelValue.smallTitle{font-size:16px}
.panelHint{margin-top:10px; color:var(--muted); font-size:14px; line-height:1.5}
.dayGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:8px;
}
@media (min-width: 768px){ .dayGrid{grid-template-columns: repeat(3, 1fr)} }
@media (min-width: 1024px){ .dayGrid{grid-template-columns: repeat(2, 1fr)} }
.dayChip{
  padding:10px 12px;
  border-radius: 16px;
  border:1px solid var(--border);
  background:#fff;
  text-align:left;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .06s ease;
}
.dayChip:hover{background:#f4f4f4}
.dayChip:active{transform: translateY(1px)}
.dayChip .dDay{font-size:12px; color:var(--muted)}
.dayChip .dLabel{margin-top:4px; font-size:14px; font-weight:800}
.dayChip.isActive{background:#111; border-color:#111; color:#fff}
.dayChip.isActive .dDay{color: rgba(255,255,255,.8)}
.anchorCard .anchorTitle{font-weight:900}
.list{margin:10px 0 0; padding-left: 18px; color:var(--muted); font-size:14px; line-height:1.6}
.list li{margin:6px 0}
.featureHead{display:flex; align-items:flex-start; gap:12px}
.chip{
  display:inline-flex; margin-top:6px;
  padding:5px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background:#f6f6f6;
  font-size:12px;
  font-weight:800;
  color:#111;
}
.arrow{margin-left:auto; color:#444}
.footer{border-top:1px solid var(--border); background:#fff}
.footer__inner{
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between;
  padding:22px 16px; flex-wrap:wrap;
}
.footer__brand{font-weight:900}
.footer__actions{display:flex; gap:10px}
