/* Lombok Horizon v2
   Editorial, earthy, Lombok-rooted: warm paper, deep rainforest green, clay.
   Sasak tenun-inspired diamond pattern as recurring motif. */
:root {
  --paper: #FAF7F1;
  --paper-deep: #F0EAE0;
  --ink: #241E17;
  --green: #6E4F32;
  --green-dark: #4A3625;
  --clay: #6E4F32;
  --clay-dark: #4A3625;
  --gold: #B98A44;
  --sand: #E7DCC7;
  --muted: #75695A;
  --line: #DFD6C5;
  --radius: 3px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* Nothing may push the page wider than the viewport. */
body { overflow-x: hidden; }
body {
  font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16.5px;
}
h1, h2, h3, .display {
  font-family: "Marcellus", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 0.5em; }
h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }
a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(16,64,58,0.35); text-underline-offset: 3px; }
a:hover { color: var(--clay); text-decoration-color: var(--clay); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; }
section { padding: 84px 0; }
.muted { color: var(--muted); }
.small { font-size: 0.87rem; }

/* Label / kicker: uppercase, tracked out */
.label-txt, .kicker {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay);
}
.kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--clay); }

/* Sasak tenun pattern band (diamond lattice) */
.tenun {
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12' viewBox='0 0 24 12'%3E%3Cpath d='M6 1 11 6 6 11 1 6Z' fill='none' stroke='%23B98A44' stroke-width='1.1'/%3E%3Cpath d='M18 1 23 6 18 11 13 6Z' fill='none' stroke='%238F8A55' stroke-width='1.1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.tenun.on-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12' viewBox='0 0 24 12'%3E%3Cpath d='M6 1 11 6 6 11 1 6Z' fill='none' stroke='%23B98A44' stroke-width='1.1'/%3E%3Cpath d='M18 1 23 6 18 11 13 6Z' fill='none' stroke='%23E7DCC7' stroke-width='1.1' stroke-opacity='0.5'/%3E%3C/svg%3E");
}

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 76px; }
/* Nav and the primary CTA cluster on the right, brand stays left. */
nav.main { margin-left: auto; }
/* Horizon-bar lockup. The rule between the words is the mark, so it is drawn
   in markup rather than shipped as an image: it inherits size and stays sharp. */
.brand {
  display: flex; align-items: center; gap: 0; color: var(--ink);
  font-family: "Marcellus", serif; letter-spacing: 0.12em; font-size: 1.02rem;
  text-decoration: none; white-space: nowrap;
}
.brand .bar {
  flex: 0 0 auto; width: 30px; height: 2px; margin: 0 13px;
  background: var(--gold);
}
.brand b { font-weight: 400; }
nav.main { display: flex; align-items: center; gap: 28px; }
nav.main a.nav-link {
  color: var(--ink); font-weight: 700; font-size: 0.82rem; text-decoration: none;
  letter-spacing: 0.09em; text-transform: uppercase;
}
nav.main a.nav-link:hover, nav.main a.nav-link.active { color: var(--clay); }

/* Buttons: rectangular, tracked uppercase */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: var(--radius);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: all 0.15s ease;
}
.btn-primary { background: var(--clay); color: var(--paper); }
.btn-primary:hover { background: var(--clay-dark); color: var(--paper); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--green-dark); }
.btn-light:hover { background: var(--sand); }

/* Hero */
.hero { background: var(--paper); padding: 96px 0 72px; border-bottom: 1px solid var(--line); position: relative; }
.hero h1 { max-width: 16em; margin-bottom: 0.5em; }
.hero .sub { font-size: 1.12rem; max-width: 38em; color: var(--muted); margin-bottom: 34px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust bar */
.trustbar { background: var(--green-dark); color: var(--sand); padding: 20px 0; }
.trustbar .wrap { display: flex; flex-wrap: wrap; gap: 10px 44px; justify-content: space-between; }
.trustbar div { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }
.trustbar .dia { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: 0 0 auto; }

/* Grids & panels */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #FDFAF4; border: 1px solid var(--line); border-top: 3px solid var(--clay);
  border-radius: var(--radius); padding: 32px 30px;
}
.card.green-top { border-top-color: var(--green); }
.card .num {
  font-family: "Marcellus", serif; font-size: 1.05rem; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 10px;
}

/* Photo placeholders: dark, patterned, captioned */
.ph {
  border-radius: var(--radius); position: relative; overflow: hidden;
  min-height: 280px; display: flex; align-items: flex-end;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='18' viewBox='0 0 36 18'%3E%3Cpath d='M9 2 16 9 9 16 2 9Z' fill='none' stroke='%23B98A44' stroke-opacity='0.16' stroke-width='1'/%3E%3Cpath d='M27 2 34 9 27 16 20 9Z' fill='none' stroke='%23B98A44' stroke-opacity='0.16' stroke-width='1'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #7A5C3E 0%, var(--green-dark) 70%);
  border: 1px solid var(--green-dark);
}
.ph.tall { min-height: 440px; }
.ph.sand-bg {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='18' viewBox='0 0 36 18'%3E%3Cpath d='M9 2 16 9 9 16 2 9Z' fill='none' stroke='%238F8A55' stroke-opacity='0.14' stroke-width='1'/%3E%3Cpath d='M27 2 34 9 27 16 20 9Z' fill='none' stroke='%238F8A55' stroke-opacity='0.14' stroke-width='1'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #DCD3B9 0%, #C3B893 100%);
  border-color: var(--line);
}
.ph .label {
  position: relative; z-index: 2; margin: 0; width: 100%;
  padding: 10px 16px; background: rgba(36, 30, 23, 0.82); color: var(--sand);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* Real photos */
.photo { display: block; width: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.photo.tall { height: 440px; }
.photo.mid { height: 208px; }
.photo.card-top { height: 280px; border: none; border-radius: 0; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery figure { margin: 0; }
.gallery .photo { height: 240px; }
.gallery figcaption { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 8px; }
.plan { display: block; width: 100%; background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }

/* Listing */
.listing-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.listing-card .body { padding: 28px 30px 32px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--paper); border-radius: var(--radius);
  padding: 6px 14px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.badge::before { content: ""; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.badge.soon { background: var(--sand); color: var(--ink); }
.badge.soon::before { background: var(--clay); }
.specs { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 16px 0 18px; padding: 0; list-style: none; }
.specs li { font-size: 0.9rem; color: var(--muted); }
.specs li strong { color: var(--ink); }
.price { font-family: "Marcellus", serif; font-size: 1.55rem; color: var(--clay-dark); }

/* Steps: numbered with rule */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step { display: flex; gap: 26px; padding: 28px 4px; border-bottom: 1px solid var(--line); }
.step .n {
  font-family: "Marcellus", serif; font-size: 1.15rem; color: var(--gold);
  letter-spacing: 0.08em; flex: 0 0 3rem; padding-top: 2px;
}

/* Callouts */
.note {
  background: var(--paper-deep); border: 1px solid var(--line); border-left: 3px solid var(--green);
  border-radius: var(--radius); padding: 22px 26px; margin: 30px 0;
}
.warn {
  background: #EDE4D2; border: 1px solid #D8CBAA; border-left: 3px solid #A8752B;
  border-radius: var(--radius); padding: 22px 26px; margin: 30px 0;
}

/* Tables */
table { width: 100%; border-collapse: collapse; margin: 26px 0; background: #FDFAF4; border: 1px solid var(--line); font-size: 0.93rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--green-dark); color: var(--sand); font-weight: 700; letter-spacing: 0.05em; }
tr:last-child td { border-bottom: none; }

/* Forms */
form.lead { display: grid; gap: 16px; }
form.lead .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 800; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 7px; color: var(--green-dark); }
input, select, textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--paper); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
/* Consent checkbox row */
.consent { display: flex; gap: 11px; align-items: flex-start; }
.consent input[type="checkbox"] { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--green); }
.consent label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.86rem; margin: 0; color: var(--muted); line-height: 1.5; }
/* Honeypot: hidden from humans, visible to naive bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Section tints */
.tint-sand { background: var(--paper-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tint-teal { background: var(--green-dark); color: var(--sand); }
.tint-teal h2, .tint-teal h3 { color: var(--paper); }
.tint-teal .muted { color: rgba(228, 217, 194, 0.78); }
.tint-teal a { color: var(--gold); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20em; margin: 0 auto 0.5em; }
.cta-band p { max-width: 36em; margin: 0 auto 30px; }

/* Footer */
footer.site { background: var(--ink); color: #BCB6A8; padding: 0; font-size: 0.88rem; }
footer.site .inner { padding: 56px 0 40px; }
footer.site a { color: var(--sand); }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer.site .wordmark { font-family: "Marcellus", serif; letter-spacing: 0.14em; color: var(--paper); font-size: 1.05rem; display: flex; align-items: center; }
footer.site .wordmark .bar { flex: 0 0 auto; width: 26px; height: 2px; margin: 0 12px; background: var(--gold); }
footer.site .legal { border-top: 1px solid #3A3831; padding-top: 22px; color: #8A8577; font-size: 0.79rem; }

/* Horizontal-scroll container for wide content (tables). Keeps the page itself
   from ever scrolling sideways. */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 26px 0; }
.table-wrap table { margin: 0; min-width: 34rem; }
.table-wrap:focus-visible { outline: 2px solid var(--green); }

@media (max-width: 880px) {
  .grid-3, .grid-2, .gallery, footer.site .cols, form.lead .row { grid-template-columns: 1fr; }
  section { padding: 56px 0; }

  /* Header: two rows. Brand + primary CTA on top, nav links below in a
     horizontally scrollable strip. The nav must stay reachable on phones,
     including the DE/EN switch. */
  header.site { position: static; }
  header.site .wrap { flex-wrap: wrap; height: auto; gap: 10px; padding-top: 12px; padding-bottom: 0; }
  .brand { font-size: 0.8rem; letter-spacing: 0.06em; gap: 0; }
  .brand .bar { width: 18px; margin: 0 8px; }
  header.site .btn { padding: 9px 13px; font-size: 0.62rem; letter-spacing: 0.08em; white-space: nowrap; }

  nav.main {
    order: 3; margin-left: 0; flex: 1 1 100%; gap: 22px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid var(--line);
    margin-right: -20px; margin-left: -20px;
    padding: 11px 20px;
  }
  nav.main::-webkit-scrollbar { display: none; }
  nav.main a.nav-link { white-space: nowrap; padding: 4px 0; }

  .hero { padding: 52px 0 44px; }
  .wrap { padding: 0 20px; }

  /* Fixed photo heights are tuned for a ~540px desktop column. At 335px they
     crop away most of a 16:9 frame, so switch to aspect ratios. */
  .photo.tall, .photo.mid, .photo.card-top, .gallery .photo { height: auto; aspect-ratio: 4 / 3; }
  .plan { aspect-ratio: 1 / 1; object-fit: contain; }

  .step { gap: 16px; padding: 24px 0; }
  .step .n { flex: 0 0 1.9rem; }

  .cta-band .btn { width: 100%; }
}

@media (max-width: 700px) {
  /* Cards used as form shells eat a quarter of the viewport in padding. */
  .card { padding: 24px 20px !important; }

  .trustbar .wrap { justify-content: flex-start; gap: 12px 26px; }

  /* Tap targets: 18px checkboxes and 19px footer links are both under the
     44px minimum. */
  .consent input[type="checkbox"] { width: 24px; height: 24px; margin-top: 0; }
  .consent label { padding: 3px 0; }
  footer.site .cols a { display: inline-block; padding: 7px 0; }

  .gallery { gap: 16px; }
}

/* Mobile sticky CTA bar. One primary action kept in thumb reach while
   scrolling on phones. Markup sits right before the footer on commercial
   pages; the contact page has none (it is the destination). Desktop: hidden. */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250, 247, 241, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .sticky-cta .btn { display: block; text-align: center; width: 100%; }
  body:has(.sticky-cta) { padding-bottom: 66px; }
}

/* Self-hosted fonts (GDPR: no Google Fonts / gstatic calls). Files in css/fonts/. */
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/manrope_v20_xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/marcellus_v14_wEO_EBrOk8hQLDvIAF81WPoK_kgXiYvO.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/marcellus_v14_wEO_EBrOk8hQLDvIAF81VvoK_kgXiQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Verified seal (img/brand/seal-verified-*.svg) */
.seal-note { display: flex; align-items: center; gap: 26px; }
.seal-note img { width: 98px; flex: 0 0 auto; }
.hero-seal { float: right; width: 118px; margin: 4px 0 16px 26px; }
/* These must stay AFTER the .seal-note / .hero-seal base rules above: a media
   query adds no specificity, so an earlier override would lose to them. */
@media (max-width: 700px) {
  .seal-note { flex-direction: column; align-items: flex-start; }
  .hero-seal { width: 88px; float: none; margin: 0 0 18px 0; }
}
