:root {
    --ink: #12211b;
    --forest: #12352b;
    --forest-deep: #0b241d;
    --leaf: #2f6f5e;
    --mint: #7dbea8;
    --foam: #d8ede4;
    --ivory: #f6f3ec;
    --paper: #fbf8f2;
    --sand: #e7dfd2;
    --gold: #c4a574;
    --gold-deep: #9a7548;
    --white: #ffffff;
    --muted: #5c6f67;
    --line: rgba(18, 53, 43, 0.12);
    --shadow: 0 24px 60px -28px rgba(18, 53, 43, 0.45);
    --radius: 1.5rem;
    --header-h: 5rem;
    --font: "Manrope", system-ui, sans-serif;
    --display: "Fraunces", Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 1.02rem;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--display);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin: 0 0 0.7rem;
}

p {
    margin: 0 0 1rem;
}

.container {
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
}

.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 8;
    opacity: 0.07;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--gold);
    color: var(--forest);
    padding: 0.5rem 1rem;
    z-index: 100;
    border-radius: 999px;
}
.skip-link:focus {
    top: 1rem;
}

.muted { color: var(--muted); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 0.85rem;
}
.eyebrow::before {
    content: "";
    width: 1.6rem;
    height: 1px;
    background: currentColor;
}

.section {
    padding: 5.5rem 0;
}
.section--tight { padding: 3.5rem 0; }
.section--dark {
    background: var(--forest);
    color: var(--ivory);
}
.section--foam { background: var(--foam); }
.section--ivory { background: var(--ivory); }

.section-head {
    max-width: 38rem;
    margin-bottom: 2.5rem;
}
.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}
.section-head--center {
    text-align: center;
    margin-inline: auto;
}

[hidden] { display: none !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
    background: linear-gradient(180deg, #d8bc8d, var(--gold));
    color: var(--forest-deep);
    box-shadow: 0 12px 24px -12px rgba(154, 117, 72, 0.8);
}
.btn--dark {
    background: var(--forest);
    color: var(--ivory);
}
.btn--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--forest);
}
.btn--ghost-light {
    background: transparent;
    border-color: rgba(246, 243, 236, 0.28);
    color: var(--ivory);
    margin-top: 0.7rem;
}
.btn--full { width: 100%; }
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Topbar + header */
.topbar {
    background: var(--forest-deep);
    color: var(--foam);
    font-size: 0.82rem;
    padding: 0.45rem 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}
.topbar__links {
    display: flex;
    gap: 1.25rem;
}
.topbar__links a:hover { color: var(--gold); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(251, 248, 242, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px -20px rgba(18, 53, 43, 0.4);
}
.header__inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.logo__img {
    display: block;
    height: 3.6rem;
    width: auto;
    max-width: 8.8rem;
    object-fit: contain;
    background: #050505;
    border-radius: 0.55rem;
}
.logo--header .logo__img {
    height: 3.9rem;
    max-width: 9.6rem;
    background: transparent;
    border-radius: 0;
    filter: invert(1) hue-rotate(180deg) brightness(0.92) saturate(1.45) contrast(1.12);
    mix-blend-mode: multiply;
}
.logo--footer .logo__img {
    height: 4.6rem;
    max-width: 11.2rem;
    background: transparent;
    mix-blend-mode: screen;
    border: 0;
    border-radius: 0;
}
.logo--dialog {
    margin-bottom: 0.55rem;
}
.logo--dialog .logo__img {
    height: 3rem;
    max-width: 7.4rem;
}
.logo--login {
    display: flex;
    justify-content: center;
    margin-bottom: 0.85rem;
}
.logo--login .logo__img {
    height: 4.8rem;
    max-width: 12rem;
    border-radius: 0.75rem;
}

.nav {
    display: flex;
    gap: 1.4rem;
    margin-left: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.nav a {
    position: relative;
    color: var(--muted);
    padding: 0.3rem 0;
}
.nav a.is-active,
.nav a:hover { color: var(--forest); }
.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 2px;
    background: var(--gold);
    border-radius: 99px;
}

.nav-toggle {
    display: none;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--forest);
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 34rem;
    height: 34rem;
    right: -8rem;
    top: -8rem;
    background: radial-gradient(circle, var(--foam), transparent 70%);
    z-index: 0;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    color: var(--forest);
    max-width: 12ch;
}
.hero h1 em {
    font-style: italic;
    color: var(--leaf);
    font-weight: 500;
}
.hero .lede {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 36rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}
.hero-stats strong {
    display: block;
    font-family: var(--display);
    font-size: 1.7rem;
    color: var(--forest);
}
.hero-stats span {
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    min-height: 34rem;
}
.hero-visual__main {
    width: 82%;
    margin-left: auto;
    height: 30rem;
    object-fit: cover;
    border-radius: 2.2rem 2.2rem 6rem 2.2rem;
    box-shadow: var(--shadow);
}
.hero-visual__side {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    width: 46%;
    height: 14rem;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 6px solid var(--paper);
    box-shadow: var(--shadow);
}
.hero-badge {
    position: absolute;
    top: 1.5rem;
    left: 0.5rem;
    background: var(--forest);
    color: var(--ivory);
    padding: 1rem 1.15rem;
    border-radius: 1.15rem;
    max-width: 12.5rem;
    box-shadow: var(--shadow);
}
.hero-badge strong {
    display: block;
    font-family: var(--display);
    font-size: 1.35rem;
}
.hero-float {
    position: absolute;
    right: 8%;
    bottom: -0.4rem;
    background: var(--white);
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    font-size: 0.86rem;
    font-weight: 600;
}

.marquee {
    overflow: hidden;
    background: var(--forest);
    color: var(--gold);
    padding: 0.95rem 0;
    border-block: 1px solid rgba(196, 165, 116, 0.2);
}
.marquee__track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 32s linear infinite;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section--cats {
    padding: 2.4rem 0;
}
.cats-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.4rem 3rem;
    align-items: center;
}
.cats-split .section-head {
    margin-bottom: 0;
    max-width: none;
}
.cats-split .section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    max-width: 14ch;
}
.cats-split .section-head p.muted {
    margin-bottom: 0;
    max-width: 34rem;
}
.cat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.cat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem 0.55rem 0.55rem;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 1rem;
    min-height: 0;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.cat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 53, 43, 0.22);
    box-shadow: 0 14px 28px -20px rgba(18, 53, 43, 0.45);
}
.cat-card img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 0.75rem;
    flex-shrink: 0;
    background: var(--foam);
}
.cat-card > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cat-card h3 {
    font-size: 0.98rem;
    margin: 0 0 0.15rem;
    letter-spacing: -0.02em;
}
h3 .soon-pill {
    margin: 0 0 0 0.4rem;
    vertical-align: middle;
}
.cat-card p {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-card--soon {
    cursor: default;
    background: #f7f4ee;
}
.cat-card--soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
}
.cat-card--soon img {
    filter: saturate(0.65);
}
.soon-pill {
    display: inline-block;
    margin: 0 0 0.28rem;
    background: rgba(154, 117, 72, 0.95);
    color: #fff8ee;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.16rem 0.48rem;
    border-radius: 999px;
    line-height: 1.2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.05rem;
}
.service-card {
    background: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    scroll-margin-top: 6.2rem;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.service-card__media {
    position: relative;
    display: block;
    height: 10.4rem;
    overflow: hidden;
    background: var(--foam);
}
.service-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-card__badge {
    position: absolute;
    left: 0.7rem;
    bottom: 0.7rem;
    background: rgba(11, 36, 29, 0.92);
    color: var(--ivory);
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    backdrop-filter: blur(8px);
}
.service-card__badge s {
    color: rgba(246, 243, 236, 0.72);
    font-weight: 600;
    font-size: 0.7rem;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(246, 243, 236, 0.9);
}
.service-card__badge--soon {
    background: rgba(154, 117, 72, 0.95);
    color: #fff8ee;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.72rem;
}
.service-card--soon .service-card__media img {
    filter: saturate(0.78);
}
.btn--soon {
    background: #e4e0d8;
    color: #6a706c;
    border-color: transparent;
    cursor: not-allowed;
    box-shadow: none;
}
.btn--soon:hover {
    transform: none;
}
.service-card__body { padding: 1rem 1.05rem 1.15rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.service-card__body h3 a:hover { color: var(--leaf); }
.service-card__body p { font-size: 0.86rem; margin-bottom: 0.75rem; }
.service-card__price {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.28rem;
}
.service-card .btn {
    padding: 0.65rem 1rem;
    font-size: 0.86rem;
}

.popular-section {
    overflow: hidden;
}
.popular-section__head {
    margin-bottom: 2rem;
}
.popular-section__head h2 {
    max-width: none;
}
.popular-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.popular-slider__viewport {
    overflow: hidden;
    width: min(1280px, calc(100% - 6.2rem));
    margin-inline: auto;
    container-type: inline-size;
}
.popular-slider__track {
    display: flex;
    gap: 1rem;
    will-change: transform;
    transition: transform 0.55s var(--ease);
    width: max-content;
}
.popular-slider__track.is-instant {
    transition: none;
}
.popular-slider__slide {
    flex: 0 0 calc((100cqi - 3rem) / 4);
    width: calc((100cqi - 3rem) / 4);
    min-width: 0;
    height: auto;
}
.service-card--slide .service-card__media {
    height: 11.5rem;
}
.service-card--slide .service-card__body {
    padding: 0.9rem 1rem 1rem;
}
.service-card--slide h3 {
    font-size: 1.02rem;
    margin-bottom: 0.28rem;
    min-height: 0;
}
.service-card--slide .service-card__price {
    margin-bottom: 0.7rem;
    line-height: 1.4;
    white-space: normal;
}
.service-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
}
.service-card__city {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}
.service-card__city svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.service-card--slide .btn {
    margin-top: 0;
    align-self: auto;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
}
.popular-slider__nav {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--forest);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 20px -14px rgba(18, 53, 43, 0.6);
    transition: background 0.25s, color 0.25s, transform 0.25s;
    z-index: 2;
}
.popular-slider__nav svg {
    width: 1.15rem;
    height: 1.15rem;
}
.popular-slider__nav:hover {
    background: var(--forest);
    color: var(--ivory);
    transform: scale(1.05);
}
.service-card ul {
    margin: 0.6rem 0 1.1rem;
    padding-left: 1.05rem;
    color: var(--muted);
    font-size: 0.9rem;
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

.service-card.is-hidden {
    display: none;
}

.service-search {
    margin-bottom: 1.35rem;
}
.service-search__wrap {
    position: relative;
    z-index: 5;
}
.service-search__label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--forest);
    margin-bottom: 0.55rem;
}
.service-search__box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    box-shadow: 0 14px 36px -28px rgba(18, 53, 43, 0.55);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.service-search__box:focus-within {
    border-color: var(--leaf);
    box-shadow: 0 0 0 3px rgba(47, 111, 94, 0.16), 0 18px 40px -24px rgba(18, 53, 43, 0.5);
}
.service-search__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-left: 1.05rem;
    color: var(--gold-deep);
}
.service-search__input {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.05rem 3rem 1.05rem 0.7rem;
    color: var(--ink);
    outline: none;
}
.service-search__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
.service-search__clear {
    position: absolute;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: var(--ivory);
    color: var(--forest);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}
.service-search__clear:hover {
    background: var(--foam);
}
.service-search__hint {
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
}
.service-search__panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    box-shadow: var(--shadow);
    padding: 0.65rem;
    max-height: min(26rem, 70vh);
    overflow: auto;
}
.service-search__group {
    padding: 0.35rem 0.35rem 0.55rem;
}
.service-search__group + .service-search__group {
    border-top: 1px solid var(--line);
    margin-top: 0.25rem;
    padding-top: 0.7rem;
}
.service-search__heading {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.service-search__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    text-align: left;
    border: 0;
    background: transparent;
    border-radius: 0.85rem;
    padding: 0.7rem 0.75rem;
    cursor: pointer;
    color: inherit;
}
.service-search__item:hover,
.service-search__item.is-active {
    background: var(--ivory);
}
.service-search__item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--forest);
}
.service-search__item span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.12rem;
}
.service-search__tag {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--leaf);
    background: var(--foam);
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
}
.service-search__item mark {
    background: rgba(196, 165, 116, 0.38);
    color: inherit;
    padding: 0 0.12em;
    border-radius: 0.2rem;
}
.service-search__empty {
    margin: 0;
    padding: 0.85rem 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
}
.service-search__recs {
    margin: -0.85rem 0 1.2rem;
    padding: 0.95rem 1.05rem;
    background: linear-gradient(180deg, var(--ivory), var(--white));
    border: 1px solid var(--line);
    border-radius: 1.15rem;
}
.service-search__meta {
    margin: -0.5rem 0 1.1rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--muted);
}
.service-search__recs h4 {
    font-family: var(--font);
    font-size: 0.92rem;
    letter-spacing: 0;
    margin: 0 0 0.55rem;
}
.service-search__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.service-search__pill {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--forest);
    border-radius: 999px;
    padding: 0.38rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}
.service-search__pill:hover,
.service-search__pill.is-type {
    background: var(--forest);
    color: var(--ivory);
    border-color: var(--forest);
}
.service-empty {
    text-align: center;
    padding: 2.4rem 1rem 1rem;
}
.service-empty p:first-child {
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--forest);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}
.filter-chip {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--muted);
}
.filter-chip.is-active {
    background: var(--forest);
    color: var(--ivory);
    border-color: var(--forest);
}

/* Process / values */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}
.step {
    background: var(--white);
    border-radius: 1.35rem;
    padding: 1.4rem;
    border: 1px solid var(--line);
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--display);
    font-size: 1.8rem;
    color: var(--gold-deep);
    display: block;
    margin-bottom: 0.7rem;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.value {
    padding: 1.6rem;
    background: rgba(246, 243, 236, 0.08);
    border: 1px solid rgba(246, 243, 236, 0.14);
    border-radius: 1.3rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.split img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    border-radius: 2rem 2rem 5rem 2rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.chip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
}
.chip--link:hover {
    border-color: var(--gold);
    color: var(--forest);
}
.chip--dark {
    background: rgba(246, 243, 236, 0.08);
    border-color: rgba(246, 243, 236, 0.16);
    color: var(--ivory);
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.quote {
    background: var(--ivory);
    padding: 1.6rem;
    border-radius: 1.4rem;
}
.quote p { font-size: 1.02rem; }
.quote footer {
    margin-top: 1.1rem;
    font-weight: 700;
    color: var(--forest);
}
.quote footer span {
    display: block;
    font-weight: 500;
    color: var(--muted);
    font-size: 0.85rem;
}

.faq {
    max-width: 48rem;
    margin: 0 auto;
}
.faq details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    padding: 0.2rem 1.2rem;
    margin-bottom: 0.7rem;
}
.faq summary {
    cursor: pointer;
    font-weight: 700;
    padding: 1rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--gold-deep);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1rem; color: var(--muted); }

.cta-band {
    background:
        linear-gradient(120deg, rgba(11, 36, 29, 0.82), rgba(18, 53, 43, 0.7)),
        url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=80") center/cover;
    color: var(--ivory);
    border-radius: 2rem;
    padding: 3.4rem 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 14ch; }

.include-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.include-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    padding: 1.35rem 1.3rem;
}
.include-card h3 { font-size: 1.2rem; }
.include-card p { margin: 0; font-size: 0.92rem; }

.prose-block p { color: var(--muted); max-width: 62rem; }
.prose-block p + p { margin-top: 0.2rem; }

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.stat-tile {
    background: rgba(246, 243, 236, 0.08);
    border: 1px solid rgba(246, 243, 236, 0.14);
    border-radius: 1.25rem;
    padding: 1.4rem 1.2rem;
}
.stat-tile strong {
    display: block;
    font-family: var(--display);
    font-size: 2rem;
    color: var(--gold);
}
.stat-tile span { color: rgba(246, 243, 236, 0.75); font-size: 0.9rem; }

.quote p { min-height: 6.5rem; }

/* Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}
.contact-card,
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    padding: 1.8rem;
    scroll-margin-top: 6rem;
}
.form-card label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.95rem;
}
.form-card__legend {
    margin: 0.35rem 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.form-card__legend:first-of-type { margin-top: 1rem; }
.form-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}
.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    margin-top: 0.4rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.8rem 0.95rem;
    background: var(--ivory);
    color: var(--ink);
}
.form-card textarea { min-height: 8rem; resize: vertical; }
.form-card [data-quote-status] { margin-top: 0.4rem; }
.form-card [data-quote-whatsapp] { margin: 0.7rem 0; }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: 2px solid var(--leaf);
    border-color: transparent;
}
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}
.alert {
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.alert--ok { background: var(--foam); color: var(--forest); }
.alert--err { background: #fde8e4; color: #8a2b1e; }
.info-row {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
}
.info-row strong { display: block; }
.map-wrap {
    margin-top: 1.4rem;
    border-radius: 1.2rem;
    overflow: hidden;
    min-height: 14rem;
    background: var(--sand);
}
.map-wrap iframe {
    width: 100%;
    height: 16rem;
    border: 0;
}

/* Footer */
.site-footer {
    background: var(--forest-deep);
    color: var(--ivory);
    padding: 4rem 0 1.5rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}
.footer__brand p,
.site-footer p { color: rgba(246, 243, 236, 0.72); }
.site-footer h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a:hover { color: var(--gold); }
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
}
.footer__bottom {
    border-top: 1px solid rgba(246, 243, 236, 0.1);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
}

.float-actions {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.call-float,
.wa-float {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    color: white;
    display: grid;
    place-items: center;
    transition: transform 0.2s var(--ease);
}

.call-float:hover,
.wa-float:hover {
    transform: scale(1.06);
}

.call-float {
    background: #1b7a4c;
    box-shadow: 0 12px 30px -10px rgba(27, 122, 76, 0.9);
}

.wa-float {
    background: #25d366;
    box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.9);
}

.call-float svg,
.wa-float svg { width: 1.6rem; height: 1.6rem; }

.book-dialog {
    border: 0;
    border-radius: 1.6rem;
    padding: 0;
    width: min(36rem, 94vw);
    max-height: min(92vh, 46rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: var(--shadow);
    color: var(--ink);
}
.book-dialog::backdrop { background: rgba(11, 36, 29, 0.55); }
.book-dialog__form {
    padding: 1.8rem 1.8rem 1.4rem;
    position: relative;
    overflow: visible;
}
.book-dialog__form .eyebrow { padding-right: 2.2rem; }
.book-dialog__form h2 { margin-bottom: 1rem; }
.book-dialog__form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}
.book-dialog__form input,
.book-dialog__form select,
.book-dialog__form textarea {
    width: 100%;
    margin-top: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 0.75rem 0.9rem;
    background: var(--ivory);
    color: var(--ink);
}
.book-dialog__form textarea {
    min-height: 5.2rem;
    resize: vertical;
}
.book-dialog__form input:focus,
.book-dialog__form select:focus,
.book-dialog__form textarea:focus {
    outline: 2px solid var(--leaf);
    border-color: transparent;
}
.book-dialog__form select option:disabled,
.form-card select option:disabled {
    color: #9aa19c;
    background: #eeebe4;
}
.book-dialog__close {
    position: sticky;
    float: right;
    right: 0.2rem;
    top: 0.4rem;
    z-index: 2;
    border: 0;
    background: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}
.book-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
}
.book-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
}
.book-steps li span {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sand);
    color: var(--forest);
    font-size: 0.78rem;
}
.book-steps li.is-done span,
.book-steps li.is-active span {
    background: var(--forest);
    color: var(--ivory);
}
.book-steps li.is-active { color: var(--forest); }
.book-pane { animation: rise 0.35s var(--ease); overflow: visible; }
.book-review {
    margin: 0 0 1rem;
    display: grid;
    gap: 0.45rem;
}
.book-review div {
    display: grid;
    grid-template-columns: 7.2rem 1fr;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    background: var(--ivory);
    border-radius: 0.75rem;
}
.book-review dt {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.book-review dd {
    margin: 0;
    font-weight: 600;
    word-break: break-word;
}
.book-review__intro { margin-bottom: 0.85rem; }
.book-dialog__status {
    margin: 0 0 0.8rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.book-dialog__status.is-ok { background: var(--foam); color: var(--forest); }
.book-dialog__status.is-err { background: #fde8e4; color: #8a2b1e; }
.book-dialog__nav {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.85rem;
}
.book-dialog__nav .btn { flex: 1; }
.book-dialog [data-book-whatsapp] { margin-bottom: 0.7rem; }
.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.page-hero {
    padding: 3.2rem 0 2.4rem;
    background:
        radial-gradient(circle at 90% 10%, var(--foam), transparent 40%),
        var(--ivory);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--forest); max-width: 16ch; }
.page-service .page-hero h1,
.page-locations .page-hero h1,
.service-page .page-hero h1 {
    max-width: 22ch;
}

.crumbs {
    width: min(1280px, calc(100% - 2rem));
    margin: 0.85rem auto 0;
}
.crumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}
.crumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.45rem;
    color: var(--sand);
}
.crumbs a:hover { color: var(--forest); }
.crumbs [aria-current="page"] span { color: var(--forest); }

.service-page__includes {
    margin: 0 0 1.2rem;
    padding-left: 1.1rem;
}
.service-page__includes li { margin: 0.35rem 0; }
.service-grid--related {
    margin-top: 0.4rem;
}
.map-wrap--page {
    min-height: 18rem;
    border: 1px solid var(--line);
}
.map-wrap--page iframe { height: 22rem; }
.prose-block h2 { margin-top: 1.4rem; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 0.15em; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.8s var(--ease) forwards;
}
@keyframes rise {
    to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .service-grid,
    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }
    .popular-slider__slide {
        flex-basis: calc((100cqi - 2rem) / 3);
        width: calc((100cqi - 2rem) / 3);
    }
}

@media (max-width: 980px) {
    .hero__grid,
    .split,
    .contact-grid,
    .footer__grid,
    .cats-split,
    .quotes,
    .values,
    .steps,
    .include-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cats-split {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .cats-split .section-head h2 { max-width: none; }
    .form-card__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .cta-band { flex-direction: column; align-items: flex-start; }
    .hero-visual { min-height: 26rem; }
    .hero-visual__main { height: 22rem; }
    .hide-sm { display: none; }
    .popular-slider__slide {
        flex-basis: calc((100cqi - 1rem) / 2);
        width: calc((100cqi - 1rem) / 2);
    }
}

@media (max-width: 760px) {
    .topbar__links { display: none; }
    .nav-toggle { display: flex; }
    .nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(var(--header-h) + 2.3rem);
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 1.1rem;
        flex-direction: column;
        margin: 0;
        padding: 0.8rem;
        display: none;
        box-shadow: var(--shadow);
    }
    .nav.is-open { display: flex; z-index: 60; }
    .hero,
    .section { padding: 3rem 0; }
    .hero__grid,
    .quotes,
    .values,
    .steps,
    .split,
    .contact-grid,
    .footer__grid,
    .hero-stats,
    .include-grid,
    .stats-band,
    .cats-split {
        grid-template-columns: 1fr;
    }
    .cat-row {
        grid-template-columns: 1fr 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .service-card__media { height: 8.5rem; }
    .service-card__body h3 { font-size: 0.98rem; }
    .popular-slider__viewport { width: calc(100% - 1rem); }
    .popular-slider__slide {
        flex-basis: 78cqi;
        width: 78cqi;
    }
    .popular-slider__nav {
        position: absolute;
        top: 4.6rem;
        background: rgba(255,255,255,0.95);
    }
    .popular-slider__nav--prev { left: 0.35rem; }
    .popular-slider__nav--next { right: 0.35rem; }
    .hero-visual { min-height: 22rem; }
    .hero h1 { max-width: none; }
    .header__inner { position: relative; }
    .footer__bottom { flex-direction: column; }
    .book-review div { grid-template-columns: 1fr; gap: 0.15rem; }
    .book-steps li { font-size: 0.62rem; }
}

@media (max-width: 480px) {
    .service-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}
