:root {
    --cream: #f0ece4;
    --cream-dark: #e8e2d8;
    --ink: #1a1714;
    --ink-mid: #2e2a26;
    --ink-soft: #6b6258;
    --gold: #a87d4b;
    --gold-light: #c9a96e;
    --white: #faf8f5;
    --border: rgba(26, 23, 20, 0.08);
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.55;
    margin: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: inherit;
}

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

.site-header {
    align-items: center;
    background: rgba(240, 236, 228, 0.96);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: 1.05rem clamp(1.25rem, 4vw, 3.5rem);
    position: sticky;
    top: 0;
    z-index: 20;
}

.site-logo {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav__list {
    display: flex;
    gap: clamp(1rem, 3vw, 2.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a,
.site-header__cta,
.site-footer a,
.editorial-hero__aside a,
.button-outline-light,
.gallery-cta a,
.pricing-preview__footer a,
.final-cta a {
    text-decoration: none;
}

.site-nav__list a,
.site-header__cta {
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav__list a {
    color: var(--ink-soft);
}

.site-header__cta {
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 0.7rem 1.35rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.site-header__cta:hover {
    background: var(--ink);
    color: var(--white);
}

.section-kicker {
    color: var(--gold);
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.75rem;
}

.button {
    align-items: center;
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 500;
    justify-content: center;
    letter-spacing: 0.16em;
    min-height: 44px;
    padding: 0.85rem 1.45rem;
    text-decoration: none;
    text-transform: uppercase;
}

.button--primary {
    background: var(--ink);
    color: var(--white);
}

.button--secondary {
    border: 1px solid var(--border);
    color: var(--ink);
}

.button--light {
    background: var(--white);
    color: var(--ink);
    margin-top: 1.25rem;
}

.editorial-hero {
    background: var(--ink-mid);
    height: calc(100svh - 78px);
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

.editorial-hero__image {
    animation: heroZoom 12s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    height: 100%;
    object-position: center 30%;
    position: absolute;
    inset: 0;
    transform: scale(1.04);
    width: 100%;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }
}

.editorial-hero::after {
    background: linear-gradient(to bottom, rgba(26, 23, 20, 0.14) 0%, rgba(26, 23, 20, 0) 44%, rgba(26, 23, 20, 0.78) 100%);
    content: "";
    position: absolute;
    inset: 0;
}

.editorial-hero__content {
    align-items: end;
    bottom: 0;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr auto;
    left: 0;
    padding: 0 clamp(1.5rem, 4vw, 3.5rem) clamp(2.4rem, 4vh, 3.5rem);
    position: absolute;
    right: 0;
    z-index: 2;
}

.editorial-hero__eyebrow {
    color: var(--gold-light);
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.editorial-hero h1,
.intro-story h2,
.feature-pair__text h2,
.process-section__header h2,
.about-sanga__text h2,
.pricing-preview__header h2,
.trust-section__header h2,
.final-cta h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0;
}

.editorial-hero h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 5.2vw, 4.8rem);
    line-height: 1.06;
    margin-bottom: 0;
}

.editorial-hero em,
.intro-story em,
.feature-pair__text em,
.process-section__header em,
.about-sanga__text em,
.pricing-preview__header em,
.trust-section__header em,
.final-cta em {
    color: var(--gold-light);
    font-style: italic;
}

.intro-story em,
.process-section__header em,
.pricing-preview__header em {
    color: var(--gold);
}

.editorial-hero__aside {
    max-width: 270px;
    text-align: right;
}

.editorial-hero__aside p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.editorial-hero__aside a,
.gallery-cta a,
.pricing-preview__footer a {
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding-bottom: 2px;
    text-transform: uppercase;
}

.editorial-hero__aside a {
    border-color: var(--gold-light);
    color: var(--white);
}

.editorial-hero__scroll {
    align-items: center;
    bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.editorial-hero__scroll span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.editorial-hero__scroll i {
    animation: scrollPulse 2s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.28);
    height: 40px;
    width: 1px;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.7;
    }
}

.intro-story {
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: clamp(4rem, 9vw, 9rem);
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 2fr);
    min-height: 72vh;
    overflow: hidden;
    padding: clamp(7rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
}

.intro-story::before {
    background: url("https://sanga.dk/wp-content/uploads/2023/02/RN4A2219.jpg") center / cover no-repeat;
    content: "";
    filter: blur(3px);
    height: 120%;
    opacity: 0.05;
    position: absolute;
    right: -5%;
    top: -10%;
    transform: scale(1.05);
    width: 55%;
}

.intro-story > * {
    position: relative;
    z-index: 1;
}

.intro-story h2 {
    font-size: clamp(2rem, 3.9vw, 3.45rem);
    line-height: 1.25;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
    max-width: 980px;
}

.intro-story p:not(.section-kicker) {
    color: var(--ink-soft);
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 1rem;
    max-width: 720px;
}

.intro-story__notes {
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    margin-top: 2.4rem;
    max-width: 680px;
    padding-top: 1.3rem;
}

.intro-story__details {
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(2.4rem, 5vw, 3.6rem);
    max-width: 900px;
}

.intro-story__details article {
    border-top: 1px solid var(--border);
    padding-top: 1.35rem;
}

.intro-story__details h3 {
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.intro-story__details p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 0;
}

.intro-story__notes span {
    color: var(--ink);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.intro-story__statement {
    border-left: 1px solid var(--gold);
    margin-top: clamp(2.6rem, 5vw, 4rem);
    max-width: 620px;
    padding-left: 1.6rem;
}

.intro-story__statement strong {
    color: var(--ink);
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.35;
}

.feature-pair {
    display: grid;
    gap: 6px;
    grid-template-columns: 1.45fr 1fr;
}

.feature-pair__image {
    height: 80vh;
    overflow: hidden;
}

.feature-pair__image img {
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

.feature-pair__image:hover img {
    transform: scale(1.03);
}

.feature-pair__text {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    position: relative;
}

.feature-pair__text::before {
    background: url("https://sanga.dk/wp-content/uploads/2023/02/294A1233.jpg") center / cover no-repeat;
    content: "";
    filter: blur(2px);
    opacity: 0.13;
    position: absolute;
    inset: 0;
    transform: scale(1.05);
}

.feature-pair__text > * {
    position: relative;
    z-index: 1;
}

.feature-pair__text h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.feature-pair__text p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.button-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 0.85rem 2rem;
    text-transform: uppercase;
    transition: background 0.35s ease, color 0.35s ease;
    width: fit-content;
}

.button-outline-light:hover {
    background: var(--white);
    color: var(--ink);
}

.home-pause {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3.5rem);
}

.home-pause h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.18;
    margin: 0;
    max-width: 980px;
}

.home-pause h2 em {
    color: var(--gold);
    font-style: italic;
}

.home-pause p {
    color: var(--ink-soft);
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-weight: 300;
    line-height: 1.85;
    margin: clamp(2rem, 4vw, 3rem) 0 0 auto;
    max-width: 540px;
}

.process-section {
    background: var(--white);
    overflow: hidden;
    padding: 8rem clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
}

.process-section::before {
    background: url("https://sanga.dk/wp-content/uploads/2023/02/RN4A3200.jpg") center 30% / cover no-repeat;
    content: "";
    filter: blur(1px);
    opacity: 0.04;
    position: absolute;
    inset: 0;
}

.process-section > * {
    position: relative;
    z-index: 1;
}

.process-section__header {
    align-items: end;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
}

.process-section__header h2,
.pricing-preview__header h2,
.trust-section__header h2 {
    font-size: clamp(1.8rem, 3vw, 2.85rem);
    line-height: 1.2;
}

.process-section__header p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
}

.process-steps {
    display: grid;
    gap: 3.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.process-steps article {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.process-steps span {
    color: var(--cream-dark);
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.process-steps h3 {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.process-steps p {
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-process {
    background: var(--white);
    border-top: 1px solid var(--border);
    margin: 0 auto;
    max-width: 1180px;
    padding: clamp(5rem, 8vw, 7rem) clamp(20px, 4vw, 56px);
}

.editorial-gallery {
    background: var(--cream);
}

.gallery-full {
    height: 80vh;
    overflow: hidden;
}

.gallery-full img,
.gallery-split img,
.gallery-asym img,
.gallery-three img {
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

.gallery-full:hover img,
.gallery-split img:hover,
.gallery-asym img:hover,
.gallery-three img:hover {
    transform: scale(1.035);
}

.gallery-split,
.gallery-asym,
.gallery-three {
    display: grid;
    gap: 6px;
    margin-top: 6px;
}

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

.gallery-split img {
    height: 60vh;
}

.gallery-interlude {
    background: var(--white);
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
    padding: clamp(4.8rem, 8vh, 7rem) clamp(1.5rem, 4vw, 3.5rem);
}

.gallery-interlude h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    margin: 0;
}

.gallery-interlude p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    margin: 0;
}

.gallery-quote {
    align-items: center;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    padding: 5rem clamp(1.5rem, 4vw, 3.5rem);
}

.gallery-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.7vw, 2.15rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.45;
    max-width: 520px;
}

.gallery-quote div {
    flex-shrink: 0;
    text-align: right;
}

.gallery-quote strong,
.gallery-quote span {
    display: block;
}

.gallery-quote strong {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.gallery-quote span {
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 300;
}

.gallery-asym {
    grid-template-columns: 2fr 1fr;
}

.gallery-asym img {
    height: 65vh;
}

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

.gallery-three img {
    height: 50vh;
}

.gallery-cta {
    border-top: 1px solid var(--border);
    padding: 4rem clamp(1.5rem, 4vw, 3.5rem);
    text-align: center;
}

.gallery-cta p,
.pricing-preview__footer p {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.about-sanga {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.about-sanga__image {
    overflow: hidden;
}

.about-sanga__image img {
    height: 100%;
    min-height: 500px;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

.about-sanga__image:hover img {
    transform: scale(1.03);
}

.about-sanga__text {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
}

.about-sanga__text::before {
    background: url("https://sanga.dk/wp-content/uploads/2023/02/294A4566.jpg") center / cover no-repeat;
    content: "";
    filter: blur(4px);
    opacity: 0.1;
    position: absolute;
    inset: 0;
    transform: scale(1.08);
}

.about-sanga__text > * {
    position: relative;
    z-index: 1;
}

.about-sanga__text h2 {
    color: var(--white);
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-sanga__text p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    max-width: 440px;
}

.signature {
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 300;
    margin-top: 1.25rem;
}

.pricing-preview {
    background: var(--cream);
    overflow: hidden;
    padding: 8rem clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
}

.pricing-preview::before {
    background: url("https://sanga.dk/wp-content/uploads/2023/02/8U2A8340.jpg") center 60% / cover no-repeat;
    content: "";
    filter: blur(2px);
    opacity: 0.06;
    position: absolute;
    inset: 0;
}

.pricing-preview > * {
    position: relative;
    z-index: 1;
}

.pricing-preview__header {
    margin-bottom: 4rem;
    text-align: center;
}

.pricing-preview__header p {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    margin: 1.2rem auto 0;
    max-width: 420px;
}

.pricing-preview__cards {
    border: 1px solid var(--border);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
}

.pricing-preview__cards article {
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 3rem 2.5rem;
}

.pricing-preview__cards article:last-child {
    border-right: 0;
}

.pricing-preview__cards article.is-featured {
    background: var(--ink);
    color: var(--white);
}

.pricing-preview__cards span {
    color: var(--gold);
    display: block;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-preview__cards h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.pricing-preview__cards p {
    color: var(--ink-soft);
    font-size: 0.84rem;
    margin-bottom: 2rem;
}

.pricing-preview__cards .is-featured p {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-preview__cards ul {
    border-top: 1px solid var(--border);
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 0;
}

.pricing-preview__cards li {
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
    font-size: 0.83rem;
    font-weight: 300;
    padding: 0.55rem 0;
}

.pricing-preview__cards li::before {
    color: var(--gold);
    content: "-";
    margin-right: 0.65rem;
}

.pricing-preview__cards .is-featured li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.58);
}

.pricing-preview__footer {
    text-align: center;
}

.trust-section {
    background: var(--ink);
    overflow: hidden;
    padding: 8rem clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
}

.trust-section::before {
    background: url("https://sanga.dk/wp-content/uploads/2023/02/294A9415.jpg") center 20% / cover no-repeat;
    content: "";
    filter: blur(3px);
    opacity: 0.08;
    position: absolute;
    inset: 0;
    transform: scale(1.05);
}

.trust-section > * {
    position: relative;
    z-index: 1;
}

.trust-section__header {
    align-items: end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
}

.trust-section__header h2 {
    color: var(--white);
}

.trust-section__header span {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.trust-section__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

.trust-section__grid p {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-serif);
    font-size: 1.18rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.65;
}

.final-cta {
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.final-cta img {
    height: 100%;
    object-position: center 40%;
    position: absolute;
    inset: 0;
    width: 100%;
}

.final-cta::after {
    background: linear-gradient(to bottom, rgba(26, 23, 20, 0.3), rgba(26, 23, 20, 0.72));
    content: "";
    position: absolute;
    inset: 0;
}

.final-cta div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 3rem 1.5rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

.final-cta a {
    background: var(--white);
    color: var(--ink);
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 1.1rem 3rem;
    text-transform: uppercase;
    transition: background 0.35s ease, color 0.35s ease;
}

.final-cta a:hover {
    background: var(--gold);
    color: var(--white);
}

.subpage-flow {
    background: var(--cream);
}

.subpage-hero {
    background: var(--ink);
    min-height: calc(100svh - 78px);
    overflow: hidden;
    position: relative;
}

.subpage-hero__image {
    height: 100%;
    object-position: center;
    position: absolute;
    inset: 0;
    width: 100%;
}

.subpage-hero::after {
    background: linear-gradient(to bottom, rgba(26, 23, 20, 0.18), rgba(26, 23, 20, 0.72));
    content: "";
    position: absolute;
    inset: 0;
}

.subpage-hero__content {
    align-items: flex-start;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 78px);
    max-width: 900px;
    padding: clamp(7rem, 12vh, 11rem) clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
    z-index: 1;
}

.subpage-hero__content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.9rem, 6vw, 6rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
}

.subpage-hero__content h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.subpage-hero__content p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
    font-weight: 300;
    line-height: 1.8;
    margin-top: 1.8rem;
    max-width: 560px;
}

.subpage-hero--pricing .subpage-hero__image,
.subpage-hero--contact .subpage-hero__image {
    object-position: center 42%;
}

.editorial-note {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr) minmax(260px, 0.46fr);
    padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3.5rem);
}

.editorial-note h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.65rem);
    font-weight: 300;
    line-height: 1.12;
    margin: 0;
}

.editorial-note h2 em {
    color: var(--gold);
    font-style: italic;
}

.editorial-note p {
    align-self: end;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    margin: 0;
}

.editorial-note--pricing {
    grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.85fr) minmax(320px, 0.58fr);
}

.wedding-mosaic {
    background: var(--cream);
    display: grid;
    gap: 6px;
    grid-template-columns: 1.15fr 0.85fr 0.8fr;
}

.wedding-mosaic img {
    height: 46vh;
    min-height: 320px;
    width: 100%;
}

.wedding-mosaic img:first-child {
    grid-column: span 2;
}

.wedding-mosaic img:nth-child(2) {
    grid-row: span 2;
    height: 100%;
}

.page-section--pricing {
    max-width: none;
    padding-left: clamp(1.5rem, 4vw, 3.5rem);
    padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

.pricing-grid--editorial {
    gap: 0;
}

.pricing-grid--editorial .price-card {
    background: rgba(255, 255, 255, 0.62);
    min-height: 430px;
    padding: clamp(2rem, 3vw, 3.2rem);
}

.pricing-grid--editorial .price-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.pricing-grid--editorial .price-card__price {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    font-weight: 300;
}

.pricing-grid--editorial .price-card p:not(.eyebrow):not(.price-card__price) {
    font-weight: 300;
    line-height: 1.78;
}

.pricing-grid--editorial .price-card--featured {
    background: var(--ink);
}

.contact-editorial {
    background: var(--cream);
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    padding: 6px;
}

.contact-card--dark,
.contact-notes--editorial {
    border: 0;
    min-height: 560px;
    padding: clamp(2rem, 5vw, 5rem);
}

.contact-card--dark {
    background: var(--ink);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-card--dark h2,
.contact-notes--editorial h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.05;
}

.contact-card--dark p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 300;
    line-height: 1.75;
    max-width: 430px;
}

.contact-notes--editorial {
    background: rgba(255, 255, 255, 0.58);
}

.contact-notes--editorial h2 em {
    color: var(--gold);
    font-style: italic;
}

.contact-notes--editorial .check-list {
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.final-cta--compact {
    height: 62vh;
    min-height: 480px;
}

.sub-hero {
    margin: 0 auto;
    max-width: 1180px;
    padding: 82px clamp(20px, 4vw, 56px) 68px;
}

.sub-hero h1,
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 300;
    line-height: 1.02;
    max-width: 920px;
}

.sub-hero p,
.page-hero p,
.feature-item p,
.price-card p,
.contact-card p,
.contact-notes li,
.text-stack p {
    color: var(--ink-soft);
}

.sub-hero--image {
    align-items: center;
    display: grid;
    gap: clamp(28px, 5vw, 64px);
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.66fr);
}

.sub-hero--image img {
    aspect-ratio: 4 / 5;
    height: 100%;
    width: 100%;
}

.page-section,
.page-hero {
    margin: 0 auto;
    max-width: 1180px;
    padding: 76px clamp(20px, 4vw, 56px);
}

.page-section--dark {
    background: var(--ink);
    color: var(--white);
    max-width: none;
}

.page-section--dark .split-layout {
    margin: 0 auto;
    max-width: 1180px;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.contact-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.05;
}

.feature-grid,
.pricing-grid,
.contact-layout,
.service-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-item,
.price-card,
.contact-card,
.contact-notes,
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
}

.feature-item span,
.service-card span {
    color: var(--gold);
    display: block;
    font-weight: 700;
    margin-bottom: 58px;
}

.portfolio-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
    padding: 10px clamp(20px, 4vw, 56px) 78px;
}

.portfolio-strip img {
    aspect-ratio: 3 / 4;
    height: 100%;
    width: 100%;
}

.split-layout,
.text-stack {
    display: grid;
    gap: 42px;
}

.split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.price-card--featured {
    background: var(--ink);
    color: var(--white);
}

.price-card--featured p,
.price-card--featured li {
    color: rgba(255, 255, 255, 0.78);
}

.price-card__price {
    color: var(--ink);
    font-size: 28px;
    font-weight: 700;
}

.price-card ul,
.check-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.price-card li,
.check-list li {
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.price-card--featured li {
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.site-footer {
    align-items: center;
    background: var(--ink-mid);
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 2rem clamp(1.25rem, 4vw, 3.5rem);
}

.site-footer strong {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.32);
    margin: 0.35rem 0 0;
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
        position: static;
    }

    .site-nav__list {
        flex-wrap: wrap;
    }

    .editorial-hero {
        height: auto;
        min-height: 640px;
    }

    .editorial-hero__content {
        gap: 2rem;
        grid-template-columns: 1fr;
        padding-bottom: 3.5rem;
    }

    .editorial-hero__aside {
        text-align: left;
    }

    .intro-story,
    .feature-pair,
    .home-pause,
    .editorial-note,
    .wedding-mosaic,
    .contact-editorial,
    .process-section__header,
    .process-steps,
    .gallery-split,
    .gallery-asym,
    .gallery-interlude,
    .about-sanga,
    .pricing-preview__cards,
    .trust-section__grid,
    .sub-hero--image,
    .feature-grid,
    .pricing-grid,
    .contact-layout,
    .service-grid,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .intro-story {
        gap: 2rem;
        padding-bottom: 5rem;
        padding-top: 5rem;
    }

    .intro-story__details {
        grid-template-columns: 1fr;
    }

    .feature-pair__image {
        height: 62vw;
        min-height: 340px;
    }

    .process-section,
    .contact-process,
    .pricing-preview,
    .trust-section {
        padding-bottom: 5rem;
        padding-top: 5rem;
    }

    .gallery-full,
    .gallery-split img,
    .gallery-asym img {
        height: 58vw;
        min-height: 320px;
    }

    .gallery-three {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-three img {
        height: 44vw;
        min-height: 240px;
    }

    .gallery-quote {
        align-items: flex-start;
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-quote div {
        text-align: left;
    }

    .pricing-preview__cards article {
        border-bottom: 1px solid var(--border);
        border-right: 0;
    }

    .pricing-preview__cards article:last-child {
        border-bottom: 0;
    }

    .trust-section__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

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

    .subpage-hero,
    .subpage-hero__content {
        min-height: 620px;
    }

    .subpage-hero__content {
        padding-bottom: 5rem;
        padding-top: 5rem;
    }

    .editorial-note {
        gap: 2rem;
    }

    .wedding-mosaic img,
    .wedding-mosaic img:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
        height: 54vw;
        min-height: 260px;
    }

    .contact-card--dark,
    .contact-notes--editorial {
        min-height: auto;
    }

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

@media (max-width: 560px) {
    .editorial-hero h1 {
        font-size: 2.65rem;
    }

    .site-header__cta {
        width: 100%;
        text-align: center;
    }

    .gallery-three {
        grid-template-columns: 1fr;
    }
}
