:root {
    --ink: #11100e;
    --ink-soft: #24211d;
    --paper: #f8f5ef;
    --paper-strong: #fffdf8;
    --sand: #e8dfd2;
    --sand-deep: #c4ae91;
    --gold: #b99a6b;
    --white: #ffffff;
    --muted: #6d675f;
    --line: rgba(17, 16, 14, 0.16);
    --line-light: rgba(255, 255, 255, 0.22);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-height: 72px;
    --radius: 2px;
    --shadow: 0 24px 70px rgba(18, 14, 10, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
blockquote {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.8rem, 12vw, 5.8rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.4rem, 9vw, 4.9rem);
    line-height: 1.02;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.15;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
    transition: transform 180ms ease;
}

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

.shell {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.section {
    padding-block: 88px;
}

.section-dark {
    background: var(--ink);
    color: var(--paper);
}

.section-sand {
    background: var(--sand);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    color: #7b6444;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: '';
}

.eyebrow.light {
    color: #dbc7a6;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.79rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:active {
    transform: scale(0.98);
}

.button-light {
    border-color: var(--paper-strong);
    background: var(--paper-strong);
    color: var(--ink);
}

.button-small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.68rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-block: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link.light {
    color: var(--paper);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    color: var(--white);
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    border-color: var(--line);
    background: rgba(248, 245, 239, 0.96);
    box-shadow: 0 8px 30px rgba(17, 16, 14, 0.08);
    color: var(--ink);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    width: min(100% - 28px, 1320px);
    height: 100%;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.brand img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.brand span {
    display: grid;
    line-height: 1;
}

.brand strong {
    overflow: hidden;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand small {
    margin-top: 5px;
    font-size: 0.5rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: currentColor;
    cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-active .menu-toggle {
    background: rgba(17, 16, 14, 0.06);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 0;
    padding: 34px 24px calc(110px + env(safe-area-inset-bottom));
    background: var(--paper);
    color: var(--ink);
    overflow-y: auto;
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu > a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
}

.mobile-languages {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.mobile-languages a {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 750;
}

.mobile-languages a[aria-current='page'] {
    background: var(--ink);
    color: var(--white);
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    min-height: max(780px, 100svh);
    align-items: flex-end;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
    overflow: clip;
}

.hero-image,
.hero-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    inset: 0 0 auto;
    height: min(62svh, 600px);
    background: #0b0a09;
    object-fit: contain;
    object-position: center top;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(7, 6, 5, 0.02) 0%, rgba(7, 6, 5, 0.04) 34%, rgba(17, 16, 14, 0.88) 60%, var(--ink) 74%),
        radial-gradient(circle at 50% 30%, rgba(185, 154, 107, 0.1), transparent 48%);
}

.hero-content {
    padding-block: clamp(500px, 64svh, 640px) 108px;
}

.campaign-page .hero-content {
    padding-top: clamp(410px, 56svh, 500px);
}

.hero h1 {
    max-width: 12ch;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.campaign-page .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 11.2vw, 3.55rem);
    line-height: 1;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    line-height: 1.62;
}

.campaign-page .hero-lead {
    max-width: 36rem;
    font-size: 0.96rem;
    line-height: 1.55;
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-trust {
    display: flex;
    margin: 28px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-trust::-webkit-scrollbar {
    display: none;
}

.hero-trust li {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-trust li:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-inline: 13px;
    border-radius: 50%;
    background: var(--gold);
    content: '';
}

.hero-scroll {
    display: none;
}

/* Limited wedding offer */
.offer-banner {
    position: absolute;
    z-index: 3;
    top: calc(var(--header-height) + 14px);
    left: 50%;
    width: min(calc(100% - 28px), 850px);
    transform: translateX(-50%);
}

.offer-banner a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid rgba(185, 154, 107, 0.72);
    background: rgba(248, 245, 239, 0.97);
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
}

.offer-banner-copy,
.offer-banner-price {
    display: grid;
}

.offer-banner-copy {
    gap: 3px;
    min-width: 0;
    padding: 14px 12px 14px 15px;
}

.offer-banner-copy small,
.offer-banner-price small {
    color: #775f3d;
    font-size: 0.57rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.offer-banner-copy strong {
    font-family: var(--serif);
    font-size: clamp(1rem, 4.6vw, 1.3rem);
    font-weight: 400;
    line-height: 1.1;
    text-wrap: balance;
}

.offer-banner-copy em {
    color: var(--muted);
    font-size: 0.67rem;
    font-style: normal;
    white-space: nowrap;
}

.offer-banner-copy del {
    color: #8a5b50;
}

.offer-banner-price {
    min-width: 112px;
    gap: 1px;
    padding: 11px 12px;
    border-left: 1px solid var(--line);
    text-align: center;
}

.offer-banner-price strong {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 6vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.offer-banner-price em {
    margin-top: 5px;
    color: #775f3d;
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Intro */
.intro-grid {
    display: grid;
    gap: 40px;
}

.intro h2 {
    max-width: 16ch;
    text-wrap: balance;
}

.rich-text {
    color: var(--muted);
    font-size: 1.03rem;
}

.rich-text p {
    margin-bottom: 1.15rem;
}

.rich-text .text-link {
    margin-top: 8px;
    color: var(--ink);
}

/* Signature gallery */
.split-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 40px;
}

.split-heading h2 {
    max-width: 11ch;
}

.split-heading > p {
    max-width: 580px;
    color: rgba(248, 245, 239, 0.68);
}

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

.gallery-item {
    position: relative;
    display: block;
    min-width: 0;
    aspect-ratio: 3 / 4;
    padding: 0;
    border: 0;
    background: #25211d;
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-item:nth-child(3n + 1) {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2, .7, .2, 1), filter 300ms ease;
}

.gallery-footer {
    padding-top: 32px;
    text-align: right;
}

/* Approach */
.approach-heading {
    margin-bottom: 44px;
}

.approach-heading h2 {
    max-width: 14ch;
}

.approach-heading > p:last-child {
    max-width: 640px;
    color: var(--muted);
}

.steps {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.steps li {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.steps li > span,
.card-number,
.experience-list article > span {
    color: #876e4c;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.15em;
}

.steps h3 {
    margin: 12px 0 10px;
}

.steps p {
    margin-bottom: 0;
    color: var(--muted);
}

/* Collections */
.section-heading.centered {
    max-width: 790px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered > p:last-child {
    color: #625a50;
}

.collection-grid {
    display: grid;
    gap: 12px;
}

.collection-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 30px 24px;
    border: 1px solid rgba(17, 16, 14, 0.18);
    background: rgba(255, 255, 255, 0.24);
}

.collection-card.featured {
    background: var(--ink);
    color: var(--paper);
}

.collection-card h3 {
    margin: 32px 0 12px;
    font-size: 2.05rem;
}

.collection-card > p {
    color: #645d54;
}

.collection-card.featured > p,
.collection-card.featured li {
    color: rgba(248, 245, 239, 0.68);
}

.collection-card ul {
    display: grid;
    gap: 7px;
    margin: 12px 0 30px;
    padding: 18px 0 0;
    border-top: 1px solid currentColor;
    color: #514b44;
    list-style: none;
}

.collection-card li::before {
    margin-right: 9px;
    color: var(--gold);
    content: '—';
}

.collection-card .text-link {
    align-self: flex-start;
    margin-top: auto;
}

.offer-section {
    position: relative;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.55), transparent 42%),
        var(--sand);
}

.offer-heading {
    max-width: 860px;
}

.offer-heading h2 {
    max-width: 14ch;
    margin-inline: auto;
}

.campaign-page .offer-heading h2 {
    font-size: clamp(2.35rem, 11vw, 4.9rem);
}

.offer-grid {
    gap: 16px;
}

.offer-card {
    position: relative;
    padding: 28px 22px;
    border-color: rgba(82, 64, 40, 0.27);
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 18px 52px rgba(49, 37, 24, 0.07);
}

.offer-card.featured {
    border-color: var(--gold);
    box-shadow: 0 24px 65px rgba(17, 16, 14, 0.18);
}

.offer-card-top {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offer-chip {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(119, 95, 61, 0.32);
    border-radius: 999px;
    background: rgba(185, 154, 107, 0.12);
    color: #725936;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.offer-card.featured .offer-chip {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.offer-card .card-number {
    color: #8b7353;
    font-size: 0.69rem;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.offer-card.featured .card-number {
    color: #dbc7a6;
}

.offer-card h3 {
    margin: 25px 0 3px;
    font-size: clamp(2.2rem, 10vw, 3.25rem);
}

.offer-duration,
.offer-card.featured > .offer-duration {
    margin-bottom: 18px;
    color: #645a4e;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.offer-card.featured > .offer-duration {
    color: rgba(248, 245, 239, 0.72);
}

.offer-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px 13px;
    margin-bottom: 22px;
    padding-bottom: 21px;
    border-bottom: 1px solid currentColor;
}

.offer-price del {
    color: #8a5b50;
    font-size: 0.86rem;
    font-weight: 700;
}

.offer-card.featured .offer-price del {
    color: #d7a9a0;
}

.offer-price strong {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 11vw, 3.35rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.92;
    white-space: nowrap;
}

.offer-card ul {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.offer-note,
.offer-card.featured > .offer-note {
    margin: 0 0 25px;
    color: #645a4e;
    font-size: 0.78rem;
    line-height: 1.55;
}

.offer-card.featured > .offer-note {
    color: rgba(248, 245, 239, 0.65);
}

.offer-card-cta {
    width: 100%;
    margin-top: auto;
    padding-inline: 17px;
}

.offer-reassurance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(82, 64, 40, 0.2);
    background: rgba(255, 253, 248, 0.55);
    color: #514739;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.offer-terms {
    max-width: 950px;
    margin: 16px auto 0;
    color: #746b60;
    font-size: 0.7rem;
    line-height: 1.55;
    text-align: center;
}

/* Privacy positioning */
.privacy-promise {
    position: relative;
    overflow: hidden;
    background: var(--paper-strong);
}

.privacy-promise::before {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(185, 154, 107, 0.2);
    border-radius: 50%;
    content: '';
}

.privacy-grid {
    position: relative;
    display: grid;
    gap: 44px;
}

.privacy-heading h2 {
    max-width: 10ch;
}

.privacy-heading > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
}

.privacy-panel {
    padding: 30px 24px;
    border: 1px solid rgba(185, 154, 107, 0.66);
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 28px 75px rgba(17, 16, 14, 0.14);
}

.privacy-panel-intro {
    margin-bottom: 22px;
    color: #dbc7a6;
    font-family: var(--serif);
    font-size: 1.18rem;
    line-height: 1.35;
}

.privacy-panel ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
}

.privacy-panel li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
}

.privacy-panel li > span {
    padding-top: 3px;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.privacy-panel li div {
    display: grid;
    gap: 3px;
}

.privacy-panel strong {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.25;
}

.privacy-panel small {
    color: rgba(248, 245, 239, 0.6);
    font-size: 0.75rem;
    line-height: 1.45;
}

/* Experience */
.experience-grid {
    display: grid;
    gap: 45px;
}

.experience-sticky h2 {
    max-width: 12ch;
}

.experience-list {
    border-top: 1px solid var(--line);
}

.experience-list article {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.experience-list h3 {
    margin: 0 0 8px;
    font-size: 1.65rem;
}

.experience-list p {
    margin-bottom: 0;
    color: var(--muted);
}

/* Statement */
.statement {
    text-align: center;
}

.statement blockquote {
    max-width: 960px;
    margin: 0 auto 28px;
    font-size: clamp(2.5rem, 9vw, 5.4rem);
    line-height: 1.02;
    text-wrap: balance;
}

.statement p {
    margin-bottom: 0;
    color: #cbb48e;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 40px;
}

.faq-heading h2 {
    max-width: 12ch;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 18px;
    align-items: center;
    padding: 23px 0;
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    width: 22px;
    height: 22px;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 10px;
    left: 3px;
    width: 16px;
    height: 1px;
    background: currentColor;
    content: '';
    transition: transform 180ms ease;
}

.faq-list summary span::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 660px;
    padding: 0 42px 25px 0;
    color: var(--muted);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 48px;
}

.contact-copy h2 {
    max-width: 10ch;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 540px;
    color: rgba(248, 245, 239, 0.7);
}

.direct-contact {
    display: grid;
    justify-items: start;
    gap: 8px;
    margin-top: 30px;
}

.direct-contact span {
    margin-bottom: 5px;
    color: #cbb48e;
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.direct-contact a {
    border-bottom: 1px solid rgba(248, 245, 239, 0.45);
    overflow-wrap: anywhere;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 20px;
    padding: 28px 22px;
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 20px;
}

.contact-form label:not(.consent) {
    display: grid;
    gap: 7px;
}

.contact-form label > span:first-child {
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid #9d958b;
    border-radius: 0;
    outline: 0;
    background: transparent;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--ink);
    box-shadow: 0 1px 0 var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #918a82;
}

.contact-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #5d574f 50%),
        linear-gradient(135deg, #5d574f 50%, transparent 50%);
    background-position: calc(100% - 14px) 52%, calc(100% - 9px) 52%;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    cursor: pointer;
}

.consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    color: #5d574f;
    font-size: 0.78rem;
    line-height: 1.5;
}

.consent input {
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    accent-color: var(--ink);
}

.consent a {
    border-bottom: 1px solid currentColor;
}

.form-submit {
    width: 100%;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
}

.form-submit[disabled] {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    min-height: 1.5em;
    margin: -5px 0 0;
    font-size: 0.84rem;
    font-weight: 650;
}

.form-status.is-success {
    color: #22633b;
}

.form-status.is-error {
    color: #a42b2b;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

/* Footer */
.site-footer {
    padding: 54px 0 calc(90px + env(safe-area-inset-bottom));
    background: #090806;
    color: rgba(248, 245, 239, 0.7);
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.site-footer strong {
    color: var(--paper);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.site-footer p {
    margin: 7px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-links a {
    border-bottom: 1px solid rgba(248, 245, 239, 0.25);
    font-size: 0.8rem;
}

.copyright {
    font-size: 0.72rem;
}

/* Mobile conversion bar */
.mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.85fr 1fr 1.2fr;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(248, 245, 239, 0.97);
    color: var(--ink);
    box-shadow: 0 -10px 35px rgba(17, 16, 14, 0.12);
    backdrop-filter: blur(16px);
}

.mobile-contact-bar a {
    display: flex;
    min-height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 2px;
    font-size: 0.63rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mobile-contact-bar a span {
    font-size: 1rem;
}

.mobile-contact-bar a.primary {
    background: var(--ink);
    color: var(--white);
}

/* Accessible lightbox */
.lightbox {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 58px 16px 20px;
    border: 0;
    background: rgba(5, 5, 4, 0.96);
    color: var(--white);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.92);
}

.lightbox[open] {
    display: grid;
    place-items: center;
}

.lightbox img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100dvh - 86px);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    z-index: 2;
    top: 10px;
    right: 12px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

/* Content pages */
.legal-page {
    min-height: 100vh;
    padding: calc(var(--header-height) + 70px) 0 100px;
}

.legal-page .shell {
    max-width: 850px;
}

.legal-page h1 {
    max-width: 13ch;
    margin-bottom: 34px;
    color: var(--ink);
}

.legal-page h2 {
    margin-top: 45px;
    font-size: 2rem;
}

.legal-page h3 {
    margin-top: 32px;
    font-size: 1.35rem;
}

.legal-page p,
.legal-page li {
    color: var(--muted);
}

.legal-page a {
    border-bottom: 1px solid currentColor;
}

.simple-header {
    border-bottom-color: var(--line);
    background: var(--paper);
    color: var(--ink);
}

.error-page {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 90px 20px;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
}

.error-page h1 {
    margin-bottom: 16px;
    font-size: clamp(5rem, 30vw, 12rem);
}

.error-page p {
    max-width: 480px;
    color: rgba(248, 245, 239, 0.7);
}

.error-page h2 {
    margin-bottom: 16px;
    color: var(--paper);
}

.error-page .button {
    margin-top: 26px;
}

.utility-page {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 24px;
    background: var(--paper);
}

.utility-card {
    width: min(100%, 680px);
    padding: clamp(34px, 8vw, 72px);
    border: 1px solid var(--line);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
}

.utility-card h1 {
    margin-bottom: 22px;
    color: var(--ink);
}

.utility-card p:not(.eyebrow) {
    color: var(--muted);
}

.utility-card .button {
    margin-top: 24px;
}

@media (hover: hover) {
    .button:hover {
        border-color: var(--gold);
        background: var(--gold);
        color: var(--ink);
    }

    .button-light:hover {
        border-color: var(--gold);
        background: var(--gold);
    }

    .text-link:hover span {
        transform: translateX(4px);
    }

    .desktop-nav a:hover,
    .footer-links a:hover,
    .direct-contact a:hover {
        color: var(--gold);
    }

    .gallery-item:hover img {
        filter: brightness(1.07);
        transform: scale(1.025);
    }
}

@media (max-width: 699px) {
    .campaign-page .hero-trust {
        flex-wrap: wrap;
        gap: 8px 0;
        overflow: visible;
    }

    .campaign-page .hero-trust li {
        font-size: 0.61rem;
    }

    .campaign-page .hero-trust li:not(:last-child)::after {
        margin-inline: 10px;
    }

    .privacy-promise {
        padding-block: 78px;
    }

    .privacy-heading h2 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }
}

@media (min-width: 700px) {
    :root {
        --header-height: 82px;
    }

    .shell {
        width: min(100% - 72px, 1240px);
    }

    .section {
        padding-block: 120px;
    }

    .hero-content {
        padding-block: clamp(540px, 65svh, 680px) 95px;
    }

    .campaign-page .hero-content {
        padding-top: clamp(480px, 60svh, 620px);
    }

    .offer-banner-copy {
        padding: 16px 20px;
    }

    .offer-banner-price {
        min-width: 180px;
        padding: 13px 22px;
    }

    .offer-banner-copy strong {
        font-size: 1.35rem;
        white-space: nowrap;
    }

    .offer-banner-copy em {
        font-size: 0.72rem;
    }

    .offer-reassurance {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 22px 25px;
        text-align: center;
    }

    .privacy-panel {
        padding: 38px 34px;
    }

    .hero-trust {
        width: fit-content;
        min-width: 580px;
    }

    .intro-grid,
    .split-heading,
    .experience-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 70px;
    }

    .rich-text {
        padding-top: 35px;
    }

    .split-heading {
        align-items: end;
    }

    .gallery {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: 210px;
        gap: 10px;
        padding-inline: 10px;
    }

    .gallery-item {
        grid-row: auto !important;
        aspect-ratio: auto;
    }

    .gallery-item-1 { grid-column: span 5; grid-row: span 3 !important; }
    .gallery-item-2 { grid-column: span 3; grid-row: span 2 !important; }
    .gallery-item-3 { grid-column: span 4; grid-row: span 3 !important; }
    .gallery-item-4 { grid-column: 6 / span 3; grid-row: 3 / span 3 !important; }
    .gallery-item-5 { grid-column: 1 / span 5; grid-row: 4 / span 3 !important; }
    .gallery-item-6 { grid-column: 9 / span 4; grid-row: 4 / span 3 !important; }
    .gallery-item-7 { grid-column: 1 / span 3; grid-row: 7 / span 3 !important; }
    .gallery-item-8 { grid-column: 4 / span 3; grid-row: 7 / span 3 !important; }
    .gallery-item-9 { grid-column: 7 / span 3; grid-row: 7 / span 3 !important; }
    .gallery-item-10 { grid-column: 10 / span 3; grid-row: 7 / span 3 !important; }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-bottom: 1px solid var(--line);
    }

    .steps li {
        padding: 32px 28px 32px 0;
        border-bottom: 0;
    }

    .steps li:not(:first-child) {
        padding-left: 28px;
        border-left: 1px solid var(--line);
    }

    .collection-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .collection-card {
        padding: 36px 28px;
    }

    .collection-card.featured {
        transform: translateY(-14px);
    }

    .experience-sticky {
        align-self: start;
        position: sticky;
        top: calc(var(--header-height) + 36px);
    }

    .faq-heading {
        align-self: start;
        position: sticky;
        top: calc(var(--header-height) + 36px);
    }

    .contact-form {
        padding: 42px 38px;
    }

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

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
        align-items: end;
    }

    .copyright {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding-bottom: 60px;
    }

    .mobile-contact-bar {
        display: none;
    }
}

@media (min-width: 1020px) {
    .header-inner {
        width: min(100% - 64px, 1320px);
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand strong {
        font-size: 1.1rem;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: clamp(18px, 2.1vw, 34px);
    }

    .desktop-nav a {
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 180ms ease;
    }

    .header-cta,
    .language-switcher {
        display: block;
    }

    .menu-toggle,
    .mobile-menu {
        display: none !important;
    }

    .language-switcher {
        position: relative;
    }

    .language-switcher summary {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid currentColor;
        border-radius: 50%;
        font-size: 0.66rem;
        font-weight: 750;
        cursor: pointer;
        list-style: none;
    }

    .language-switcher summary::-webkit-details-marker {
        display: none;
    }

    .language-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: grid;
        min-width: 68px;
        padding: 7px;
        border: 1px solid var(--line);
        background: var(--paper-strong);
        color: var(--ink);
        box-shadow: var(--shadow);
    }

    .language-menu a {
        padding: 8px 10px;
        font-size: 0.7rem;
        font-weight: 750;
        text-align: center;
    }

    .language-menu a[aria-current='page'] {
        background: var(--ink);
        color: var(--white);
    }

    .hero-content {
        padding-block: calc(var(--header-height) + 76px) 76px;
    }

    .campaign-page .hero-content {
        padding-top: calc(var(--header-height) + 160px);
    }

    .offer-banner {
        right: auto;
        left: max(32px, calc((100vw - 1240px) / 2));
        width: min(47vw, 610px);
        transform: none;
    }

    .privacy-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        align-items: center;
        gap: clamp(70px, 8vw, 130px);
    }

    .privacy-heading {
        padding-left: 24px;
    }

    .hero-image {
        inset: 0 clamp(24px, 4vw, 72px) 0 auto;
        width: min(54vw, 760px);
        height: 100%;
        background: transparent;
        object-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, var(--ink) 0%, rgba(17, 16, 14, 0.98) 30%, rgba(17, 16, 14, 0.72) 48%, rgba(17, 16, 14, 0.08) 72%),
            linear-gradient(180deg, rgba(7, 6, 5, 0.2), transparent 42%, rgba(7, 6, 5, 0.66));
    }

    .hero-content > .eyebrow,
    .hero-content > h1,
    .hero-content > .hero-lead,
    .hero-content > .button-row,
    .hero-content > .hero-trust {
        max-width: min(47vw, 610px);
    }

    .hero h1 {
        font-size: clamp(4rem, 5.6vw, 6.15rem);
        max-width: 10.5ch;
    }

    .campaign-page .hero h1 {
        font-size: clamp(3.45rem, 4.7vw, 5.35rem);
        max-width: 12.5ch;
    }

    .hero-lead {
        font-size: 1.08rem;
    }

    .hero-trust {
        min-width: 0;
    }

    .hero-scroll {
        position: absolute;
        right: 38px;
        bottom: 42px;
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 50%;
    }

    .hero-scroll span {
        width: 1px;
        height: 15px;
        background: var(--white);
        animation: scroll-hint 1.8s ease-in-out infinite;
    }

    .approach-heading {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 50px;
        align-items: end;
    }

    .approach-heading .eyebrow {
        grid-column: 1 / -1;
        margin-bottom: -25px;
    }

    .approach-heading h2 {
        margin-bottom: 0;
    }

    .contact-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 90px;
        align-items: start;
    }
}

@media (min-width: 1380px) {
    .gallery {
        width: min(100% - 40px, 1480px);
        margin-inline: auto;
        padding-inline: 0;
    }
}

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

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

@keyframes scroll-hint {
    0%, 100% { transform: translateY(-4px); opacity: 0.45; }
    50% { transform: translateY(4px); opacity: 1; }
}
