:root {
    --bg: #f7f4ef;
    --surface: #fefcf8;
    --ink: #181614;
    --ink-soft: #524b43;
    --line: #d7cec2;
    --gold: #c79f78;
    --gold-deep: #996a45;
    --charcoal: #1f1b17;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 28px 60px rgba(34, 24, 17, 0.12);
    --shadow-card: 0 14px 36px rgba(34, 24, 17, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

h1,
h2,
h3,
.brand-name {
    margin: 0;
    line-height: 1.1;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
}

p,
ul {
    margin: 0;
}

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

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(18, 15, 12, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.scrolled {
    background: rgba(250, 247, 242, 0.94);
    box-shadow: 0 10px 30px rgba(28, 21, 15, 0.1);
    border-bottom-color: rgba(46, 38, 30, 0.14);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 1.2rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(125deg, var(--gold), var(--gold-deep));
    padding: 0.28rem;
    box-shadow: 0 8px 22px rgba(23, 18, 13, 0.24);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 600;
    color: #fff;
    transition: color 0.25s ease;
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 239, 228, 0.92);
    transition: color 0.25s ease;
}

.site-header.scrolled .brand-name {
    color: var(--charcoal);
}

.site-header.scrolled .brand-tagline {
    color: #7b6049;
}

.primary-nav {
    position: relative;
}

.nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    padding: 0;
    display: none;
}

.site-header.scrolled .nav-toggle {
    border-color: rgba(42, 33, 25, 0.26);
    background: rgba(255, 255, 255, 0.8);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
    margin: 0 auto;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

.site-header.scrolled .nav-toggle {
    color: #2a2119;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #f9f3ea;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled .nav-link {
    color: #2d271f;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
    color: var(--gold);
    border-bottom-color: currentColor;
}

.nav-link-cta {
    border-bottom: 0;
    border-radius: 999px;
    padding: 0.62rem 1.1rem;
    background: linear-gradient(125deg, var(--gold), var(--gold-deep));
    color: #fff;
    box-shadow: 0 10px 24px rgba(76, 48, 30, 0.34);
}

.nav-link-cta:hover,
.nav-link-cta:focus,
.nav-link-cta.is-active {
    color: #fff;
    border-bottom-color: transparent;
    transform: translateY(-1px);
}

.site-header.scrolled .nav-link-cta {
    color: #fff;
}

.site-main {
    padding: 2rem 0 4rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.8rem);
    padding: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, #f6efe4 0%, #eee6d8 52%, #f8f4ec 100%);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(137, 105, 79, 0.16);
    position: relative;
    overflow: hidden;
}

.hero--parallax::before,
.hero--parallax::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    animation: parallax-float 10s ease-in-out infinite alternate;
}

.hero--parallax::before {
    width: 420px;
    height: 420px;
    top: -190px;
    right: -120px;
    background: radial-gradient(circle, rgba(199, 159, 120, 0.4) 0%, rgba(199, 159, 120, 0) 72%);
}

.hero--parallax::after {
    width: 320px;
    height: 320px;
    bottom: -170px;
    left: -110px;
    background: radial-gradient(circle, rgba(106, 83, 63, 0.28) 0%, rgba(106, 83, 63, 0) 72%);
    animation-duration: 13s;
}

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

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4.3rem);
    margin-bottom: 1rem;
    color: #231d17;
    max-width: 12ch;
}

.hero-content p {
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-image {
    min-height: 320px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(199, 159, 120, 0.38), transparent 60%),
        radial-gradient(circle at bottom right, rgba(153, 106, 69, 0.3), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid rgba(121, 93, 69, 0.12);
}

.terrarium-visual {
    width: min(420px, 90%);
    min-height: 230px;
    border-radius: 1.25rem;
    border: 2px solid rgba(120, 89, 62, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #473526;
    background:
        linear-gradient(180deg, rgba(252, 247, 239, 0.9) 0%, rgba(235, 224, 210, 0.6) 100%),
        repeating-linear-gradient(90deg, rgba(153, 106, 69, 0.08), rgba(153, 106, 69, 0.08) 2px, transparent 2px, transparent 28px);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card,
.goal-card,
.news-item,
.two-column aside,
.contact-details,
.contact-form {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(126, 98, 73, 0.14);
}

.feature-card {
    padding: 1.75rem;
}

.feature-card h2,
.goal-card h2,
.news-item h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #2d261f;
    margin-bottom: 0.45rem;
}

.feature-card p,
.goal-card p,
.news-item p {
    color: var(--ink-soft);
}

.parallax-banner {
    --banner-bg: url("../img/parallax-banner.jpg");
    margin: 3rem 0;
    min-height: clamp(300px, 46vw, 420px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: clamp(1.2rem, 4vw, 2rem);
    box-shadow: 0 16px 34px rgba(47, 34, 23, 0.28);
    background-image:
        linear-gradient(120deg, rgba(17, 15, 13, 0.76), rgba(17, 15, 13, 0.26)),
        var(--banner-bg);
    background-size: auto, cover;
    background-position: center, center 42%;
    background-repeat: no-repeat;
    background-attachment: scroll, fixed;
    clip-path: polygon(0 9%, 100% 0, 100% 91%, 0 100%);
}

.parallax-banner::before,
.parallax-banner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: clamp(26px, 4vw, 52px);
    background: var(--bg);
    z-index: 1;
    pointer-events: none;
}

.parallax-banner::before {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
}

.parallax-banner::after {
    bottom: -1px;
    clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%);
}

.parallax-banner--secondary {
    --banner-bg: url("../img/parallax-banner-2.jpg");
    min-height: clamp(280px, 44vw, 390px);
    justify-content: flex-end;
    background-position: center, center 28%;
    clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 91%);
}

.parallax-banner--secondary::before {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.parallax-banner--secondary::after {
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

.parallax-banner__panel {
    max-width: 620px;
    color: #f4f0e8;
    background: rgba(14, 12, 10, 0.58);
    border: 1px solid rgba(244, 240, 232, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
    position: relative;
    z-index: 2;
}

.parallax-banner__eyebrow {
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.75rem;
    color: #dec3a9;
}

.parallax-banner h2 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    color: #fff;
}

.parallax-banner p {
    margin-top: 0;
}

.callout {
    margin-top: 3rem;
    padding: clamp(1.5rem, 4vw, 2.2rem);
    background: linear-gradient(130deg, #efe5d5 0%, #f8f4ec 56%, #ead8be 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(126, 98, 73, 0.18);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.callout h2 {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    color: #2d261f;
    margin-bottom: 0.5rem;
}

.callout p {
    color: var(--ink-soft);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.86rem 1.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.button--primary {
    color: #fff;
    background: linear-gradient(125deg, var(--gold), var(--gold-deep));
    box-shadow: 0 14px 30px rgba(128, 86, 56, 0.34);
}

.button--primary:hover,
.button--primary:focus {
    box-shadow: 0 18px 34px rgba(120, 77, 48, 0.38);
}

.button--secondary {
    color: #fff;
    background: linear-gradient(125deg, #7b5a41, #5f442f);
}

.button--outline {
    color: #3b3027;
    border-color: rgba(67, 52, 40, 0.55);
    background: rgba(255, 255, 255, 0.56);
}

.button--outline:hover,
.button--outline:focus {
    background: rgba(255, 255, 255, 0.84);
}

.page-hero {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: clamp(1.8rem, 4vw, 2.8rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fbf8f3 0%, #f5f1ea 100%);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(126, 98, 73, 0.14);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #28221b;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--ink-soft);
}

.two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.two-column > div {
    background: var(--surface);
    padding: clamp(1.2rem, 3vw, 1.8rem);
    border-radius: var(--radius-md);
    border: 1px solid rgba(126, 98, 73, 0.14);
    box-shadow: var(--shadow-card);
}

.two-column > div h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: #2d261f;
    margin-bottom: 0.7rem;
}

.two-column > div p + p {
    margin-top: 0.8rem;
}

.two-column > div p,
.two-column li,
.contact-details p,
.goal-card li {
    color: var(--ink-soft);
}

.two-column aside {
    padding: 1.5rem;
}

.two-column aside h3 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    color: #2d261f;
    margin-bottom: 0.7rem;
}

.goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.goal-card {
    padding: 1.75rem;
}

.goal-card ul {
    padding-left: 1.2rem;
    margin-top: 0.8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-details,
.contact-form {
    padding: 2rem;
}

.contact-details h2,
.contact-form h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2d261f;
    margin-bottom: 0.9rem;
}

.contact-details p + p {
    margin-top: 0.55rem;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
}

.contact-form label {
    font-weight: 600;
    color: #3f3328;
}

.form-message {
    margin: 0.5rem 0 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.form-message ul {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
    font-weight: 400;
}

.form-message.is-success {
    background: rgba(106, 142, 106, 0.13);
    border-color: rgba(106, 142, 106, 0.35);
    color: #385037;
}

.form-message.is-error {
    background: rgba(138, 90, 47, 0.11);
    border-color: rgba(138, 90, 47, 0.3);
    color: #6e4622;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(138, 90, 47, 0.45);
    background: #fffdf9;
    color: var(--ink);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(199, 159, 120, 0.46);
    outline-offset: 1px;
}

.map-placeholder {
    background: linear-gradient(180deg, #fbf8f3 0%, #f5f1ea 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--ink-soft);
    border: 1px dashed rgba(126, 98, 73, 0.42);
}

.news-list {
    display: grid;
    gap: 1.5rem;
}

.news-item {
    padding: 1.75rem;
}

.news-item time {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
}

.news-link {
    font-weight: 700;
    color: #785238;
}

.site-footer {
    background: #1f1b17;
    color: #f3ece3;
    padding: 3rem 0 0;
    margin-top: 4rem;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(213, 178, 145, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-content h2,
.footer-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 3.3vw, 2rem);
    color: #d5b291;
    margin-bottom: 0.55rem;
}

.footer-about p,
.footer-contact p,
.footer-links a {
    color: rgba(243, 236, 227, 0.84);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 0.35rem;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(224, 203, 182, 0.16);
}

.footer-bottom p {
    margin: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(243, 236, 227, 0.68);
}

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

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-page {
    display: grid;
    gap: clamp(3rem, 8vw, 6rem);
}

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero-landing {
    position: relative;
    min-height: min(86vh, 880px);
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-landing-media {
    position: absolute;
    inset: -8% 0;
    will-change: transform;
}

.hero-landing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-landing-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(16, 15, 14, 0.82) 6%, rgba(16, 15, 14, 0.54) 57%, rgba(16, 15, 14, 0.7) 100%),
        radial-gradient(circle at 88% 12%, rgba(154, 131, 98, 0.24), transparent 34%);
}

.hero-landing-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 92vw);
    margin: 0 auto;
    padding: clamp(6rem, 15vh, 9rem) 0 clamp(4.5rem, 11vh, 7rem);
}

.hero-kicker {
    margin-bottom: 1rem;
    color: #d9c3a8;
    text-transform: uppercase;
    letter-spacing: 0.19em;
    font-weight: 700;
    font-size: 0.75rem;
}

.hero-landing h1 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    color: #fff;
    margin-bottom: 1rem;
}

.hero-lead {
    max-width: 55ch;
    color: rgba(249, 242, 233, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    margin-bottom: 2.1rem;
}

.button:focus-visible,
.nav-link:focus-visible,
.gallery-item:focus-visible {
    outline: 2px solid rgba(222, 196, 166, 0.9);
    outline-offset: 2px;
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.button--outline-light:hover,
.button--outline-light:focus {
    background: rgba(255, 255, 255, 0.17);
}

.section-heading {
    margin-bottom: 1.6rem;
    max-width: 70ch;
}

.section-kicker {
    margin-bottom: 0.55rem;
    color: #7b6049;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    font-size: 0.73rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4.8vw, 3.7rem);
    color: #25201a;
}

.services-section {
    margin-top: -0.3rem;
}

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

.service-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    border: 1px solid rgba(126, 98, 73, 0.16);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 24, 17, 0.12);
}

.service-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(125deg, #efe3d0, #e5d3ba);
    color: #5f4631;
    margin-bottom: 0.95rem;
}

.service-icon svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    color: #2d261f;
    margin-bottom: 0.45rem;
}

.service-card p {
    color: var(--ink-soft);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.1rem, 4vw, 2.4rem);
    align-items: stretch;
}

.split-section--reverse .split-text {
    order: 2;
}

.split-section--reverse .split-media {
    order: 1;
}

.split-text {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 4vw, 2.4rem);
    border: 1px solid rgba(126, 98, 73, 0.15);
    box-shadow: var(--shadow-card);
}

.split-text h2 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    color: #29221b;
    margin-bottom: 0.8rem;
}

.split-text p {
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.split-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(34, 24, 17, 0.16);
    min-height: 320px;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-media:hover img {
    transform: scale(1.04);
}

.cta-strip {
    position: relative;
    background:
        linear-gradient(120deg, rgba(17, 15, 13, 0.84), rgba(17, 15, 13, 0.62)),
        url("../img/parallax-banner-2.jpg");
    background-size: auto, cover;
    background-position: center, center;
    color: #fff;
    padding: clamp(2.2rem, 7vw, 4.3rem) 0;
}

.cta-strip--slanted {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    background-image:
        linear-gradient(120deg, rgba(17, 15, 13, 0.86), rgba(17, 15, 13, 0.6)),
        url("../img/parallax-banner.jpg");
}

.cta-strip-inner {
    width: min(1180px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    max-width: 70ch;
}

.cta-strip h2 {
    font-size: clamp(2rem, 4.4vw, 3.5rem);
}

.cta-strip .section-kicker {
    color: #dcc2a5;
}

.gallery-section {
    display: grid;
    gap: 1.4rem;
}

.gallery-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(80px, 7.4vw, 122px);
}

.gallery-item {
    position: relative;
    border: 1px solid rgba(126, 98, 73, 0.14);
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    grid-column: span 4;
    grid-row: span 3;
    box-shadow: var(--shadow-card);
    background: #26211c;
}

.gallery-item--large {
    grid-column: span 8;
    grid-row: span 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 15, 12, 0.02) 36%, rgba(18, 15, 12, 0.74) 100%);
}

.gallery-item-caption {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 2;
    color: #f5efe8;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.gallery-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 880px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-list {
        position: absolute;
        top: calc(100% + 0.45rem);
        right: 0;
        background: #faf6f1;
        padding: 1rem 1.3rem;
        border-radius: 0.8rem;
        box-shadow: 0 14px 28px rgba(31, 29, 30, 0.15);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        display: none;
        min-width: 220px;
    }

    .nav-list .nav-link {
        color: #2a2119;
    }

    .nav-item-cta {
        width: 100%;
    }

    .nav-link-cta {
        width: 100%;
        justify-content: center;
    }

    .nav-list.is-open {
        display: flex;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section--reverse .split-text,
    .split-section--reverse .split-media {
        order: initial;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item,
    .gallery-item--large {
        grid-column: span 1;
        grid-row: auto;
        min-height: 220px;
    }

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

    .parallax-banner,
    .parallax-banner--secondary {
        min-height: 280px;
        background-attachment: scroll;
        background-position: center;
        clip-path: none;
        border-radius: var(--radius-md);
    }

    .parallax-banner::before,
    .parallax-banner::after {
        display: none;
    }

    .cta-strip--slanted {
        clip-path: none;
    }
}

@media (max-width: 600px) {
    .site-header .container {
        min-height: 76px;
    }

    .hero {
        padding: 1.6rem;
    }

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

    .hero-landing {
        min-height: 74vh;
    }

    .hero-landing-inner {
        padding-top: clamp(5rem, 14vh, 6.8rem);
        padding-bottom: 3.6rem;
    }

    .hero-landing h1 {
        max-width: 15ch;
    }

    .parallax-banner {
        padding: 1rem;
    }

    .callout,
    .contact-details,
    .contact-form,
    .team,
    .page-hero {
        padding: 1.5rem;
    }
}

@keyframes parallax-float {
    from {
        transform: translateY(-8px);
    }
    to {
        transform: translateY(16px);
    }
}
