/* ============================================================
   components.css — buttons, hero, chips, cards, visit, map,
   feature band, legal, 404, reveal, cookie banner
   ============================================================ */

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: 0.005em;
  padding: 13px 24px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--green); color: var(--green); background: transparent;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { background: var(--green); color: #fff; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-solid { background: var(--green); color: #fff; border-color: var(--green); }
.btn-solid:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- chips / meta ---- */
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 8px 15px;
  font-size: 13.5px; font-weight: 500; color: var(--body);
  box-shadow: var(--shadow-sm);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.chip .dot--amber { background: var(--amber); }

/* ---- hero (split) ---- */
.hero { padding-block: clamp(32px, 6vw, 72px) clamp(48px, 7vw, 96px); }
.hero__inner {
  display: grid; gap: clamp(28px, 5vw, 56px); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .hero__inner { grid-template-columns: 1.02fr 0.98fr; } }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 7.4vw, 78px); line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink); margin: 18px 0 0;
}
.hero__title .accent { color: var(--green); }
.hero__lead { margin-top: 22px; font-size: clamp(16px, 1.8vw, 20px); color: var(--body); max-width: 48ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta { margin-top: 30px; }

.hero__figure { position: relative; }
.hero__photo {
  width: 100%; height: clamp(340px, 52vw, 600px); object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-sm); padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 560px) { .hero__badge { left: 22px; right: auto; bottom: 22px; min-width: 300px; } }
.hero__badge .b-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.hero__badge .b-value { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 17px; margin-top: 2px; }
.hero__badge .b-sep { width: 1px; align-self: stretch; background: var(--line); }

/* ---- generic feature split ---- */
.split {
  display: grid; gap: clamp(28px, 5vw, 60px); align-items: center; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > .split__media { order: 2; } }
.split__media img { width: 100%; height: clamp(300px, 42vw, 520px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split h2 { font-size: clamp(30px, 5vw, 50px); color: var(--ink); margin-bottom: 18px; }
.split p + p { margin-top: 15px; }
.split .btn { margin-top: 28px; }

/* ---- offering cards ---- */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 44px; }
@media (min-width: 640px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards.cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card img { width: 100%; height: 230px; object-fit: cover; }
.card__body { padding: 22px 22px 26px; }
.card__body .num {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--amber-deep); letter-spacing: 0.08em;
}
.card__body h3 { color: var(--ink); font-size: 22px; margin: 8px 0 10px; }
.card__body p { font-size: 15.5px; color: var(--body); }

/* ---- feature band (dark) ---- */
.band { position: relative; overflow: hidden; }
.band__inner { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .band__inner { grid-template-columns: 1.1fr 0.9fr; } }
.band .eyebrow { color: var(--green-lite); }
.band .eyebrow::before { background: var(--amber); }
.band h2 { color: #fff; font-size: clamp(28px, 4.6vw, 46px); margin-top: 16px; }
.band p { color: #C9D0CB; margin-top: 18px; font-size: clamp(16px, 1.7vw, 19px); max-width: 52ch; }
.band__media img { width: 100%; height: clamp(260px, 34vw, 400px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---- visit / getting here ---- */
.visit { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .visit { grid-template-columns: 0.92fr 1.08fr; } }
.info-list { margin-top: 28px; display: grid; gap: 0; }
.info-list .row {
  display: grid; grid-template-columns: 128px 1fr; gap: 14px;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.info-list .row:last-child { border-bottom: 1px solid var(--line); }
.info-list .row dt {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--green);
}
.info-list .row dd { color: var(--body); font-size: 16px; }
.info-list .row dd a { color: var(--green); font-weight: 600; }
.info-list .row dd a:hover { text-decoration: underline; }

/* map card */
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--paper-2); }
.map-card img { width: 100%; height: clamp(300px, 44vw, 460px); object-fit: cover; }
.map-card__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; background: var(--paper-2);
}
.map-card__bar .where { font-size: 14.5px; color: var(--muted); }
.map-card__bar .where strong { color: var(--ink); }

/* ---- menu ---- */
.menu-note {
  margin-top: 18px; font-size: 14.5px; color: var(--muted);
  border: 1px solid var(--line); background: var(--paper-2); border-radius: var(--radius-sm);
  padding: 14px 18px; max-width: 640px;
}
.menu-wrap { margin-top: clamp(44px, 6vw, 60px); display: grid; gap: clamp(40px, 6vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .menu-wrap { grid-template-columns: 1fr 1fr; gap: 48px clamp(48px, 6vw, 88px); align-items: start; } }
.menu-cat { min-width: 0; }
.menu-cat__head { display: flex; align-items: baseline; gap: 12px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 2px solid var(--green); }
.menu-cat__head h2 { font-size: clamp(22px, 3vw, 28px); color: var(--ink); }
.menu-cat__head .k { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--amber-deep); letter-spacing: 0.06em; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu-row__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.menu-row__price { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--green); white-space: nowrap; }
.menu-row__desc { grid-column: 1 / 2; font-size: 14.5px; color: var(--muted); margin-top: 2px; max-width: 46ch; }

/* ---- about page (distinct layout) ---- */
.about-hero { text-align: center; max-width: 840px; margin-inline: auto; }
.about-hero .eyebrow { justify-content: center; }
.about-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px, 7vw, 74px); line-height: 1.02; letter-spacing: -0.03em; margin-top: 18px; color: var(--ink); }
.about-hero h1 .accent { color: var(--green); }
.about-hero p { margin: 22px auto 0; font-size: clamp(16px, 1.8vw, 20px); color: var(--body); max-width: 58ch; }
.about-banner { margin-top: clamp(36px, 5vw, 60px); }
.about-banner img { width: 100%; height: clamp(280px, 46vw, 560px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.facts { margin-top: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
@media (min-width: 720px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { padding: 24px 24px; border-top: 1px solid var(--line); }
.fact:first-child { border-top: none; }
@media (min-width: 720px) { .fact { border-top: none; border-left: 1px solid var(--line); } .fact:first-child { border-left: none; } }
.fact dt { font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); }
.fact dd { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 18px; margin-top: 8px; }
.fact dd small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13.5px; color: var(--muted); margin-top: 5px; }

.steps { display: grid; gap: 0; margin-top: clamp(32px, 4vw, 48px); }
.step { display: grid; grid-template-columns: 66px 1fr; gap: 6px 24px; padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 5vw, 52px); color: var(--amber-deep); line-height: 1; letter-spacing: -0.02em; }
.step h3 { font-size: clamp(20px, 2.6vw, 26px); color: var(--ink); }
.step p { margin-top: 8px; color: var(--body); max-width: 58ch; }

.pull { text-align: center; max-width: 940px; margin-inline: auto; }
.pull p { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 4.4vw, 46px); line-height: 1.16; letter-spacing: -0.02em; color: var(--ink); }
.pull p .accent { color: var(--green); }
.pull .by { margin-top: 22px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }

.duo { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 760px) { .duo { grid-template-columns: 1.15fr 0.85fr; } }
.duo img { width: 100%; height: clamp(240px, 38vw, 420px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.cta-simple { text-align: center; max-width: 640px; margin-inline: auto; }
.cta-simple h2 { font-size: clamp(28px, 4.6vw, 44px); color: var(--ink); }
.cta-simple p { margin-top: 14px; color: var(--muted); }
.cta-simple .hero__cta { justify-content: center; margin-top: 28px; }

/* ---- legal pages ---- */
.legal { max-width: 760px; margin-inline: auto; }
.legal h1 { color: var(--ink); font-size: clamp(32px, 5.5vw, 52px); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 15px; margin-bottom: 34px; }
.legal h2 { color: var(--ink); font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 16.5px; margin-bottom: 12px; color: var(--body); }
.legal a { color: var(--green); font-weight: 500; text-decoration: underline; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal h3 { color: var(--ink); font-size: 18px; margin: 22px 0 8px; }
.legal .table-wrap { overflow-x: auto; margin: 16px 0 20px; }
.legal table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal th { background: var(--sand); font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.legal td { color: var(--body); }

/* ---- 404 ---- */
.notfound { text-align: center; padding-block: clamp(64px, 12vw, 150px); }
.notfound .code {
  font-family: var(--font-display); font-weight: 700; color: var(--green);
  font-size: clamp(92px, 22vw, 220px); line-height: 0.9; letter-spacing: -0.04em;
}

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- cookie banner ---- */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 120;
  background: var(--ink); color: #D9DED9; border-radius: var(--radius);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px;
  padding: 18px 20px; box-shadow: var(--shadow-lg);
}
.cookie-banner p { color: #C9D0CB; font-size: 14px; margin: 0; flex: 1 1 320px; }
.cookie-banner a { color: var(--green-lite); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .cookie-btn { font-size: 13.5px; padding: 10px 18px; }
.cookie-banner .btn { border-color: rgba(255,255,255,0.28); color: #fff; }
.cookie-banner .btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cookie-banner .btn-solid { background: var(--green); color: #fff; border-color: var(--green); }
.cookie-banner .btn-solid:hover { background: var(--green-lite); border-color: var(--green-lite); color: var(--ink); }
@media (min-width: 768px) { .cookie-banner { left: 24px; right: 24px; bottom: 24px; flex-wrap: nowrap; max-width: 760px; } }
