@charset "UTF-8";

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/playfair-display-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/playfair-display-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --green-950: #08251f;
    --green-900: #0f2924;
    --green-800: #1c4036;
    --green-700: #2e584e;
    --gold: #d4af37;
    --gold-dark: #8a6a08;
    --cream: #f4ebd6;
    --paper: #fbf8f1;
    --white: #fff;
    --text: #0f2924;
    --muted: #5f6f69;
    --border: rgba(15, 41, 36, 0.12);
    --border-strong: rgba(15, 41, 36, 0.22);
    --shadow-sm: 0 10px 28px rgba(15, 41, 36, 0.07);
    --shadow-lg: 0 22px 58px rgba(15, 41, 36, 0.13);
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1320px;
    --gutter: clamp(18px, 4vw, 36px);
    --header-height: 104px;
    --header-duration: 240ms;
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    overflow-x: clip;
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

html.is-scroll-locked,
body.is-scroll-locked {
    overflow: hidden;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--green-900);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 3.6vw, 2.5rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.625rem);
}

p {
    color: var(--muted);
}

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--green-950);
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.container,
.page-hero-content,
.header-inner {
    width: min(calc(100% - 2 * var(--gutter)), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(64px, 8vw, 108px);
}

.soft-section,
.process-section,
.faq-preview,
.contact-form-section {
    background: #f6f1e7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    left: 10px;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--green-950);
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
}

.eyebrow-light {
    color: #ecd371;
}

.section-heading {
    max-width: 720px;
    margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading h2 {
    margin-bottom: 16px;
}

.section-heading p:last-child {
    margin-bottom: 0;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.heading-row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.heading-row > div {
    max-width: 760px;
}

.icon {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button .icon {
    width: 18px;
    height: 18px;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green-900);
    box-shadow: 0 8px 18px rgba(15, 41, 36, 0.16);
    color: var(--white);
}

.button-primary .icon {
    color: var(--gold);
}

.button-primary:hover {
    background: var(--green-800);
    box-shadow: 0 12px 24px rgba(15, 41, 36, 0.2);
}

.button-secondary {
    border-color: rgba(15, 41, 36, 0.28);
    background: rgba(255, 255, 255, 0.7);
    color: var(--green-900);
}

.button-secondary:hover {
    border-color: var(--green-900);
    background: var(--white);
}

.button-gold {
    background: var(--gold);
    color: var(--green-950);
}

.button-gold:hover {
    background: #e0bf4d;
}

.button[disabled] {
    cursor: not-allowed;
    opacity: 0.56;
    transform: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-900);
    font-size: 0.82rem;
    font-weight: 700;
}

.text-link .icon {
    width: 17px;
    height: 17px;
    color: var(--gold-dark);
    transition: transform 180ms ease;
}

.text-link:hover .icon {
    transform: translateX(3px);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(251, 248, 241, 0.96);
    transition: transform var(--header-duration) ease, height var(--header-duration) ease, background-color var(--header-duration) ease, box-shadow var(--header-duration) ease;
}

.site-header.is-scrolled {
    --header-height: 84px;
    border-color: var(--border);
    background: rgba(251, 248, 241, 0.985);
    box-shadow: 0 10px 32px rgba(15, 41, 36, 0.08);
}

.site-header.is-header-hidden {
    transform: translateY(-102%);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: 175px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.brand {
    position: relative;
    display: grid;
    width: 151.2px;
    height: 94.5px;
    place-items: center;
    transition: width var(--header-duration) ease, height var(--header-duration) ease;
}

.brand-logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(-50%);
}

.brand-logo-light {
    display: none;
}

.site-header.is-scrolled .brand {
    width: 112px;
    height: 70px;
}

.desktop-nav ul,
.mobile-drawer ul,
.footer-column ul,
.sidebar ul,
.contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2vw, 30px);
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--green-900);
    font-size: 0.79rem;
    font-weight: 600;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.3);
    transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    background: transparent;
    color: var(--gold);
}

.menu-toggle .icon {
    width: 27px;
    height: 27px;
}

.mobile-drawer,
.menu-backdrop {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 80% 16%, rgba(212, 175, 55, 0.1), transparent 26%),
        linear-gradient(135deg, #fbf8f1 0%, #f6f0e5 100%);
}

.hero.is-dragging {
    cursor: grabbing;
}

.hero-track {
    display: grid;
    min-height: 638px;
}

.hero-slide {
    grid-area: 1 / 1;
    display: block;
    min-height: 638px;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    pointer-events: none;
    transition:
        opacity 360ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 420ms;
}

.hero-slide.is-active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    transition-delay: 0s;
}

.hero-grid {
    display: grid;
    min-height: 638px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(36px, 5vw, 74px);
    padding-block: 48px 58px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 4.2vw, 4.05rem);
}

.hero-copy h1 span,
.hero-copy h2 span {
    display: block;
}

.hero-description {
    max-width: 570px;
    margin-bottom: 28px;
    color: #42534d;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-visual::before {
    position: absolute;
    z-index: 0;
    top: -34px;
    right: -28px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    content: "";
}

.hero-visual picture {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 120px 18px 90px 18px;
    box-shadow: var(--shadow-lg);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-info-card {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: -54px;
    display: flex;
    width: min(330px, 75%);
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 14px;
    background: rgba(8, 37, 31, 0.96);
    box-shadow: 0 16px 38px rgba(8, 37, 31, 0.28);
    color: var(--white);
}

.hero-info-card > span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50%;
    color: var(--gold);
}

.hero-info-card h3 {
    margin-bottom: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.75rem;
    line-height: 1.55;
}

.slider-controls {
    position: absolute;
    z-index: 6;
    bottom: 38px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
}

.slider-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--green-900);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.slider-dots {
    display: flex;
    gap: 7px;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid var(--green-700);
    border-radius: 50%;
    background: transparent;
    transition:
        width 240ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 180ms ease,
        background-color 180ms ease;
}

.slider-dots button[aria-current="true"] {
    width: 25px;
    border-color: var(--gold-dark);
    border-radius: 999px;
    background: var(--gold);
}

/* Trust and cards */
.trust-strip-wrap {
    position: relative;
    z-index: 8;
    margin-top: -18px;
}

.trust-strip {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.trust-strip article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
    padding: 22px 25px;
}

.trust-strip article + article {
    border-left: 1px solid var(--border);
}

.trust-strip article > span {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    background: rgba(244, 235, 214, 0.65);
    color: var(--green-800);
}

.trust-strip h2 {
    margin-bottom: 3px;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 700;
}

.trust-strip p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.service-grid,
.post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 9px 28px rgba(15, 41, 36, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: 0 17px 38px rgba(15, 41, 36, 0.1);
    transform: translateY(-5px);
}

.card-media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--cream);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.card:hover .card-media img {
    transform: scale(1.025);
}

.card-body {
    min-width: 0;
    padding: 25px;
}

.service-card .card-body {
    padding-top: 34px;
}

.card-body h3 {
    margin-bottom: 10px;
    font-size: 1.36rem;
}

.card-body p {
    font-size: 0.85rem;
}

.service-icon {
    position: absolute;
    z-index: 2;
    top: calc(56.25% - 23px);
    left: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--green-900);
    color: var(--cream);
    box-shadow: 0 7px 16px rgba(15, 41, 36, 0.2);
}

.service-icon .icon {
    width: 23px;
    height: 23px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    color: #6d7975;
    font-size: 0.69rem;
}

.card-meta span {
    color: var(--gold-dark);
    font-weight: 700;
}

.post-card .card-body h3 {
    min-height: 3.1em;
}

/* Split, process, SEO */
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
}

.split-media {
    position: relative;
    overflow: visible;
    min-width: 0;
}

.split-media > img {
    width: 100%;
    height: auto;
    max-height: 640px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.media-badge {
    position: absolute;
    right: -28px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 999px;
    background: var(--green-900);
    box-shadow: var(--shadow-sm);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
}

.media-badge .icon {
    color: var(--gold);
}

.split-copy h2 {
    max-width: 660px;
    margin-bottom: 20px;
}

.split-copy > p {
    max-width: 680px;
}

.check-list {
    display: grid;
    padding: 0;
    margin: 26px 0 30px;
    gap: 12px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--green-900);
    font-size: 0.9rem;
    font-weight: 600;
}

.check-list .icon {
    color: var(--gold-dark);
}

.process-grid {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    list-style: none;
}

.process-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid li {
    position: relative;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.process-grid li > span,
.value-grid article > span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-900);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
}

.process-grid h3 {
    margin-bottom: 9px;
    font-size: 1.2rem;
}

.process-grid p {
    margin: 0;
    font-size: 0.82rem;
}

.section-link {
    margin-top: 28px;
}

.seo-section {
    background: var(--green-950);
}

.seo-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(36px, 7vw, 96px);
}

.seo-layout h2,
.seo-layout .prose p,
.seo-layout .prose a {
    color: var(--white);
}

.seo-layout .prose p {
    color: rgba(255, 255, 255, 0.76);
}

.seo-layout .prose a {
    text-decoration-color: var(--gold);
}

.compact-prose p:first-child {
    margin-top: 0;
}

/* Gallery preview */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-preview-grid a {
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: var(--cream);
}

.gallery-preview-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.gallery-preview-grid a:hover img {
    transform: scale(1.035);
}

/* Accordion */
.faq-preview-grid,
.faq-page-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(36px, 7vw, 88px);
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.accordion-item.is-open {
    border-color: rgba(212, 175, 55, 0.68);
    box-shadow: 0 9px 22px rgba(15, 41, 36, 0.06);
}

.accordion .accordion-item > h3 {
    margin: 0;
    font-family: var(--font-body);
}

.accordion-trigger {
    display: grid;
    width: 100%;
    min-height: 74px;
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: transparent;
    text-align: left;
}

.accordion-number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(244, 235, 214, 0.8);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
}

.accordion-question {
    color: var(--green-900);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.accordion-symbol {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
}

.accordion-symbol span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 12px;
    height: 1.5px;
    background: var(--green-900);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.accordion-symbol span + span {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-symbol {
    border-color: var(--gold);
    background: var(--green-900);
}

.accordion-trigger[aria-expanded="true"] .accordion-symbol span {
    background: var(--gold);
}

.accordion-trigger[aria-expanded="true"] .accordion-symbol span + span {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
    overflow: hidden;
}

.accordion-answer {
    padding: 0 72px 22px 76px;
}

.accordion .accordion-answer > p {
    margin: 0;
    font-size: 0.88rem;
}

.sticky-intro {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    transition: top var(--header-duration) ease;
}

body.is-header-hidden .sticky-intro {
    top: 28px;
}

/* Inner page hero and prose */
.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(52px, 7vw, 90px);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 82% 20%, rgba(212, 175, 55, 0.13), transparent 25%),
        linear-gradient(125deg, #f4ebd6, #fbf8f1 62%);
}

.page-hero::after {
    position: absolute;
    top: 16%;
    right: 8%;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(15, 41, 36, 0.08);
    border-radius: 48% 52% 62% 38%;
    content: "";
    transform: rotate(22deg);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 880px;
    margin-bottom: 18px;
}

.page-hero-description {
    max-width: 800px;
    margin-bottom: 0;
    font-size: 1rem;
}

.breadcrumb {
    margin-bottom: 28px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 6px;
    list-style: none;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #5f6f69;
    font-size: 0.75rem;
}

.breadcrumb a:hover {
    color: var(--green-900);
    text-decoration: underline;
}

.breadcrumb-icon {
    width: 14px;
    height: 14px;
    margin-left: 6px;
}

.content-narrow {
    max-width: 860px;
}

.prose {
    color: var(--muted);
}

.prose h2 {
    margin-top: 1.8em;
    margin-bottom: 0.65em;
}

.prose h3 {
    margin-top: 1.5em;
}

.prose p {
    margin-bottom: 1.15em;
}

.prose a {
    color: var(--green-800);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.65);
    text-underline-offset: 3px;
}

.prose ul {
    display: grid;
    padding-left: 1.25em;
    gap: 8px;
}

.lead {
    color: #41544d;
    font-size: 1.08rem;
    line-height: 1.8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.value-grid article {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.value-grid h3 {
    margin-bottom: 10px;
}

.value-grid p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.notice {
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.notice h2,
.notice h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
}

.notice p:last-child {
    margin-bottom: 0;
}

.notice-info {
    border-left: 4px solid var(--green-700);
    background: #f1f6f3;
}

.notice-warning {
    border-left: 4px solid var(--gold);
    background: #fcf7e9;
}

/* Detail/sidebar */
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: clamp(32px, 5vw, 66px);
}

.detail-main,
.sidebar {
    min-width: 0;
}

.detail-cover {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: 0 0 44px;
    border-radius: var(--radius-lg);
    background: var(--cream);
}

.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-cover img {
    object-position: center;
}

.article-steps {
    display: grid;
    padding: 0;
    margin: 30px 0 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.article-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.article-steps span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--green-900);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
}

.article-steps p {
    margin: 0;
    color: var(--green-900);
    font-size: 0.84rem;
    font-weight: 600;
}

.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: top var(--header-duration) ease;
}

body.is-header-hidden .sidebar {
    top: 24px;
}

.sidebar-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-head .eyebrow {
    margin-bottom: 7px;
}

.sidebar-head h2 {
    margin: 0;
    font-size: 1.35rem;
}

.sidebar nav {
    padding: 10px;
}

.sidebar nav a {
    display: grid;
    min-height: 54px;
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 650;
}

.sidebar nav a[aria-current="page"],
.sidebar nav a:hover {
    background: var(--green-900);
    color: var(--white);
}

.blog-sidebar nav a {
    grid-template-columns: minmax(0, 1fr) 20px;
}

.blog-sidebar nav small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 400;
}

.blog-sidebar nav a[aria-current="page"] small,
.blog-sidebar nav a:hover small {
    color: rgba(255, 255, 255, 0.72);
}

.sidebar-cta {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: #f6f1e7;
}

.sidebar-cta p {
    font-size: 0.78rem;
}

.sidebar-cta .button {
    width: 100%;
    padding-inline: 14px;
}

.related-section {
    margin-top: 68px;
}

.related-service-grid,
.related-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.76rem;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-meta .icon {
    width: 16px;
    height: 16px;
    color: var(--gold-dark);
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    margin: 42px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #f1f6f3;
}

.author-box > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--green-900);
    color: var(--gold);
}

.author-box h2 {
    margin: 0 0 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
}

.author-box p {
    margin: 0;
    font-size: 0.82rem;
}

.blog-disclaimer,
.gallery-notice {
    margin-bottom: 38px;
}

.blog-grid {
    row-gap: 28px;
}

/* Gallery */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.gallery-toolbar > p {
    margin: 0;
    font-size: 0.78rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filters button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--green-900);
    font-size: 0.78rem;
    font-weight: 700;
}

.gallery-filters button.is-active {
    border-color: var(--green-900);
    background: var(--green-900);
    color: var(--white);
}

.gallery-filters .icon {
    width: 18px;
    height: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-width: 0;
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: 0 7px 22px rgba(15, 41, 36, 0.07);
}

.gallery-item[hidden] {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 13px 12px;
    background: linear-gradient(transparent, rgba(8, 37, 31, 0.86));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--green-900);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
}

.video-badge .icon {
    width: 15px;
    height: 15px;
}

.lightbox {
    position: fixed;
    z-index: 1500;
    inset: 0;
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr) auto;
    padding: 14px 22px 18px;
    background: rgba(4, 20, 17, 0.975);
    color: var(--white);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.lightbox-topbar button,
.lightbox-arrow,
.lightbox-mobile-controls button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.lightbox-stage {
    display: grid;
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    gap: 18px;
}

.lightbox-media {
    display: grid;
    min-width: 0;
    min-height: 0;
    place-items: center;
    touch-action: pan-y pinch-zoom;
}

.lightbox-media.is-dragging {
    cursor: grabbing;
}

.lightbox-media img,
.lightbox-media video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    user-select: none;
}

.lightbox-media video {
    width: min(100%, 1100px);
}

.lightbox-thumbs {
    display: flex;
    overflow-x: auto;
    max-width: min(960px, 100%);
    gap: 8px;
    padding: 10px 2px 2px;
    margin-inline: auto;
    scrollbar-width: none;
    cursor: grab;
}

.lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.lightbox-thumbs.is-dragging {
    cursor: grabbing;
}

.lightbox-thumbs button {
    overflow: hidden;
    width: 62px;
    height: 50px;
    flex: 0 0 auto;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 7px;
    background: #183a32;
}

.lightbox-thumbs button.is-active {
    border-color: var(--gold);
}

.lightbox-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-mobile-controls {
    display: none;
}

/* Contact */
.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-900);
    color: var(--gold);
}

.contact-card h2 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.contact-card > a:not(.text-link) {
    font-weight: 700;
}

.contact-card small {
    color: var(--muted);
}

.contact-card .text-link {
    margin-top: 10px;
}

.contact-card hr {
    width: 100%;
    margin: auto 0 15px;
    border: 0;
    border-top: 1px solid var(--border);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(36px, 7vw, 88px);
}

.contact-intro h2 {
    margin-bottom: 16px;
}

.contact-intro .notice {
    margin-top: 28px;
}

.form-card {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.field-full {
    grid-column: 1 / -1;
}

.field > label,
.consent-field > label {
    margin-bottom: 7px;
    color: var(--green-900);
    font-size: 0.78rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--border-strong);
    border-radius: 9px;
    background: #fffdf9;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
    height: 50px;
    padding: 0 14px;
}

.field textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    outline: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #9e3e32;
}

.field-help,
.field-error {
    margin: 7px 0 0;
    font-size: 0.72rem;
    line-height: 1.5;
}

.field-help {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.field-help .icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: var(--gold-dark);
}

.field-error {
    color: #8f3027;
    font-weight: 600;
}

.consent-field > label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    line-height: 1.55;
}

.consent-field input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--green-900);
}

.form-submit {
    width: 100%;
    margin-top: 24px;
}

.form-status {
    padding: 16px 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 0.84rem;
}

.form-status p {
    margin: 4px 0 0;
}

.form-status.is-error {
    border: 1px solid #c67a70;
    background: #fff0ed;
}

.form-status.is-success {
    border: 1px solid #79a08f;
    background: #edf8f2;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.captcha-control {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.captcha-control img {
    width: min(100%, 300px);
    height: auto;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #f7f3e9;
}

.captcha-refresh {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--green-700);
    border-radius: 999px;
    background: var(--white);
    color: var(--green-900);
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
    background: var(--green-900);
    color: var(--white);
}

.captcha-refresh:disabled {
    opacity: 0.55;
    cursor: wait;
}

#captcha_answer {
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
}

.captcha-status {
    min-height: 1.1em;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}
.map-section iframe {
    width: 100%;
    aspect-ratio: 16 / 6;
    border: 0;
    border-radius: var(--radius);
}

.map-embed {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}


.legal-content {
    max-width: 980px;
}

.legal-content > section {
    padding-block: 26px;
    border-bottom: 1px solid var(--border);
}

.legal-content > section:last-child {
    border-bottom: 0;
}

.legal-content h2 {
    margin-bottom: 14px;
}

.legal-meta {
    color: var(--muted);
    font-size: 0.82rem;
}

/* CTA and footer */
.cta-band {
    padding-block: 36px 0;
}

.cta-card {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: clamp(32px, 5vw, 54px);
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(212, 175, 55, 0.15), transparent 26%),
        var(--green-950);
}

.cta-card h2 {
    margin-bottom: 8px;
    color: var(--white);
}

.cta-card p {
    max-width: 730px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.cta-card .button {
    flex: 0 0 auto;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: clamp(58px, 7vw, 82px);
    background: linear-gradient(145deg, var(--green-950), var(--green-900));
    color: var(--white);
}

.footer-glow {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 48% 52% 60% 40%;
    transform: rotate(24deg);
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1.15fr) minmax(150px, 0.72fr) minmax(170px, 0.78fr) minmax(350px, 1.35fr);
    align-items: start;
    gap: clamp(30px, 4vw, 62px);
    padding-bottom: clamp(48px, 6vw, 68px);
}

.footer-brand {
    --footer-logo-canvas: 190px;
    --footer-logo-frame-width: 167px;
    --footer-logo-frame-height: 110px;
}

.footer-brand > a {
    display: block;
    overflow: hidden;
    width: var(--footer-logo-frame-width);
    height: var(--footer-logo-frame-height);
    margin-bottom: 20px;
}

.footer-brand img {
    width: var(--footer-logo-canvas);
    max-width: none;
    height: var(--footer-logo-canvas);
    object-fit: contain;
    transform: translate(-6.2%, -21.6%);
}

.footer-brand p {
    max-width: 320px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.79rem;
    line-height: 1.65;
}

.footer-column h2 {
    margin-bottom: 18px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 7px;
}

.footer-column a,
.footer-column li,
.footer-column span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
}

.footer-column a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.contact-list .icon {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    color: var(--gold);
}

.footer-hours {
    display: grid;
    gap: 2px;
}

.footer-hours > span {
    display: block;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 64px;
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.contact-launcher {
    position: fixed;
    z-index: 900;
    bottom: 22px;
    left: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-launcher > button {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green-800), var(--green-950));
    box-shadow:
        0 14px 34px rgba(8, 37, 31, 0.32),
        0 0 0 6px rgba(212, 175, 55, 0.12);
    color: var(--gold);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-launcher > button::before {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(212, 175, 55, 0.52);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    animation: launcher-pulse 2.6s ease-out infinite;
}

.contact-launcher > button:hover {
    box-shadow:
        0 18px 42px rgba(8, 37, 31, 0.38),
        0 0 0 7px rgba(212, 175, 55, 0.18);
    transform: translateY(-2px) scale(1.03);
}

.contact-launcher > button .icon {
    width: 27px;
    height: 27px;
    stroke-width: 2;
}

@keyframes launcher-pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.88);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

.launcher-close {
    display: none;
}

.contact-launcher.is-open .launcher-contact {
    display: none;
}

.contact-launcher.is-open .launcher-close {
    display: block;
}

.contact-launcher.is-open > button::before {
    animation: none;
    opacity: 0;
}

.launcher-channels {
    display: grid;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.contact-launcher.is-open .launcher-channels {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.launcher-channels a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--green-900);
    font-size: 0.75rem;
    font-weight: 700;
}

.launcher-channels .icon {
    width: 18px;
    height: 18px;
}

.menu-open .contact-launcher {
    display: none;
}

.not-found {
    min-height: 55vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.not-found .hero-actions {
    justify-content: center;
}

/* Responsive */
@media (max-width: 1180px) {
    :root {
        --header-height: 74px;
    }

    .site-header,
    .site-header.is-scrolled {
        --header-height: 74px;
        background: var(--green-950);
    }

    .site-header.is-scrolled {
        box-shadow: 0 10px 24px rgba(4, 20, 17, 0.22);
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .brand,
    .site-header.is-scrolled .brand {
        width: 94px;
        height: 58px;
    }

    .brand-logo-dark {
        display: none;
    }

    .brand-logo-light {
        display: block;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .menu-backdrop {
        position: fixed;
        z-index: 1002;
        inset: var(--header-height) 0 0;
        display: block;
        background: rgba(4, 20, 17, 0.52);
        opacity: 0;
        pointer-events: none;
        transition: opacity 200ms ease;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-drawer {
        position: fixed;
        z-index: 1003;
        top: 0;
        right: 0;
        display: flex;
        width: min(88vw, 390px);
        max-width: 100%;
        height: 100dvh;
        overflow-x: hidden;
        overflow-y: auto;
        flex-direction: column;
        padding: 20px;
        background: var(--white);
        box-shadow: -16px 0 48px rgba(4, 20, 17, 0.22);
        visibility: hidden;
        opacity: 0;
        clip-path: inset(0 0 0 100%);
        overscroll-behavior: contain;
        pointer-events: none;
        transition:
            clip-path 240ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 180ms ease,
            visibility 0s linear 240ms;
    }

    .mobile-drawer.is-open {
        visibility: visible;
        opacity: 1;
        clip-path: inset(0);
        pointer-events: auto;
        transition-delay: 0s;
    }

    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border);
        color: var(--green-900);
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 600;
    }

    .drawer-close {
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border-radius: 50%;
        background: #f6f1e7;
    }

    .mobile-drawer nav {
        overflow-y: auto;
        padding-block: 12px;
    }

    .mobile-drawer nav a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        color: var(--green-900);
        font-size: 0.85rem;
        font-weight: 650;
    }

    .mobile-drawer nav a[aria-current="page"] {
        color: var(--gold-dark);
    }

    .mobile-drawer nav .icon {
        width: 17px;
        height: 17px;
    }

    .drawer-actions {
        display: grid;
        margin-top: auto;
        gap: 9px;
        padding-top: 16px;
    }

    .drawer-socials {
        padding-top: 18px;
    }

    .drawer-socials p {
        margin-bottom: 8px;
        font-size: 0.72rem;
        font-weight: 700;
    }

    .drawer-socials > div {
        display: flex;
        gap: 9px;
    }

    .social-link {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 50%;
        background: var(--green-900);
        color: var(--white);
        line-height: 0;
    }

    .social-instagram {
        background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    }

    .social-link .icon {
        display: block;
        width: 21px;
        height: 21px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
        gap: 38px;
    }

    .hero-info-card {
        left: -24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .sidebar,
    .sticky-intro {
        position: static;
    }

    .sidebar {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .hero-track,
    .hero-slide,
    .hero-grid {
        min-height: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        padding-block: 56px 100px;
    }

    .hero-copy {
        max-width: 700px;
    }

    .hero-visual picture {
        aspect-ratio: 16 / 10;
        border-radius: var(--radius-lg);
    }

    .hero-info-card {
        bottom: 18px;
        left: 18px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-strip article + article {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .service-grid,
    .post-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section,
    .seo-layout,
    .faq-preview-grid,
    .faq-page-grid,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .split-media {
        max-width: 680px;
    }

    .process-grid,
    .process-grid-six {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-card {
        min-height: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .map-section iframe {
        height: clamp(280px, 80vw, 360px);
        aspect-ratio: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .lightbox {
        grid-template-rows: 56px minmax(0, 1fr) 56px auto;
        padding-inline: 12px;
    }

    .lightbox-stage {
        grid-template-columns: minmax(0, 1fr);
    }

    .lightbox-stage > .lightbox-arrow {
        display: none;
    }

    .lightbox-mobile-controls {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .lightbox-media img,
    .lightbox-media video {
        max-height: calc(100vh - 220px);
    }
}

@media (max-width: 640px) {
    :root {
        --gutter: 18px;
        --header-height: 78px;
    }

    .site-header {
        --header-height: 78px;
    }

    .site-header.is-scrolled {
        --header-height: 72px;
    }

    .brand {
        width: 113.4px;
        height: 70.2px;
        padding-block: 4px;
    }

    .site-header.is-scrolled .brand {
        width: 84px;
        height: 52px;
        padding-block: 0;
    }

    .section {
        padding-block: 62px;
    }

    h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    h2 {
        font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    }

    .heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .hero-grid {
        padding-block: 48px 96px;
    }

    .slider-controls {
        bottom: 28px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-visual picture {
        aspect-ratio: 4 / 3;
    }

    .hero-info-card {
        position: relative;
        bottom: auto;
        left: auto;
        width: calc(100% - 24px);
        margin: -58px auto 0;
    }

    .trust-strip-wrap {
        margin-top: 0;
    }

    .service-grid,
    .post-grid,
    .value-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .process-grid,
    .process-grid-six,
    .article-steps,
    .related-service-grid,
    .related-post-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .media-badge {
        right: 12px;
        bottom: 16px;
    }

    .accordion-trigger {
        grid-template-columns: 36px minmax(0, 1fr) 34px;
        gap: 10px;
        padding: 13px 12px;
    }

    .accordion-number {
        width: 34px;
        height: 34px;
    }

    .accordion-question {
        font-size: 0.98rem;
    }

    .accordion-answer {
        padding: 0 18px 20px 58px;
    }

    .detail-cover {
        height: auto;
    }

    .detail-cover img {
        height: 100%;
    }

    .gallery-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-filters {
        width: 100%;
    }

    .gallery-filters button {
        flex: 1 1 auto;
        padding-inline: 10px;
    }

    .gallery-caption {
        padding: 22px 9px 8px;
        font-size: 0.64rem;
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .field-full {
        grid-column: auto;
    }

    .cta-band {
        padding-top: 20px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-card .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand {
        --footer-logo-canvas: 165px;
        --footer-logo-frame-width: 145px;
        --footer-logo-frame-height: 95px;
    }

    .footer-bottom {
        min-height: 86px;
        align-items: flex-start;
        flex-direction: column;
        padding-left: 58px;
    }

    .contact-launcher {
        bottom: 18px;
        left: 14px;
    }

    .contact-launcher > button {
        width: 48px;
        height: 48px;
    }

    .contact-launcher > button::before {
        inset: -5px;
    }

    .contact-launcher > button .icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 360px) {
    .gallery-filters button {
        font-size: 0.7rem;
    }

    .gallery-caption {
        font-size: 0.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}
