/* ==========================================================================
   Atlas Holly - marketing site (locked brand, 2026-08 redesign).

   Three happy colours carry the whole site - sun, leaf and sky - as big,
   calm, rounded panels on white. Ink for text and buttons. Type is LARGE
   everywhere (body 20px, nothing under 18px - not even the footer): the
   brief was "stor och lättläst text, enkelt och glatt".

   Display + body: Basier Square (Atipo Foundry; see docs/fonts/basier-square)
   with Familjen Grotesk as the self-hosted fallback until the licensed
   files are in place. IBM Plex Mono only for the odd URL.

   Tokens here are intentionally fixed - this is Atlas Holly's own site, not
   a themeable customer site. Class names are the block contract (see the
   templates under templates/marketing/blocks); only the look changed.
   ========================================================================== */

:root {
    /* the three */
    --ah-sun: #ffe566;
    --ah-leaf: #b5f2a3;
    --ah-sky: #8fd8f2;
    --ah-sun-deep: #c9a600;
    --ah-leaf-deep: #3f9f3e;
    --ah-sky-deep: #1b8fb9;
    --ah-sun-tint: #fff7cc;
    --ah-leaf-tint: #e9fbe3;
    --ah-sky-tint: #e3f5fc;

    /* ink + neutrals (blue-biased greys, never mid-grey) */
    --ah-ink: #1f1f2b;
    --ah-ink-card: #2a2a38;
    --ah-bg: #ffffff;
    --ah-surface: #ffffff;
    --ah-alt: #f5f5ee;

    --ah-bd-card: #e4e4dc;
    --ah-bd-input: #d9d9d1;
    --ah-bd-row: #e9e9e2;

    --ah-muted: #4b4b57;
    --ah-muted-2: #5a5a68;
    --ah-cap: #6b6b78;
    --ah-dash: #cfcfd8;
    --ah-list: #2c2c38;
    --ah-on-ink: #cfcfdb;

    /* legacy "lime" aliases - the shared plan matrix and a few blocks read
       these; they now resolve to leaf green so nothing has to be renamed. */
    --ah-lime: var(--ah-leaf);
    --ah-lime-tint: var(--ah-leaf-tint);
    --ah-lime-border: var(--ah-leaf-deep);
    --ah-green-dot: var(--ah-leaf-deep);
    --ah-accent: var(--ah-ink);

    --ah-display: 'Basier Square', 'Familjen Grotesk', system-ui, sans-serif;
    --ah-body: 'Basier Square', 'Familjen Grotesk', system-ui, sans-serif;
    --ah-mono: 'IBM Plex Mono', ui-monospace, monospace;

    --ah-shadow-mock: 0 30px 70px -30px rgba(31, 31, 43, .30);
    --ah-shadow-card: 0 18px 44px -30px rgba(31, 31, 43, .22);
    --ah-shadow-pop: 0 20px 50px -28px rgba(31, 31, 43, .35);

    --ah-radius: 28px;
    --ah-radius-sm: 16px;
    --ah-max: 1240px;
    --ah-pad: clamp(16px, 4vw, 40px);
    --ah-photo: repeating-linear-gradient(45deg, rgba(31, 31, 43, .06) 0 10px, rgba(31, 31, 43, .02) 10px 20px), #eeeee8;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ah-body);
    font-size: 20px;
    line-height: 1.55;
    color: var(--ah-ink);
    background: var(--ah-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--ah-display); font-weight: 600; margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--ah-sky-deep); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }

.container { width: 100%; max-width: var(--ah-max); margin: 0 auto; padding: 0 var(--ah-pad); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 100; }

/* ===== Buttons ============================================================ */
.ah-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--ah-display); font-weight: 600; font-size: 21px;
    padding: 19px 30px; border-radius: 14px; text-decoration: none;
    border: 2.5px solid transparent; cursor: pointer; transition: transform .12s ease, opacity .12s ease, background .12s ease;
    line-height: 1;
}
.ah-btn:hover { transform: translateY(-2px); }
.ah-btn--primary { background: var(--ah-ink); color: #ffffff; }
.ah-btn--primary:hover { background: #0f0f17; }
.ah-btn--secondary { background: transparent; border-color: var(--ah-ink); color: var(--ah-ink); }
.ah-btn--secondary:hover { background: rgba(31,31,43,.06); }
.ah-btn--sm { font-size: 19px; padding: 13px 22px; }
.ah-on-lime .ah-btn--secondary { background: transparent; }

/* ===== Eyebrow / badges =================================================== */
.ah-badge {
    display: inline-flex; align-items: flex-start; gap: 10px; text-align: left;
    background: #fff; border: 2px solid var(--ah-bd-input); border-radius: 16px;
    padding: 9px 18px; font-size: 18px; font-weight: 600; color: var(--ah-muted); line-height: 1.35;
}
.ah-badge__dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--ah-leaf-deep); margin-top: 7px; }
.ah-badge--lime { background: var(--ah-sun); border: none; color: var(--ah-ink); font-weight: 700; font-size: 18px; padding: 8px 16px; }
.ah-mono { font-family: var(--ah-mono); }

/* ===== NAV-01 - white bar, the logo alone, big links, ink button ========= */
.c-nav { background: var(--ah-bg); position: sticky; top: 0; z-index: 50; border-bottom: 2px solid var(--ah-bd-row); }
.c-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px var(--ah-pad); min-height: 84px; }
.c-nav__logo { display: inline-flex; align-items: center; color: var(--ah-ink); text-decoration: none; }
.c-nav__logo-img { max-height: 56px; width: auto; }
.c-nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.c-nav__link { color: var(--ah-ink); text-decoration: none; font-size: 20px; font-weight: 600; padding: 6px 0; border-bottom: 3px solid transparent; }
.c-nav__link:hover { border-bottom-color: var(--ah-ink); }
.c-nav__link--button { background: var(--ah-ink); color: #fff; padding: 14px 22px; border-radius: 12px; font-weight: 600; border-bottom: 0; font-family: var(--ah-display); }
.c-nav__link--button:hover { background: #0f0f17; border-bottom: 0; }
.c-nav__hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 10px; }
.c-nav__hamburger span { width: 28px; height: 3px; border-radius: 3px; background: var(--ah-ink); display: block; }
.c-nav__mobile { position: fixed; inset: 0; background: var(--ah-sun); transform: translateX(100%); transition: transform .25s ease; z-index: 60; padding: 5.5rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.4rem; align-items: center; text-align: center; }
.c-nav__mobile.is-open { transform: translateX(0); }
.c-nav__mobile a { font-family: var(--ah-display); font-size: 28px; color: var(--ah-ink); text-decoration: none; font-weight: 600; }
.c-nav__mobile-close { position: absolute; top: 1.1rem; right: 1.1rem; font-size: 2.4rem; background: none; border: 0; cursor: pointer; line-height: 1; color: var(--ah-ink); }
@media (max-width: 860px) {
    .c-nav__links { display: none; }
    .c-nav__hamburger { display: flex; }
    .c-nav__inner { min-height: 72px; }
    .c-nav__logo-img { max-height: 44px; }
}

/* Language switcher */
.c-lang { position: relative; }
.c-lang__toggle { background: none; border: 2px solid var(--ah-ink); border-radius: 999px; padding: .45rem .9rem; font: inherit; font-size: 18px; font-weight: 700; cursor: pointer; color: var(--ah-ink); }
.c-lang__menu { position: absolute; right: 0; top: calc(100% + .5rem); background: #fff; border: 2px solid var(--ah-bd-input); border-radius: 14px; box-shadow: var(--ah-shadow-pop); list-style: none; margin: 0; padding: .4rem; min-width: 200px; display: none; z-index: 70; }
.c-lang.is-open .c-lang__menu { display: block; }
.c-lang__menu a { display: block; padding: .6rem .8rem; border-radius: 10px; color: var(--ah-ink); text-decoration: none; font-size: 19px; }
.c-lang__menu a:hover { background: var(--ah-alt); }
.c-lang__menu a[aria-current="true"] { font-weight: 700; background: var(--ah-sun-tint); }
.c-nav__mobile-langs { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 2px solid rgba(31,31,43,.15); display: flex; flex-wrap: wrap; gap: .9rem 1.2rem; justify-content: center; }
.c-nav__mobile-langs a { font-size: 20px; font-family: var(--ah-body); }

/* ===== FOOTER-01 - white, big text, the three-colour stripe ============== */
.c-footer { background: var(--ah-bg); color: var(--ah-ink); padding: 0 0 40px; margin-top: 48px; font-size: 19px; }
.c-footer__inner { max-width: var(--ah-max); margin: 0 auto; padding: 0 var(--ah-pad); }
.c-footer__stripe { height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--ah-sun) 0 33.34%, var(--ah-leaf) 33.34% 66.67%, var(--ah-sky) 66.67% 100%); margin: 0 0 52px; }
.c-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; padding-bottom: 44px; border-bottom: 2px solid var(--ah-bd-row); flex-wrap: wrap; }
.c-footer__brand { max-width: 460px; }
.c-footer__name { font-family: var(--ah-display); font-weight: 600; font-size: clamp(30px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 22px; text-wrap: balance; }
.c-footer__about { margin: 0 0 18px; }
.c-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.c-footer__col { display: flex; flex-direction: column; gap: 12px; }
.c-footer__heading { font-family: var(--ah-display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.c-footer__col a { color: var(--ah-ink); text-decoration: none; }
.c-footer__col a:hover { text-decoration: underline; }
.c-footer__logo { display: flex; justify-content: center; padding: 40px 0 24px; }
.c-footer__logo img { height: 72px; width: auto; }
.c-footer__legal { display: flex; justify-content: space-between; gap: 14px 28px; padding-top: 22px; border-top: 2px solid var(--ah-bd-row); font-size: 18px; color: var(--ah-muted); flex-wrap: wrap; }
.c-footer__legal a { color: var(--ah-muted); }
@media (max-width: 720px) {
    .c-footer__top { flex-direction: column; align-items: flex-start; }
    .c-footer__cols { gap: 32px 44px; }
    .c-footer__legal { flex-direction: column; }
}

/* ===== Generic section rhythm ============================================ */
.ah-section { padding: 64px 0; }
.ah-section--tight { padding: 48px 0; }
.ah-section__inner { max-width: var(--ah-max); margin: 0 auto; padding: 0 var(--ah-pad); }
.ah-section-head { max-width: 780px; margin: 0 0 44px; }
/* ONE headline size for the whole site - heroes and CTA bands included.
   Giovanni 2026-08-23: never headlines bigger than this. */
.ah-h2 { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 4.8vw, 60px); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 16px; }
.ah-lede { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.5; color: var(--ah-muted); margin: 0; max-width: 40ch; }
@media (max-width: 700px) { .ah-section { padding: 40px 0; } .ah-section--tight { padding: 32px 0; } }

/* A reusable coloured panel. Blocks opt in by class; the section itself
   stays white so the panels read as objects on the page. */
.ah-panel { border-radius: var(--ah-radius); padding: clamp(32px, 5vw, 72px); }
.ah-panel--sun { background: var(--ah-sun); }
.ah-panel--leaf { background: var(--ah-leaf); }
.ah-panel--sky { background: var(--ah-sky); }
@media (max-width: 700px) { .ah-panel { border-radius: 20px; } }

/* ==========================================================================
   BLOCKS
   ========================================================================== */

/* ---- HERO-01: text only, on a leaf panel (the mock is gone on purpose) -- */
.ah-hero1 { padding: 24px var(--ah-pad) 0; }
.ah-hero1__head { max-width: var(--ah-max); margin: 0 auto; background: var(--ah-leaf); border-radius: var(--ah-radius); padding: clamp(36px, 5.5vw, 84px); text-align: left; }
.ah-hero1__head .ah-badge { background: rgba(255,255,255,.75); border-color: transparent; }
.ah-hero1__title { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 4.8vw, 60px); line-height: 1.06; letter-spacing: -0.02em; margin: 22px 0 20px; max-width: 22ch; }
.ah-rotator { color: var(--ah-ink); }
.ah-caret { display: inline-block; width: 4px; height: 0.82em; margin-left: 6px; background: var(--ah-ink); vertical-align: baseline; transform: translateY(0.08em); animation: ah-caret-blink 0.9s steps(1) infinite; border-radius: 2px; }
@keyframes ah-caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ah-caret { animation: none; } }
.ah-hero1__sub { font-size: clamp(21px, 1.8vw, 26px); line-height: 1.5; color: #3a3a46; margin: 0; max-width: 34ch; }
.ah-hero1__actions { display: flex; gap: 14px; margin: 32px 0 18px; flex-wrap: wrap; }
.ah-hero1__trust { font-size: 19px; color: #3a3a46; margin: 0; }
@media (max-width: 700px) { .ah-hero1 { padding-top: 14px; } .ah-hero1__head { border-radius: 20px; } }

/* ---- HERO-02: split with photo + booking card ---- */
.ah-hero2 { padding: 24px var(--ah-pad) 0; }
.ah-hero2 .container { max-width: var(--ah-max); background: var(--ah-sky); border-radius: var(--ah-radius); padding: clamp(32px, 5vw, 72px); }
.ah-hero2__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.ah-hero2__title { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 4.8vw, 60px); line-height: 1.06; letter-spacing: -0.02em; margin: 22px 0 18px; }
.ah-hero2__sub { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.5; color: #3a3a46; margin: 0 0 28px; max-width: 34ch; }
.ah-hero2__actions { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.ah-hero2__trust { font-size: 19px; color: #3a3a46; margin: 0; }
.ah-hero2__media { position: relative; }
.ah-hero2__photo { height: 470px; border-radius: 22px; background: var(--ah-photo); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.ah-bookcard { position: absolute; left: 20px; right: 20px; bottom: 20px; background: #fff; border-radius: 16px; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--ah-shadow-pop); gap: 14px; }
.ah-bookcard__eyebrow { font-weight: 700; font-size: 18px; color: var(--ah-muted); margin-bottom: 4px; }
.ah-bookcard__title { font-family: var(--ah-display); font-weight: 600; font-size: 21px; }
.ah-bookcard__pill { background: var(--ah-ink); color: #fff; font-size: 18px; font-weight: 700; padding: 10px 18px; border-radius: 12px; white-space: nowrap; }
@media (max-width: 820px) { .ah-hero2__grid { grid-template-columns: 1fr; } .ah-hero2__photo { height: 320px; } }

/* ---- HERO-03: video background ---- */
.ah-hero3 { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--ah-ink); }
.ah-hero3__video, .ah-hero3__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ah-hero3__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,31,43,.45) 0%, rgba(31,31,43,.72) 100%); }
.ah-hero3__inner { position: relative; max-width: 820px; padding: 64px var(--ah-pad); }
.ah-hero3 .ah-badge { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.3); color: #f2f2f6; }
.ah-hero3 .ah-badge__dot { background: var(--ah-leaf); }
.ah-hero3__title { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 4.8vw, 60px); line-height: 1.06; letter-spacing: -0.02em; color: #fff; margin: 24px 0 18px; }
.ah-hero3__sub { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.5; color: #dcdce6; margin: 0 0 30px; }
.ah-hero3__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ah-hero3 .ah-btn--primary { background: var(--ah-sun); color: var(--ah-ink); }
.ah-hero3 .ah-btn--secondary { border-color: rgba(255,255,255,.6); color: #fff; }

/* ---- HERO-04: statement on a sun panel ---- */
.ah-hero4 { padding: 24px var(--ah-pad) 0; text-align: left; }
.ah-hero4__inner { max-width: var(--ah-max); margin: 0 auto; background: var(--ah-sun); border-radius: var(--ah-radius); padding: clamp(36px, 5.5vw, 84px); }
.ah-hero4__title { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 4.8vw, 60px); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 22px; max-width: 22ch; }
.ah-hero4__sub { font-size: clamp(21px, 1.8vw, 26px); line-height: 1.5; color: #3a3a46; margin: 0 0 32px; max-width: 34ch; }
.ah-hero4__actions { display: flex; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.ah-hero4__trust { font-size: 19px; color: #3a3a46; margin: 0; }

/* ---- FEATURE-01: pencil story ---- */
.ah-feat1__grid { max-width: var(--ah-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.ah-feat1__title { font-family: var(--ah-display); font-weight: 600; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.06; letter-spacing: -0.02em; margin: 18px 0 18px; }
.ah-feat1__body p { font-size: 20px; line-height: 1.55; color: var(--ah-muted); margin: 0 0 16px; }
.ah-feat1__body p:last-child { margin-bottom: 0; }
.ah-adminmock { background: #fff; border: 2px solid var(--ah-bd-card); border-radius: 20px; overflow: hidden; box-shadow: var(--ah-shadow-card); font-size: 18px; }
.ah-adminmock__row { display: flex; }
.ah-adminmock__side { width: 190px; background: var(--ah-sun); color: var(--ah-ink); padding: 18px 0; font-size: 18px; flex-shrink: 0; }
.ah-adminmock__side-h { padding: 8px 18px; font-weight: 700; font-size: 18px; color: #6b6200; }
.ah-adminmock__side-item { padding: 10px 18px; }
.ah-adminmock__side-item--active { background: var(--ah-ink); color: #fff; font-weight: 700; border-radius: 0 999px 999px 0; margin-right: 14px; }
.ah-adminmock__panel { flex: 1; padding: 24px; }
.ah-adminmock__crumb { font-weight: 700; font-size: 18px; color: var(--ah-cap); margin-bottom: 8px; }
.ah-adminmock__title { font-family: var(--ah-display); font-weight: 600; font-size: 22px; margin-bottom: 14px; }
.ah-adminmock__label { font-size: 18px; font-weight: 700; color: var(--ah-muted-2); margin-bottom: 6px; }
.ah-adminmock__input { background: #fff; border: 2px solid var(--ah-bd-input); border-radius: 10px; padding: 10px 12px; font-size: 19px; margin-bottom: 12px; }
.ah-adminmock__input--active { border-color: var(--ah-sky-deep); }
.ah-adminmock__input--sm { max-width: 160px; margin-bottom: 16px; }
.ah-adminmock__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ah-adminmock__save { background: var(--ah-ink); color: #fff; font-size: 18px; font-weight: 700; padding: 10px 18px; border-radius: 10px; }
.ah-adminmock__preview { color: var(--ah-cap); font-size: 18px; font-weight: 600; padding: 10px 8px; }
.ah-pencil { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: var(--ah-sun); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(31,31,43,.25); }
.ah-pencil--h { top: -12px; right: -36px; }
.ah-pencil--p { bottom: -8px; right: -32px; }
.ah-pencil--row { top: -10px; right: -10px; }
@media (max-width: 820px) { .ah-feat1__grid { grid-template-columns: 1fr; gap: 36px; } .ah-adminmock__side { width: 150px; } }

/* ---- FEATURE-02: booking 3-step (three cards, sun/leaf/sky labels) ---- */
.ah-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; max-width: var(--ah-max); margin: 0 auto; }
.ah-step { background: #fff; border: 2px solid var(--ah-bd-card); border-radius: var(--ah-radius-sm); padding: 24px; }
.ah-step--ink { background: var(--ah-ink); color: #fff; border-color: var(--ah-ink); }
.ah-step__label { display: inline-block; font-weight: 700; font-size: 18px; color: var(--ah-ink); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; background: var(--ah-sun); }
.ah-step:nth-child(2) .ah-step__label { background: var(--ah-leaf); }
.ah-step:nth-child(3) .ah-step__label { background: var(--ah-sky); }
.ah-step--ink .ah-step__label { color: var(--ah-ink); }
.ah-optlist { display: flex; flex-direction: column; gap: 8px; }
.ah-opt { display: flex; align-items: center; gap: 10px; border: 2px solid var(--ah-bd-input); border-radius: 12px; padding: 12px 14px; font-size: 18px; color: var(--ah-muted); }
.ah-opt--sel { border-color: var(--ah-ink); background: var(--ah-leaf-tint); font-weight: 700; color: var(--ah-ink); }
.ah-opt__radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ah-dash); background: #fff; flex-shrink: 0; }
.ah-opt--sel .ah-opt__radio { border: 6px solid var(--ah-ink); }
.ah-opt__up { margin-top: 14px; border-top: 2px dashed var(--ah-bd-input); padding-top: 12px; font-size: 18px; color: var(--ah-muted-2); display: flex; justify-content: space-between; }
.ah-slots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.ah-slot { border: 2px solid var(--ah-bd-input); border-radius: 10px; padding: 10px 0; text-align: center; font-size: 18px; color: var(--ah-muted); }
.ah-slot--sel { border-color: var(--ah-ink); background: var(--ah-sun); font-weight: 700; color: var(--ah-ink); }
.ah-slot--taken { color: var(--ah-dash); text-decoration: line-through; }
.ah-step__day { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.ah-step__note { margin-top: 14px; font-size: 18px; color: var(--ah-muted-2); }
.ah-bookline { background: var(--ah-ink-card); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.ah-bookline__top { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 6px; }
.ah-bookline__top span { color: var(--ah-leaf); font-weight: 700; }
.ah-bookline__meta { font-size: 18px; color: var(--ah-on-ink); }
.ah-statusline { display: flex; align-items: center; gap: 9px; font-size: 18px; color: var(--ah-on-ink); margin-bottom: 7px; }
.ah-statusline__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ah-leaf); flex-shrink: 0; }
.ah-steps-foot { font-size: 19px; color: var(--ah-muted); margin: 24px 0 0; }
@media (max-width: 820px) { .ah-steps { grid-template-columns: 1fr; } }

/* ---- INDUSTRIES-01 ---- */
.ah-ind__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; max-width: var(--ah-max); margin-inline: auto; }
.ah-ind__head .ah-h2 { max-width: 14ch; margin: 0; }
.ah-ind__intro { font-size: 20px; color: var(--ah-muted); max-width: 38ch; margin: 0; line-height: 1.5; }
.ah-ind__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--ah-max); margin: 0 auto; }
.ah-indcard { border: 2px solid var(--ah-bd-card); border-radius: var(--ah-radius-sm); overflow: hidden; background: #fff; }
.ah-indcard__photo { height: 160px; background: var(--ah-photo); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.ah-indcard__body { padding: 20px 22px; }
.ah-indcard__title { font-family: var(--ah-display); font-weight: 600; font-size: 22px; margin-bottom: 6px; }
.ah-indcard__desc { font-size: 18px; line-height: 1.45; color: var(--ah-muted); margin: 0; }
@media (max-width: 980px) { .ah-ind__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ah-ind__grid { grid-template-columns: 1fr; } }

/* ---- TESTIMONIALS-01 ---- */
.ah-quotes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; max-width: var(--ah-max); margin: 0 auto; }
.ah-quote { border-radius: var(--ah-radius-sm); padding: 28px; margin: 0; background: var(--ah-sun-tint); }
.ah-quote:nth-child(2) { background: var(--ah-leaf-tint); }
.ah-quote:nth-child(3) { background: var(--ah-sky-tint); }
.ah-quote__text { font-family: var(--ah-display); font-weight: 500; font-size: 23px; line-height: 1.4; margin: 0 0 18px; }
.ah-quote__cap { display: flex; align-items: center; gap: 12px; }
.ah-quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ah-photo); background-size: cover; background-position: center; flex-shrink: 0; }
.ah-quote__who { font-size: 18px; color: var(--ah-muted); line-height: 1.4; }
.ah-quote__who strong { color: var(--ah-ink); }
@media (max-width: 820px) { .ah-quotes { grid-template-columns: 1fr; } }

/* ---- PRICING-01: tier cards ---- */
.ah-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; max-width: var(--ah-max); margin: 0 auto; }
.ah-tier { border: 2px solid var(--ah-bd-card); border-radius: 20px; padding: 28px 24px; display: flex; flex-direction: column; position: relative; background: #fff; }
.ah-tier--pop { border-color: var(--ah-leaf-deep); background: var(--ah-leaf-tint); box-shadow: var(--ah-shadow-pop); }
.ah-tier__pop { position: absolute; top: -15px; left: 22px; background: var(--ah-leaf); font-family: var(--ah-display); font-size: 16px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.ah-tier__name { font-family: var(--ah-display); font-weight: 600; font-size: 24px; }
.ah-tier__price { margin: 12px 0 6px; }
.ah-tier__price b { font-family: var(--ah-display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; }
.ah-tier__price span { color: var(--ah-cap); font-size: 18px; }
.ah-tier__tag { font-size: 18px; color: var(--ah-muted); margin: 0 0 18px; }
.ah-tier__feats { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; font-size: 18px; color: var(--ah-list); }
.ah-tier__feats li.ah-tier__inherit { color: var(--ah-cap); }
.ah-tier__cta { margin-top: auto; text-align: center; border: 2.5px solid var(--ah-ink); color: var(--ah-ink); text-decoration: none; font-family: var(--ah-display); font-size: 19px; font-weight: 600; padding: 13px 0; border-radius: 12px; }
.ah-tier--pop .ah-tier__cta { background: var(--ah-ink); color: #fff; }
@media (max-width: 980px) { .ah-tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ah-tiers { grid-template-columns: 1fr; } }

/* ---- PRICING-02: comparison matrix (shared component, plan-matrix.css) -- */
.ah-matrix__foot { font-size: 19px; color: var(--ah-muted); margin: 22px 0 0; }

/* ---- DEMO chips (shared) ---- */
.ah-demolink { display: flex; align-items: center; gap: 14px; background: #fff; border: 2px solid var(--ah-bd-card); border-radius: 14px; padding: 16px 18px; text-decoration: none; color: var(--ah-ink); font-size: 19px; }
.ah-demolink:hover { border-color: var(--ah-ink); }
.ah-demolink__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ah-leaf-deep); flex-shrink: 0; }
.ah-demolink__url { font-family: var(--ah-mono); font-size: 18px; color: var(--ah-list); overflow: hidden; text-overflow: ellipsis; }
.ah-demolink__go { margin-left: auto; font-size: 18px; font-weight: 700; white-space: nowrap; }

/* ---- DEMO-01: split, on a sky panel ---- */
.ah-demo1 { padding: 32px var(--ah-pad); }
.ah-demo1__grid { max-width: var(--ah-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; background: var(--ah-sky); border-radius: var(--ah-radius); padding: clamp(32px, 5vw, 72px); }
.ah-demo1 .ah-h2 { font-size: clamp(32px, 4vw, 48px); }
.ah-demo1__desc { font-size: 20px; line-height: 1.5; color: #3a3a46; margin: 0 0 24px; }
.ah-demo1__links { display: flex; flex-direction: column; gap: 12px; }
.ah-demo1 .ah-faqitem__q { color: var(--ah-ink); }
.ah-demo1 .ah-faqitem, .ah-demo1 .ah-faq__list { border-color: rgba(31,31,43,.2); }
@media (max-width: 820px) { .ah-demo1__grid { grid-template-columns: 1fr; gap: 36px; border-radius: 20px; } }

/* ---- DEMO-02: centered list ---- */
.ah-demo2 { max-width: 720px; margin: 0 auto; text-align: center; }
.ah-demo2 .ah-lede, .ah-demo2__sub { margin-inline: auto; }
.ah-demo2__sub { font-size: 20px; line-height: 1.5; color: var(--ah-muted); margin: 0 auto 32px; }
.ah-demo2__links { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.ah-demo2 .ah-demolink { background: var(--ah-alt); border-radius: 16px; padding: 18px 22px; }
.ah-demo2__foot { font-size: 19px; color: var(--ah-muted); margin: 24px 0 0; }

/* ---- DEMO-03: photo cards ---- */
.ah-demo3__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; max-width: var(--ah-max); margin: 0 auto; }
.ah-democard { text-decoration: none; color: var(--ah-ink); background: #fff; border: 2px solid var(--ah-bd-card); border-radius: var(--ah-radius-sm); overflow: hidden; display: flex; flex-direction: column; }
.ah-democard:hover { border-color: var(--ah-ink); }
.ah-democard__photo { height: 190px; background: var(--ah-photo); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.ah-democard__body { padding: 22px; }
.ah-democard__name { font-family: var(--ah-display); font-weight: 600; font-size: 24px; margin-bottom: 12px; }
.ah-democard__pill { display: flex; align-items: center; gap: 10px; background: var(--ah-alt); border-radius: 999px; padding: 10px 16px; font-size: 18px; }
.ah-democard__pill .ah-demolink__dot { width: 10px; height: 10px; }
.ah-democard__pill span.url { font-family: var(--ah-mono); font-size: 17px; color: var(--ah-list); }
@media (max-width: 820px) { .ah-demo3__grid { grid-template-columns: 1fr; } }

/* ---- FAQ-01: sticky ---- */
.ah-faq__grid { max-width: var(--ah-max); margin: 0 auto; display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: start; }
.ah-faq__left { position: sticky; top: 110px; }
.ah-faq__left .ah-h2 { margin-bottom: 16px; }
.ah-faq__desc { font-size: 20px; line-height: 1.5; color: var(--ah-muted); margin: 0 0 28px; }
.ah-support { background: var(--ah-sun); border-radius: var(--ah-radius-sm); padding: 26px 28px; }
.ah-support__title { font-family: var(--ah-display); font-weight: 600; font-size: 24px; margin-bottom: 8px; }
.ah-support__desc { font-size: 19px; line-height: 1.5; color: #3a3a46; margin: 0 0 18px; }
.ah-support__cta { display: inline-block; background: var(--ah-ink); color: #fff; text-decoration: none; font-family: var(--ah-display); font-size: 19px; font-weight: 600; padding: 13px 22px; border-radius: 12px; }
.ah-faq__list { border-top: 2px solid var(--ah-bd-row); }
.ah-faqitem { border-bottom: 2px solid var(--ah-bd-row); padding: 0; }
.ah-faqitem__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--ah-display); font-size: clamp(21px, 2vw, 26px); font-weight: 600; color: var(--ah-ink); padding: 24px 0; line-height: 1.25; }
.ah-faqitem__sign { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid currentColor; display: inline-grid; place-items: center; font-size: 26px; font-weight: 400; line-height: 1; transition: background .2s ease; }
.ah-faqitem.is-open .ah-faqitem__sign { background: var(--ah-sun); border-color: var(--ah-sun); }
.ah-faqitem__a { font-size: 20px; line-height: 1.55; color: var(--ah-muted); margin: 0; max-width: 64ch; overflow: hidden; max-height: 0; transition: max-height .25s ease, padding .25s ease; padding: 0; }
.ah-faqitem.is-open .ah-faqitem__a { max-height: 600px; padding: 0 0 26px; }
@media (max-width: 820px) { .ah-faq__grid { grid-template-columns: 1fr; gap: 32px; } .ah-faq__left { position: static; } }

/* ==========================================================================
   Contact + FAQ index pages
   ========================================================================== */
.c-section { padding: 64px 0; }
.c-muted { color: var(--ah-muted); }
.c-contact__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.c-contact__intro h1 { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.02em; margin-bottom: .75rem; }
.c-form { display: flex; flex-direction: column; gap: 1.1rem; }
.c-form__row { display: flex; flex-direction: column; gap: .4rem; }
.c-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.c-form label { font-weight: 700; font-size: 19px; }
.c-form__opt { font-weight: 400; color: var(--ah-muted); font-size: 18px; }
.c-form input, .c-form textarea { width: 100%; padding: .85rem 1rem; border: 2px solid var(--ah-bd-input); border-radius: 12px; font: inherit; font-size: 19px; background: #fff; color: inherit; }
.c-form input:focus, .c-form textarea:focus { outline: none; border-color: var(--ah-sky-deep); }
.c-form__error { background: #fde8e8; color: #8a1f1f; padding: .85rem 1rem; border-radius: 12px; font-size: 19px; }
.c-form__hp { position: absolute; left: -9999px; }
.c-form .errorlist { color: #8a1f1f; list-style: none; margin: 0; padding: 0; font-size: 18px; }
.c-form .ah-btn { align-self: flex-start; }
@media (max-width: 820px) { .c-contact__inner { grid-template-columns: 1fr; gap: 2rem; } .c-form__grid { grid-template-columns: 1fr; } }

.c-faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.c-faq-card { display: block; padding: 1.6rem; border-radius: var(--ah-radius-sm); color: inherit; text-decoration: none; background: var(--ah-sun-tint); }
.c-faq-card:nth-child(3n+2) { background: var(--ah-leaf-tint); }
.c-faq-card:nth-child(3n) { background: var(--ah-sky-tint); }
.c-faq-card__title { font-family: var(--ah-display); font-weight: 600; font-size: 24px; margin-bottom: .4rem; }
.c-faq-card__count { display: inline-block; margin-top: .75rem; font-size: 18px; font-weight: 700; }
.c-faq { margin-top: 1.5rem; border-top: 2px solid var(--ah-bd-row); }
.c-faq__item { border-bottom: 2px solid var(--ah-bd-row); padding: 0; }
.c-faq__q { cursor: pointer; font-family: var(--ah-display); font-weight: 600; font-size: 22px; padding: 1.2rem 0; list-style: none; }
.c-faq__q::-webkit-details-marker { display: none; }
.c-faq__a { padding: 0 0 1.3rem; color: var(--ah-muted); max-width: 64ch; }
.c-page-head { max-width: 780px; margin: 0 0 2.5rem; }
.c-page-head h1 { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.02em; }

/* ==========================================================================
   FEATURE-03 - detail split (bullets in a tinted box) + CTA-01 - sun panel
   ========================================================================== */
.ah-fd { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.ah-fd--flip .ah-fd__story { order: 2; }
.ah-fd--flip .ah-fd__bullets { order: 1; }
.ah-fd__kicker { font-family: var(--ah-display); font-size: 20px; font-weight: 600; color: var(--ah-muted); margin-bottom: 12px; }
.ah-fd .ah-h2 { font-size: clamp(32px, 4.2vw, 52px); }
.ah-fd__body { font-size: 20px; line-height: 1.55; color: var(--ah-muted); margin-bottom: 22px; max-width: 46ch; }
.ah-fd__body p { margin: 0 0 14px; }
.ah-fd__body p:last-child { margin-bottom: 0; }
.ah-fd__story .ah-btn { margin-top: 4px; }
.ah-fd__bullets { list-style: none; margin: 0; padding: clamp(26px, 3vw, 36px); border-radius: var(--ah-radius); background: var(--ah-leaf); display: flex; flex-direction: column; gap: 16px; }
/* The tint cycles sun / leaf / sky down the page, one per feature block. */
.ah-section:nth-of-type(3n+1) .ah-fd__bullets { background: var(--ah-sun); }
.ah-section:nth-of-type(3n+2) .ah-fd__bullets { background: var(--ah-leaf); }
.ah-section:nth-of-type(3n) .ah-fd__bullets { background: var(--ah-sky); }
.ah-fd__bullets li { position: relative; padding-left: 40px; font-size: 20px; line-height: 1.45; font-weight: 600; color: var(--ah-ink); }
.ah-fd__bullets li::before { content: ""; position: absolute; left: 0; top: 1px; width: 26px; height: 26px; border-radius: 50%; background: var(--ah-ink) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 12.5 10 16.5 18 8"/></svg>') center/15px 15px no-repeat; }
@media (max-width: 820px) {
    .ah-fd { grid-template-columns: 1fr; gap: 28px; }
    .ah-fd--flip .ah-fd__story { order: 1; }
    .ah-fd--flip .ah-fd__bullets { order: 2; }
    .ah-fd__bullets { border-radius: 20px; }
}

.ah-ctaband { padding: 32px var(--ah-pad) 0; text-align: left; }
.ah-ctaband__inner { max-width: var(--ah-max); margin: 0 auto; background: var(--ah-sun); border-radius: var(--ah-radius); padding: clamp(36px, 5vw, 72px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.ah-ctaband__title { font-family: var(--ah-display); font-weight: 600; font-size: clamp(36px, 4.8vw, 60px); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 14px; grid-column: 1; }
.ah-ctaband__sub { font-size: clamp(21px, 1.7vw, 25px); line-height: 1.5; color: #3a3a46; margin: 0; max-width: 36ch; grid-column: 1; }
.ah-ctaband__side { grid-column: 2; grid-row: 1 / span 2; align-self: center; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.ah-ctaband__trust { font-size: 19px; color: #3a3a46; margin: 0; }
/* A band with words only (no button) reads as one wide statement. */
.ah-ctaband__inner:not(:has(.ah-ctaband__side)) { grid-template-columns: 1fr; }
.ah-ctaband__inner:not(:has(.ah-ctaband__side)) .ah-ctaband__title { max-width: 18ch; margin-bottom: 0; }
@media (max-width: 820px) {
    .ah-ctaband__inner { grid-template-columns: 1fr; border-radius: 20px; }
    .ah-ctaband__side { grid-column: 1; grid-row: auto; }
}

/* Language suggestion bar (Accept-Language driven, dismissible) */
.c-langhint { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; background: var(--ah-ink); color: #fff; padding: 12px 52px 12px 16px; font-size: 18px; position: relative; }
.c-langhint__cta { color: var(--ah-sun); font-weight: 700; text-decoration: underline; }
.c-langhint__close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.75); font-size: 20px; cursor: pointer; padding: 8px; }
.c-langhint__close:hover { color: #fff; }
