:root {
    /* Colors */

    --forest-900: #15281b;
    --forest-800: #23402e;
    --forest-700: #2c4a37;
    --green-600: #2e5540;
    --green-500: #3a6a45;
    --sage-500: #7b9a5c;
    --sage-400: #93ab6f;
    --gold-500: #d9bc77;
    --gold-400: #e5cd8f;
    --cream-100: #f6f3ea;
    --cream-200: #efebde;
    --cream-300: #e7e2d2;
    --white: #ffffff;
    --footer: #14140f;
    --ink: #29291f;
    --error: #D9534F;
    --body: #45463c;
    --muted: #6d6d5f;
    --muted-2: #8a8a7b;
    --on-dark: #eef1e8;
    --on-dark-mut: #b9c4b0;
    --gradient-primary: linear-gradient(90deg, var(--forest-800) 0%, #34674b 30%, #3f7455 70%, #4b815f 100%);
    --gradient-primary-hover: linear-gradient(90deg, var(--forest-800) 20%, #34674b 90%, #3f7455 100%);
    --gradient-gold-divider: linear-gradient(180deg, #e5cd8f 0%, #f3e2a9 45%, #fffdf7 100%);

    /* Border */
    --line: #e2ddcd;
    --line-dark: rgba(255, 255, 255, 0.14);
    --card-line: #ece7d8;

    /* Fonts */
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Typography */
    --fs-eyebrow: 0.78rem;
    --fs-h1: clamp(2rem, 6vw, 4.6rem);
    --fs-h2: clamp(1.5rem, 4.2vw, 3.2rem);
    --fs-h3: 1.3rem;
    --fs-lead: clamp(.8rem, 1.6vw, 1.1rem);
    --fs-body: 1rem;
    --fs-small: 0.9rem;

    /* Spacing */
    --space-section: clamp(4.5rem, 9vw, 7.5rem);
    --gap: 1.5rem;
    --gap-sm: 1rem;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* Layout */
    --maxw: 1200px;
    --nav-h: 84px;

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(28, 53, 36, 0.06);
    --shadow-md: 0 14px 40px rgba(28, 53, 36, 0.10);
    --shadow-lg: 0 24px 60px rgba(20, 40, 28, 0.18);

    /* Animation */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 0.2s;
    --dur: 0.35s;
    --dur-slow: 0.6s;
}

/* Global */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--body);
    background: var(--cream-100);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--ink);
    font-weight: 500;
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding-block: var(--space-section);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-500);
    margin: 0;
}

.eyebrow--gold {
    color: var(--gold-500);
}

.display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.display em {
    font-style: italic;
    color: var(--sage-500);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.section-head .eyebrow {
    margin-bottom: 0.9rem;
}

.section-head h2 {
    font-size: var(--fs-h2);
}

.section-head .sub {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: var(--fs-lead);
}

.btn {
    --btn-fg: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    padding: 0.95em 1.7em;
    border-radius: 10px;
    border: none;
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.01em;
    background: var(--btn-bg);
    color: var(--btn-fg);
    transition: transform var(--dur-slow) var(--ease),
        background-color var(--dur-slow) var(--ease),
        box-shadow var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn .btn-arrow {
    transition: transform var(--dur-fast) var(--ease);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn--primary {
    --btn-bg: var(--gradient-primary);
}

.btn--primary:hover {
    --btn-bg: var(--gradient-primary-hover);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--forest-800);
}

.btn--ghost:hover {
    --btn-bg: var(--white);
    border-color: var(--sage-500);
}

.btn--ghost-light {
    --btn-bg: rgba(255, 255, 255, 0.06);
    --btn-fg: var(--white);
    border: 1px solid var(--muted-2);
    backdrop-filter: blur(6px);
}

.btn--ghost-light:hover {
    --btn-bg: rgba(255, 255, 255, 0.16);
}

.btn--gold {
    --btn-bg: var(--gold-500);
    --btn-fg: var(--forest-900);
}

.btn--gold:hover {
    --btn-bg: var(--gold-400);
}

.hidden {
    display: none;
}

.proof__label.desc {
    display: flex;
}

.proof__label.mob {
    display: none;
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold-500);
    letter-spacing: 1px;
}

/* Nav */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background-color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        backdrop-filter var(--dur) var(--ease);
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav.is-stuck {
    background: rgba(246, 243, 234, 0.72);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), var(--shadow-sm);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand__divider {
    width: 2px;
    height: 34px;
    background: var(--gradient-gold-divider);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.brand__tag {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.8;
}

.nav {
    color: var(--white);
}

.nav.is-stuck {
    color: var(--ink);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.nav__link {
    position: relative;
    font-size: 0.98rem;
    font-weight: 500;
    color: inherit;
    padding: 0.35rem 0;
    transition: color var(--dur-fast) var(--ease);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--green-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--green-500);
}

.nav__link:hover::after,
.nav__link.is-active::after {
    transform: scaleX(1);
}

.nav__phone {
    flex-shrink: 0;
}

.nav__phone .btn {
    --btn-bg: transparent;
    --btn-fg: currentColor;
    border: 1px solid currentColor;
    padding: 0.8em 1.4em;
    backdrop-filter: blur(3px);
}

.nav__phone .btn:hover {
    opacity: .6;
}

.nav__phone-icon {
    display: none;
}

.nav.is-stuck .nav__phone .btn,
.nav.is-stuck .brand {
    backdrop-filter: none;
}

.nav__mobile {
    display: none;
}

/* Hero */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: "";
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(20, 40, 28, 0.3) 0%, rgba(20, 40, 28, 0.4) 30%, rgba(20, 40, 28, 0.65) 60%, rgba(20, 40, 28, 0.2) 100%);
}

.hero__body {
    width: 100%;
    padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 5rem));
    padding-bottom: 0;
}

.hero__inner {
    max-width: 780px;
    margin: 0 auto;
}

.hero__eyebrow {
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-300);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-h1);
    line-height: .9;
    margin-top: 1.2rem;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero__title em {
    font-style: italic;
    color: var(--gold-500);
}

.hero__lead {
    margin-top: 1.5rem;
    max-width: 650px;
    font-size: var(--fs-lead);
    color: var(--cream-100);
    line-height: 1.6;
}

.hero__bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 2rem;
    margin-top: 1.8rem;
}

.hero__bullet {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: var(--fs-lead);
    color: var(--cream-300);
}

.hero__bullet .check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--gold-400);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.2rem;
}

.hero__cta .btn {
    padding: 1.05em 1.9em;
}

.proof {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, rgba(20, 40, 28, 0.4), rgba(20, 40, 28, 0.8));
    backdrop-filter: blur(3px);
}

.proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}


.proof__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}


.proof__item+.proof__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.proof__num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.4vw, 2.6rem);
    font-weight: 500;
    color: var(--gold-400);
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
}

.proof__num .star {
    color: var(--gold-400);
    font-size: 0.7em;
}

.proof__label {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream-100);
    display: flex;
    justify-content: center;
    min-height: 2.7em;
    line-height: 1.35;
}

/* About */

.about {
    background: var(--cream-100);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.about__media {
    position: relative;
}

.about__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.2rem;
    background: rgba(246, 243, 234, 0.95);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.about__badge-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
}

.about__badge-txt {
    font-size: 0.82rem;
    line-height: 1.3;
}

.about__badge-txt strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

.about__badge-txt span {
    color: var(--muted);
}

.about__title {
    font-size: var(--fs-h2);
    margin-top: 0.9rem;
}

.about__text {
    margin-top: 1.2rem;
    color: var(--body);
    max-width: 46ch;
}

.feature-list {
    margin-top: 1.8rem;
    display: grid;
    gap: 1.3rem;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
}

.feature__icon {
    width: 26px;
    height: 26px;
    color: var(--green-600);
    margin-top: 2px;
}

.feature__title {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
}

.feature__desc {
    color: var(--muted);
    font-size: var(--fs-small);
    margin-top: 2px;
}

/* Services */

.services {
    background: var(--cream-200);
    margin: 0 auto;
    place-items: center;
}

.cards {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .3rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.2rem;
    min-height: 180px;
    background: var(--white);
    border: 1px solid var(--card-line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
}

.card__desc {
    margin-top: 0.7rem;
    font-size: var(--fs-small);
    color: var(--muted);
    line-height: 1.3;
}

.card__icon {
    position: absolute;
    right: 1.1rem;
    bottom: 1rem;
    width: 55px;
    height: 55px;
    color: var(--green-600);
    opacity: 0.3;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.card:hover .card__icon {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Gallery */

.projects {
    background: var(--cream-100);
}

.gallery {
    margin-top: var(--fs-h1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: .4rem
}

.gallery__item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--big {
    grid-column: 3 / span 2;
    grid-row: 1 / span 2;
}

.gallery__item--tall {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.gallery-more {
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.gallery-more[open] .gallery-more__summary .gm-more {
    display: none;
}

.gallery-more:not([open]) .gallery-more__summary .gm-less {
    display: none;
}

.gallery-more__panel {
    order: 1;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--dur-slow) var(--ease-out);
}

.gallery-more[open] .gallery-more__panel {
    grid-template-rows: 1fr;
    opacity: 1;
}

.gallery-more__inner {
    overflow: hidden;
}

.gallery-more__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: .4rem;
    padding-top: var(--gap);
}

.gallery-more__summary {
    order: 2;
    list-style: none;
    display: block;
    width: max-content;
    margin: 2.5rem auto 0;
}

.gallery-more__summary::-webkit-details-marker {
    display: none;
}

.gallery-cta {
    display: inline-flex;
}

/* Metamorphoses */

.metamorphoses {
    background: var(--cream-200);
}

.meta-grid {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.meta-card {
    background: var(--white);
    border: 1px solid var(--card-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.meta-card__img {
    width: 100%;
    aspect-ratio: 587 / 510;
    object-fit: cover;
}

.meta-card__body {
    padding: 1.6rem 1.8rem 2rem;
}

.meta-card__title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 500;
    margin-top: 0.5rem;
    color: var(--ink);
    line-height: 1;
}

.meta-card__desc {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: var(--fs-small);
}

/* Workflow */

.workflow {
    background:
        radial-gradient(120% 90% at 50% 0%, var(--forest-700) 0%, var(--forest-800) 55%, var(--forest-900) 100%);
    color: var(--on-dark);
}

.workflow .eyebrow {
    color: var(--gold-500);
}

.workflow h2 {
    color: #fff;
}

.workflow h2 em {
    color: var(--sage-400);
}

.steps {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 188, 119, 0.5) 12%, rgba(217, 188, 119, 0.5) 88%, transparent);
}

.step {
    text-align: center;
    position: relative;
    transition: transform var(--dur-slow) var(--ease);
}

.step:hover {
    transform: scale(1.04);
}

.step__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest-900);
    border: 1px solid rgba(217, 188, 119, 0.55);
    color: var(--gold-500);
    position: relative;
    z-index: 1;
}

.step__icon .icon {
    width: 26px;
    height: 26px;
}

.step:hover .step__icon {
    background: var(--forest-800);
    border-color: var(--gold-400);
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--gold-400);
}

.step:hover .step__title {
    color: var(--gold-500);
}

.step__desc {
    margin-top: 0.6rem;
    font-size: var(--fs-small);
    color: var(--on-dark-mut);
    max-width: 24ch;
    margin-inline: auto;
}

.step:hover .step__desc {
    color: var(--on-dark);
}

/* Testimonials */

.testimonials {
    background: var(--cream-100);
}

.rating-badges {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--card-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.rating-badge__num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
}

.rating-badge__meta {
    line-height: 1.2;
}

.rating-badge__label {
    font-size: var(--fs-small);
    color: var(--muted);
}

.reviews {
    margin-top: 2.8rem;
    position: relative;
}

.reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.review {
    position: relative;
    background: var(--white);
    border: 1px solid var(--card-line);
    border-left: 3px solid var(--green-600);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.review__quote-mark {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1;
    color: var(--green-600);
}

.review__stars {
    color: var(--gold-500);
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.review__text {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    padding-bottom: .5rem;
}

.review__foot {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.review__name {
    font-weight: 600;
    color: var(--ink);
}

.review__src {
    font-size: var(--fs-small);
    color: var(--muted);
}

.reviews__dots {
    display: none;
}

/* Socials */

.fb-band {
    position: relative;
    color: var(--white);
}

.fb-band__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(20, 40, 28, 0.9) 0%, rgba(20, 40, 28, 0.7) 45%, rgba(20, 40, 28, 0.55) 100%);
}

.fb-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
    flex-wrap: wrap;
}

.fb-band__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
}

.fb-band__title em {
    font-style: italic;
    color: var(--gold-500);
}

.fb-band__sub {
    margin-top: 0.6rem;
    color: var(--on-dark);
    font-size: var(--fs-lead);
    max-width: 600px;
}

/* Contact */

.contact {
    background:
        linear-gradient(180deg, var(--forest-800) 0%, var(--forest-900) 100%);
    color: var(--on-dark);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.contact .eyebrow {
    color: var(--gold-500);
}

.contact__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 500;
    color: var(--white);
    margin-top: 0.9rem;
    line-height: .9;
}

.contact__title em {
    font-style: italic;
    color: var(--sage-400);
}

.contact__lead {
    margin-top: 1.1rem;
    color: var(--on-dark-mut);
    max-width: 42ch;
}

.contact-list {
    margin-top: 2.2rem;
    display: grid;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line-dark);
}

.contact-item:first-child {
    border-top: 1px solid var(--line-dark);
}

.contact-item__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold-500);
}

.contact-item__icon .icon {
    width: 19px;
    height: 19px;
}

.contact-item__label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--on-dark-mut);
}

.contact-item__value {
    color: #fff;
    font-weight: 500;
}

.contact-item__value:hover {
    color: var(--gold-400);
}


.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 3vw, 2.6rem);
}

.form-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
}

.form-card__sub {
    margin-top: 0.4rem;
    color: var(--on-dark-mut);
    font-size: var(--fs-small);
}

form {
    margin-top: 1.6rem;
    display: grid;
    gap: 1.1rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form__row__captcha {
    display: flex;
    gap: .3rem;
    align-items: start;
    justify-content: center;
}

.form__row__captcha .btn {
    padding: 1rem 1.6rem;
}

.field {
    display: grid;
    gap: 0.4rem;
}

.field label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--on-dark-mut);
}

.field input,
.field textarea {
    font-family: inherit;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.09);
}

.form__consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--on-dark-mut);
    line-height: 1.5;
}

.form__consent input {
    margin-top: 3px;
    accent-color: var(--gold-500);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


.form__note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--on-dark-mut);
}

.h-captcha {
    margin-bottom: -1.3rem;
    transform-origin: left top;
    transform: scale(0.7);
}

.form-error {
    color: var(--error);
    font-size: .8rem;
    margin-top: .3rem;
}

.result {
    color: var(--gold-500);
    font-weight: 500;
    font-size: 1.1rem;
    font-family: var(--font-display);
    text-align: center;
}

/* Footer */

.footer {
    background: var(--footer);
    color: var(--on-dark-mut);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer .brand {
    color: #fff;
}

.footer .brand__name {
    font-size: 1.4rem;
}

.footer__about {
    margin-top: 1.2rem;
    font-size: var(--fs-small);
    max-width: 34ch;
    color: var(--on-dark-mut);
}

.footer__col-title {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.footer__list {
    display: grid;
    gap: 0.7rem;
    font-size: var(--fs-small);
}

.footer__list a:hover {
    color: var(--gold-400);
}

.footer__socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.footer__social {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream-300);
    transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.footer__social:hover {
    background: var(--green-600);
    transform: translateY(-2px);
}

.footer__social .feature__icon {
    width: 16px;
    height: 16px;
    color: var(--gold-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-block: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--fs-small);
}

.footer__bottom a {
    color: var(--gold-500);
    font-weight: 600;
}

/* Media Queries */

@media (max-width: 1024px) {
    .down {
        display: none;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .nav__links {
        gap: .8rem;
    }

    .about__grid,
    .contact__grid,
    .meta-grid {
        grid-template-columns: 1fr;
    }

    .about__grid {
        gap: 2rem;
    }

    .about__media {
        order: 2;
    }

    .about__content {
        order: 1;
    }

    .about__img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 68px;
    }

    .nav__links,
    .nav__phone {
        display: none;
    }

    .nav__phone-icon {
        display: inline-flex;
    }

    .nav__mobile {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .nav__call {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        border: 1px solid currentColor;
        color: inherit;
        background: transparent;
        transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
    }

    .nav.is-stuck .nav__call:hover {
        background: var(--green-600);
        color: var(--cream-300);
        border-color: var(--green-600);
    }

    .nav__call .icon {
        width: 20px;
        height: 20px;
    }

    .menu {
        position: relative;
    }

    .menu__toggle {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        border: 1px solid currentColor;
        background: transparent;
        color: inherit;
        cursor: pointer;
        list-style: none;
    }

    .menu__toggle::-webkit-details-marker {
        display: none;
    }

    .menu__toggle .bars {
        position: relative;
        width: 20px;
        height: 14px;
    }

    .menu__toggle .bars span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
        transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    }

    .menu__toggle .bars span:nth-child(1) {
        top: 0;
    }

    .menu__toggle .bars span:nth-child(2) {
        top: 6px;
    }

    .menu__toggle .bars span:nth-child(3) {
        top: 12px;
    }

    .menu[open] .bars span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu[open] .bars span:nth-child(2) {
        opacity: 0;
    }

    .menu[open] .bars span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .menu__panel {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: min(78vw, 300px);
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows var(--dur) var(--ease-out);
        background: rgba(246, 243, 234, 0.96);
        backdrop-filter: blur(16px);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }

    .menu[open] .menu__panel {
        grid-template-rows: 1fr;
    }

    .menu__panel-inner {
        overflow: hidden;
    }

    .menu__panel .nav__link {
        display: block;
        color: var(--ink);
        padding: 0.9rem 1.3rem;
        border-bottom: 1px solid var(--line);
    }

    .menu__panel .nav__link:last-child {
        border-bottom: none;
    }

    .menu__panel .nav__link::after {
        display: none;
    }

    .menu__panel .nav__link:hover,
    .menu__panel .nav__link.is-active {
        color: var(--green-500);
        background: rgba(58, 106, 69, 0.06);
    }

    .proof__label.desc {
        display: none;
    }

    .proof__label.mob {
        display: flex;
    }

    .hero__bg {
        object-position: left;
    }

    .hero__title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero__lead {
        max-width: 80%;
    }

    .hero__cta {
        flex-wrap: nowrap;
        gap: 0.6rem;
    }

    .hero__cta .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.95em clamp(0.5rem, 3vw, 1.2rem);
        font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    }

    .proof {
        padding-bottom: 0;
    }

    .proof__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .proof__item {
        padding: .5rem;
    }

    .proof__label {
        min-height: 2.6em;
        line-height: 1.3;
    }

    .proof__item+.proof__item::before {
        content: none;
    }

    .proof__item:nth-child(-n+2)::after {
        content: "";
        position: absolute;
        left: 20%;
        right: 20%;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, .3),
                transparent);
    }

    .proof__grid::before,
    .proof__grid::after {
        content: "";
        position: absolute;
        left: 50%;
        width: 1px;
        transform: translateX(-50%);
        background: linear-gradient(180deg,
                transparent,
                rgba(255, 255, 255, .3),
                transparent);
    }

    .proof__grid::before {
        top: 12%;
        height: 32%;
    }

    .proof__grid::after {
        bottom: 12%;
        height: 32%;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .gallery,
    .gallery-more__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }


    .gallery__item--big {
        grid-column: span 2;
        grid-row: span 2;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 0;
        margin-inline: auto;
        max-width: 460px;
    }

    .steps::before {
        display: none;
    }

    .step {
        display: grid;
        grid-template-columns: 76px 1fr;
        gap: 1.2rem;
        text-align: left;
        padding-bottom: 2rem;
        position: relative;
    }

    .step:last-child {
        padding-bottom: 0;
    }

    .step:not(:last-child)::before {
        content: "";
        position: absolute;
        left: 38px;
        top: 76px;
        bottom: -4px;
        width: 1px;
        background: linear-gradient(180deg, rgba(217, 188, 119, 0.5), rgba(217, 188, 119, 0.15));
    }

    .step__icon {
        margin: 0;
    }

    .step__body {
        padding-top: 0.5rem;
    }

    .step__desc {
        margin-inline: 0;
        max-width: none;
    }

    .reviews {
        overflow: hidden;
    }

    .reviews__track {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        gap: 0;
        transition: transform var(--dur) var(--ease-out);
        touch-action: pan-y;
    }

    .review {
        margin-inline: 2px;
    }

    .reviews__dots {
        display: flex;
        justify-content: center;
        gap: 0.6rem;
        margin: 1.6rem 0;
    }

    .reviews__dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        border: none;
        background: var(--sage-400);
        padding: 0;
        transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
    }

    .reviews__dot.is-active {
        background: var(--green-600);
        transform: scale(1.25);
    }

    .fb-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .form__row,
    .form__row__captcha,
    .footer__top {
        grid-template-columns: 1fr;
    }

    .form__row__captcha {
        flex-direction: column;
    }

    .form__row__captcha .btn {
        padding: 1rem 1.6rem;
        width: 100%;
    }

    .footer__top {
        gap: 2rem;
    }
}

@media (max-width: 540px) {
    .hero__bullets {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .hero__lead {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .brand {
        gap: .4rem;
    }

    .brand__logo {
        width: 32px;
        height: 32px;
    }

    .brand__name {
        font-size: 1.2rem;
    }

    .hero__eyebrow {
        font-size: .6rem;
    }

    .rating-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .rating-badge {
        justify-content: center;
    }

    .contact-item__value {
        font-size: var(--small);
    }

    .form-card {
        padding: 1rem;
    }

    @media (max-width: 350px) {
        .contact .container {
            padding-inline: .1rem;
        }

        .form-card {
            border-radius: 0;
        }
    }
}