@import url('brand/brand-tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Inter:wght@400;500;700;800&display=swap');

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--mp-font-body);
  color: var(--mp-text);
  background: var(--mp-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--mp-font-head); color: var(--mp-heading); line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; letter-spacing: .01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: .01em; }
h3 { font-size: 1.15rem; font-weight: 700; font-family: var(--mp-font-body); }
p { margin: 0 0 1rem; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.wrap { width: min(1120px, 92vw); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--soft { background: var(--mp-bg-soft); }
.eyebrow { text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; font-weight: 600; color: var(--mp-text-muted); margin-bottom: .5rem; }
.lead { font-size: 1.15rem; color: var(--mp-text-muted); max-width: 60ch; }

/* ===== Accessibility ===== */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--mp-charcoal); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip-link:focus { left: .5rem; top: .5rem; }
:focus-visible { outline: 3px solid var(--mp-charcoal); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-family: var(--mp-font-head);
  border-radius: var(--mp-radius); padding: .9rem 1.5rem; border: 2px solid transparent; cursor: pointer;
  text-decoration: none; font-size: 1rem; transition: transform .08s ease, box-shadow .15s ease, background .15s ease; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--mp-yellow); color: var(--mp-charcoal); }
.btn--primary:hover { box-shadow: 0 8px 22px -8px rgba(224,180,0,.7); }
.btn--ghost { background: transparent; color: var(--mp-charcoal); border-color: var(--mp-charcoal); }
.btn--ghost:hover { background: var(--mp-charcoal); color: #fff; }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--mp-border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; }
.nav__logo img { height: 40px; }
.nav__links { display: flex; gap: 1.4rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav__links a { text-decoration: none; font-weight: 500; color: var(--mp-grey-900); padding: .4rem 0; }
.nav__links a:hover { color: var(--mp-yellow-deep); }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--mp-charcoal); }

/* ===== Hero ===== */
.hero { background: #fff; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero h1 { text-transform: uppercase; font-size: clamp(3rem, 8vw, 5.5rem); line-height: .95; letter-spacing: .01em; }
.hero__label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mp-text-muted); margin-bottom: 1rem; display: block; }
.hero__art { aspect-ratio: 4/3; border-radius: var(--mp-radius-lg); background: var(--mp-grey-100);
  border: 1px solid var(--mp-border); display: grid; place-items: center; color: var(--mp-text-muted); overflow: hidden; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ===== Feature / cards ===== */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--mp-white); border: 1px solid var(--mp-border); border-radius: var(--mp-radius); padding: 1.6rem; }
.card__icon { display: none; }
.price-card { border: 1px solid var(--mp-border); border-radius: var(--mp-radius); padding: 1.5rem; background: #fff; }
.price-card__amt { font-family: var(--mp-font-head); font-size: 2rem; font-weight: 800; color: var(--mp-charcoal); }
.price-card__amt small { font-size: .9rem; font-weight: 500; color: var(--mp-text-muted); }

/* ===== Feature rows (editorial, no icon boxes) ===== */
.feat-rows { display: grid; gap: 0; }
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 1.4rem 0; border-top: 1px solid var(--mp-border); align-items: baseline; }
.feat-row:last-child { border-bottom: 1px solid var(--mp-border); }
.feat-row__claim { font-family: var(--mp-font-head); font-size: 1.25rem; font-weight: 700; color: var(--mp-charcoal); padding-left: .9rem; border-left: 3px solid var(--mp-yellow); }
.feat-row__detail { font-size: .95rem; color: var(--mp-text-muted); }

/* ===== Rate list (signature element) ===== */
.rate-list { list-style: none; padding: 0; margin: 0; }
.rate-item { display: flex; align-items: baseline; padding: .75rem 0; border-bottom: 1px solid var(--mp-border); }
.rate-item:first-child { border-top: 1px solid var(--mp-border); }
.rate-item__name { font-weight: 600; font-size: 1rem; color: var(--mp-charcoal); flex-shrink: 0; }
.rate-item__dots { flex: 1; margin: 0 .75rem; border-bottom: 1px dotted var(--mp-border); position: relative; top: -.3rem; }
.rate-item__price { flex-shrink: 0; font-family: var(--mp-font-head); font-size: 1.1rem; font-weight: 700; color: var(--mp-charcoal); }
.rate-addons { font-size: .88rem; color: var(--mp-text-muted); margin-top: 1rem; }

/* ===== Booking form ===== */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; margin-bottom: .35rem; font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; padding: .75rem .85rem; border: 1.5px solid var(--mp-border);
  border-radius: var(--mp-radius); font: inherit; background: #fff; color: var(--mp-text); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--mp-charcoal); }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.opt { border: 1.5px solid var(--mp-border); border-radius: 12px; padding: .9rem; cursor: pointer; display: block; }
.opt.sel { border-color: var(--mp-charcoal); background: #fffdf3; }
.opt input { position: absolute; opacity: 0; }
.opt__name { font-weight: 700; }
.opt__price { color: var(--mp-text-muted); font-size: .9rem; }
.win-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.win-opt { border: 1.5px solid var(--mp-border); background: #fff; border-radius: 999px; padding: .5rem 1rem; cursor: pointer; font: inherit; }
.win-opt.sel { background: var(--mp-charcoal); color: #fff; border-color: var(--mp-charcoal); }
.summary { position: sticky; top: 90px; border: 1px solid var(--mp-border); border-radius: 12px; padding: 1.5rem; background: var(--mp-bg-soft); }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; font-size: .95rem; }
.summary__total { border-top: 1px solid var(--mp-border); margin-top: .6rem; padding-top: .7rem; font-weight: 800; font-size: 1.2rem; }
.co-hint { color: var(--mp-text-muted); font-size: .9rem; }
.status { padding: .8rem 1rem; border-radius: var(--mp-radius); margin-top: 1rem; font-size: .95rem; }
.status.err { background: #fff0f0; color: #8a1c1c; border: 1px solid #f3c0c0; }
.status.info { background: #fffae6; color: #6b5600; border: 1px solid #f0e0a0; }

/* ===== Footer ===== */
.site-footer { background: var(--mp-charcoal); color: #d8d8d8; padding: 3rem 0 2rem; }
.site-footer a { color: #d8d8d8; text-decoration: none; }
.site-footer a:hover { color: var(--mp-yellow); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer__grid h4 { color: #fff; font-size: 1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .92rem; }
.footer__badges { display: flex; gap: .6rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.badge-pill { border: 1px solid #444; border-radius: 999px; padding: .3rem .8rem; font-size: .8rem; color: #cfcfcf; }
.footer__bottom { border-top: 1px solid #3a3a3a; margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; color: #9a9a9a;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ===== Trust strip ===== */
.trust-strip { border-top: 1px solid var(--mp-border); border-bottom: 1px solid var(--mp-border); }
.trust-strip__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; padding: 1rem 0; list-style: none; margin: 0; }
.trust-strip__item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--mp-grey-900); }

/* ===== How it works ===== */
.steps { display: grid; gap: 2rem; grid-template-columns: repeat(3, 1fr); margin-top: 2.5rem; }
.step__num { font-family: var(--mp-font-head); font-size: 3rem; font-weight: 800; color: var(--mp-charcoal); line-height: 1; margin-bottom: .5rem; display: block; border-bottom: 3px solid var(--mp-yellow); display: inline-block; padding-bottom: .1rem; }
.step h3 { font-size: 1.1rem; margin: .6rem 0 .3rem; font-family: var(--mp-font-body); }

/* ===== Photo mosaic / image grids ===== */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; height: 320px; border-radius: var(--mp-radius-lg); overflow: hidden; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo-grid__item { border-radius: var(--mp-radius); overflow: hidden; aspect-ratio: 1/1; }
.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.testimonial { background: #fff; border: 1px solid var(--mp-border); border-radius: var(--mp-radius); padding: 1.6rem; display: flex; flex-direction: column; gap: .3rem; }
.stars { color: #c89b00; font-size: 1rem; letter-spacing: .05em; }
.testimonial__quote { font-size: 1rem; color: var(--mp-grey-900); line-height: 1.65; flex: 1; }
.testimonial__author { font-weight: 700; font-size: .9rem; color: var(--mp-charcoal); margin-top: .6rem; }
.testimonial__loc { font-size: .82rem; color: var(--mp-text-muted); }

/* ===== Pull quote (featured testimonial) ===== */
.pull-quote { border-left: 4px solid var(--mp-yellow); padding-left: 2rem; margin: 0; }
.pull-quote__text { font-family: var(--mp-font-head); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: var(--mp-charcoal); line-height: 1.2; margin-bottom: .8rem; }
.pull-quote__attr { font-size: .9rem; color: var(--mp-text-muted); font-style: normal; }
.mini-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--mp-border); }
.mini-quote__text { font-size: .95rem; color: var(--mp-grey-900); line-height: 1.6; margin-bottom: .4rem; }
.mini-quote__attr { font-size: .82rem; color: var(--mp-text-muted); font-weight: 600; }

/* ===== Story split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split__img { border-radius: var(--mp-radius-lg); overflow: hidden; height: 380px; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Subscribe ===== */
.sub-box { background: none; padding: 0; text-align: left; }
.sub-box h2 { color: var(--mp-charcoal); }
.sub-box p { color: var(--mp-text-muted); margin-bottom: 0; }
.sub-form { display: flex; gap: .6rem; max-width: 480px; margin-top: 1.2rem; }
.sub-form input[type="email"] { flex: 1; padding: .8rem 1rem; border: 1.5px solid var(--mp-border); border-radius: var(--mp-radius); font: inherit; font-size: 1rem; color: var(--mp-text); background: #fff; }
.sub-form input[type="email"]:focus { outline: none; border-color: var(--mp-charcoal); }
#sub-status { margin-top: .7rem; font-size: .9rem; }
#sub-status.ok { color: #2a7a3b; }
#sub-status.err { color: #8a1c1c; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .nav__links { position: fixed; inset: 60px 0 auto 0; background: #fff; flex-direction: column; align-items: flex-start;
    padding: 1rem 6vw; border-bottom: 1px solid var(--mp-border); gap: .2rem; display: none; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .6rem 0; width: 100%; }
  .nav__toggle { display: block; }
  .booking-cols { grid-template-columns: 1fr !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split__img { height: 260px; }
  .mosaic { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .sub-form { flex-direction: column; }
}
@media (max-width: 520px) {
  .opt-grid, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; height: 200px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic img:nth-child(n+3) { display: none; }
}
