@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap");

:root {
    --color-ivory: #f4eee5;
    --color-paper: #fbf6ef;
    --color-white: #ffffff;
    --color-ink: #332f26;
    --color-muted: #777064;
    --color-title: #999189;
    --color-olive: #74785f;
    --color-olive-dark: #565a43;
    --color-stone: #d9cec1;
    --color-line: rgba(51, 47, 38, 0.15);
    --color-terracotta: #9a715b;
    --color-gold: #a88d55;
    --shadow-soft: 0 28px 80px rgba(52, 50, 40, 0.13);
    --font-serif: "Cormorant Garamond", "Bodoni 72", "Didot", "Iowan Old Style", Georgia, serif;
    --font-sans: "Jost", "Avenir Next", "Segoe UI", Arial, sans-serif;
    --container: min(1180px, calc(100vw - 48px));
    --header-height: 86px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: clip;
    color: var(--color-ink);
    background: var(--color-paper);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-leaving {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

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

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

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 0.98;
}

h1 {
    font-size: 6.8rem;
    letter-spacing: 0;
}

h2 {
    font-size: 4.55rem;
}

h3 {
    font-size: 2.3rem;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1000;
    transform: translateY(-180%);
    padding: 10px 14px;
    background: var(--color-ink);
    color: var(--color-white);
}

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(251, 246, 239, 0.9);
    border-bottom: 1px solid rgba(52, 50, 40, 0.08);
    backdrop-filter: blur(20px);
    transition: transform 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 250, 242, 0.95);
    box-shadow: 0 16px 48px rgba(52, 50, 40, 0.08);
}

.site-header__inner {
    width: var(--container);
    min-height: var(--header-height);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

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

.brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.brand__title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.18rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.brand__subtitle {
    display: block;
    margin-top: 4px;
    font-size: 0.58rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-muted);
}

.primary-nav {
    justify-self: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 42px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-ink);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms ease;
}

.menu a:hover::after,
.current-menu-item > a::after,
.current_page_item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
    min-width: 112px;
    padding: 13px 18px;
    border: 1px solid var(--color-line);
    color: var(--color-ink);
    text-align: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.header-cta:hover {
    background: var(--color-gold);
    border-color: var(--color-olive);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-line);
    background: transparent;
    color: var(--color-ink);
    padding: 0;
    place-items: center;
    cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    margin: 4px auto;
    transition: transform 240ms ease, opacity 240ms ease;
}

.site-main {
    min-height: 70vh;
    overflow-x: clip;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    color: var(--color-white);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero--interior {
    min-height: 68svh;
    margin-top: 0;
}

.hero--venues {
    min-height: 62svh;
    color: var(--color-ink);
}

.hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 21, 18, 0.7), rgba(20, 21, 18, 0.32) 52%, rgba(20, 21, 18, 0.04)),
        linear-gradient(180deg, rgba(20, 21, 18, 0.22), rgba(20, 21, 18, 0.1) 42%, rgba(20, 21, 18, 0.2));
}

.hero__shade--light {
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.58), rgba(255, 250, 242, 0.2) 45%, rgba(255, 250, 242, 0.68));
}

.hero__content {
    position: relative;
    z-index: 1;
    width: var(--container);
    align-self: end;
    margin: 0 auto;
    padding: calc(var(--header-height) + 80px) 0 78px;
    max-width: 680px;
    justify-self: start;
}

.hero__content--center {
    justify-self: center;
    align-self: center;
    text-align: center;
    padding-bottom: 0;
}

.hero__content p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 24px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--color-terracotta);
    font-size: 0.68rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

.hero .eyebrow,
.footer-cta .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border: 1px solid var(--color-olive);
    background: var(--color-olive);
    color: var(--color-white);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    overflow: hidden;
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.button::after {
    content: "->";
    margin-left: 20px;
    transition: transform 260ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--color-olive-dark);
    border-color: var(--color-olive-dark);
}

.button:hover::after {
    transform: translateX(5px);
}

.button--light {
    background: rgba(255, 250, 242, 0.9);
    border-color: rgba(255, 250, 242, 0.9);
    color: var(--color-ink);
}

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

.button--outline {
    background: transparent;
    color: var(--color-ink);
    border-color: var(--color-line);
}

.button--outline:hover {
    background: var(--color-olive);
    color: var(--color-white);
    border-color: var(--color-olive);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
    color: var(--color-terracotta);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.text-link::after {
    content: "->";
    transition: transform 260ms ease;
}

.text-link:hover::after {
    transform: translateX(5px);
}

.section {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(76px, 9vw, 132px) 0;
}

.section__heading {
    max-width: 820px;
    margin-bottom: 44px;
}

.section__heading h2 {
    font-size: 4.55rem;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--color-line);
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.service-card img {
    width: 100%;
    aspect-ratio: 1.8 / 1;
    object-fit: cover;
}

.service-card div {
    padding: 28px;
}

.service-card span,
.service-row span,
.philosophy-grid span,
.process-steps span,
.sensory-grid span {
    display: block;
    margin-bottom: 18px;
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card p {
    margin-top: 16px;
    color: var(--color-muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(38px, 7vw, 86px);
    align-items: center;
}

.split-section__media img {
    width: 100%;
    aspect-ratio: 0.92 / 1;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.split-section__content {
    max-width: 560px;
}

.split-section__content p:not(.eyebrow) {
    margin-top: 24px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

.venue-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.venue-card__image {
    display: block;
    overflow: hidden;
}

.venue-card__image img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    transition: transform 700ms ease;
}

.venue-card:hover .venue-card__image img {
    transform: scale(1.05);
}

.venue-card__body {
    position: relative;
    padding: 26px 28px 30px;
}

.venue-card__body .eyebrow {
    margin-bottom: 10px;
}

.venue-card__body h3 {
    font-size: 2.2rem;
}

.venue-card__body p:not(.eyebrow) {
    margin-top: 14px;
    color: var(--color-muted);
}

.venue-card__arrow {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: var(--color-terracotta);
    transition: transform 260ms ease;
}

.venue-card:hover .venue-card__arrow {
    transform: translateX(6px);
}

.centered-action {
    margin-top: 42px;
    text-align: center;
}

.italy-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--color-olive);
    color: var(--color-white);
}

.italy-band img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.italy-band div {
    padding: clamp(42px, 6vw, 84px);
}

.italy-band h2 {
    font-size: 4.55rem;
}

.italy-band .text-link,
.italy-band .eyebrow {
    color: rgba(255, 255, 255, 0.84);
}

.page-hero {
    width: var(--container);
    margin: 0 auto;
    padding: calc(var(--header-height) + 72px) 0 64px;
}

.page-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(44px, 7vw, 94px);
    align-items: center;
    min-height: 92svh;
}

.page-hero__image img {
    width: 100%;
    aspect-ratio: 0.95 / 1;
    object-fit: cover;
}

.page-hero__content {
    max-width: 680px;
}

.page-hero__content p:not(.eyebrow),
.page-hero__center p:not(.eyebrow) {
    margin-top: 24px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.page-hero__center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.signature {
    display: inline-block;
    margin-top: 34px;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--color-terracotta);
}

.philosophy-grid,
.sensory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.philosophy-grid article,
.sensory-grid article {
    min-height: 260px;
    padding: 36px;
    border-right: 1px solid var(--color-line);
}

.philosophy-grid article:last-child,
.sensory-grid article:last-child {
    border-right: 0;
}

.philosophy-grid h2,
.sensory-grid h2 {
    font-size: 2.4rem;
}

.philosophy-grid p,
.sensory-grid p {
    margin-top: 18px;
    color: var(--color-muted);
}

.process-section {
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-steps article {
    padding: 36px 24px;
    border-top: 1px solid var(--color-line);
}

.process-steps h3 {
    font-size: 2rem;
}

.process-steps p {
    margin-top: 14px;
    color: var(--color-muted);
}

.quote-band {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 72px 24px;
    background:
        linear-gradient(rgba(52, 50, 40, 0.24), rgba(52, 50, 40, 0.24)),
        image-set(url("../images/venues-hero.webp") type("image/webp"), url("../images/venues-hero.jpg") type("image/jpeg")) center / cover;
    color: var(--color-white);
    text-align: center;
}

.quote-band p {
    max-width: 900px;
    font-family: var(--font-serif);
    font-size: 5.4rem;
    line-height: 1;
}

.page-hero--services {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.image-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: calc(var(--header-height) * -1);
}

.image-ribbon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 54px;
}

.service-row {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 28px;
    align-items: start;
}

.service-row img {
    width: 148px;
    aspect-ratio: 0.75 / 1;
    object-fit: cover;
}

.service-row h2 {
    font-size: 2.6rem;
}

.service-row p {
    margin-top: 14px;
    color: var(--color-muted);
}

.process-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr) auto;
    gap: 32px;
    align-items: center;
    border-top: 1px solid var(--color-line);
}

.process-steps--compact {
    grid-template-columns: repeat(4, 1fr);
}

.process-steps--compact article {
    padding: 24px 16px;
}

.italy-guide {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(42px, 6vw, 84px);
}

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

.italy-guide__intro p:not(.eyebrow) {
    margin-top: 24px;
    color: var(--color-muted);
}

.region-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.region-map article {
    min-height: 170px;
    padding: 28px;
    border: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.54);
    transition: transform 280ms ease, background 280ms ease;
}

.region-map article:hover {
    transform: translateY(-5px);
    background: var(--color-white);
}

.region-map h3 {
    font-size: 2rem;
}

.region-map p {
    margin-top: 14px;
    color: var(--color-muted);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 52px;
}

.filter-bar span {
    margin-right: 8px;
    color: var(--color-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.filter-bar a {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.48);
    color: var(--color-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.filter-bar a:hover,
.filter-bar a.is-active {
    background: var(--color-olive);
    border-color: var(--color-olive);
    color: var(--color-white);
}

.archive-intro {
    max-width: 760px;
    margin-bottom: 38px;
}

.archive-intro h2 {
    font-size: 4.4rem;
}

.venue-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    min-height: 88svh;
    padding-top: var(--header-height);
    background: var(--color-paper);
}

.venue-hero__image img,
.venue-hero__image video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    background: var(--color-night);
}

.venue-hero__content {
    align-self: center;
    padding: clamp(42px, 6vw, 88px);
}

.venue-hero__content p:not(.eyebrow) {
    max-width: 600px;
    margin-top: 22px;
    color: var(--color-muted);
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
}

.fact-grid div {
    min-height: 94px;
    padding: 22px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.fact-grid span {
    display: block;
    color: var(--color-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.fact-grid strong {
    display: block;
    margin-top: 8px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-thumb {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    transition: transform 520ms ease, filter 320ms ease;
}

.gallery-thumb:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.venue-story {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.venue-story > div {
    padding-right: 36px;
    border-right: 1px solid var(--color-line);
}

.venue-story > div:last-child {
    border-right: 0;
}

.venue-story h2 {
    font-size: 2.55rem;
}

.venue-story p,
.content-flow {
    color: var(--color-muted);
}

.content-flow > * + * {
    margin-top: 1.1em;
}

.content-flow h2,
.content-flow h3 {
    color: var(--color-ink);
}

.content-flow a {
    color: var(--color-terracotta);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.journal-layout {
    padding-top: 30px;
}

.featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    align-items: stretch;
    border: 1px solid var(--color-line);
    background: var(--color-white);
}

.featured-post__image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.featured-post__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 72px);
}

.featured-post__content h2 {
    font-size: 4.55rem;
}

.featured-post__date,
.post-card__date,
.single-post-hero__date {
    display: block;
    margin-top: 18px;
    color: var(--color-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.journal-access-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(166, 101, 72, 0.22);
    background: rgba(166, 101, 72, 0.08);
    color: var(--color-terracotta) !important;
    font-size: 0.66rem !important;
    line-height: 1;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
}

.single-post-hero .journal-access-badge {
    margin-left: auto;
    margin-right: auto;
}

.featured-post__content p:not(.eyebrow) {
    margin-top: 24px;
    color: var(--color-muted);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 34px;
}

.post-card {
    background: var(--color-white);
    border: 1px solid var(--color-line);
}

.post-card img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
}

.post-card div {
    padding: 24px;
}

.post-card h2 {
    font-size: 2.15rem;
}

.single-post-layout {
    width: min(980px, calc(100vw - 48px));
    margin: 0 auto;
    padding: calc(var(--header-height) + 76px) 0 110px;
}

.single-post-hero {
    text-align: center;
}

.single-post-hero h1 {
    font-size: 6.8rem;
    line-height: 0.95;
}

.single-post-hero__date {
    margin-top: clamp(18px, 2vw, 30px);
}

.single-post-image {
    margin-top: 48px;
}

.single-post-image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.single-post-content {
    width: min(760px, 100%);
    margin: 54px auto 0;
    font-size: 1.08rem;
}

.comments-area {
    width: min(760px, 100%);
    margin: 64px auto 0;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid var(--color-line);
    background: rgba(255, 250, 241, 0.66);
}

.comments-area__header {
    margin-bottom: 26px;
    text-align: center;
}

.comments-area__header h2,
.comment-reply-title {
    font-size: clamp(2.35rem, 4vw, 3.4rem);
}

.comments-area__header p:not(.eyebrow) {
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--color-muted);
}

.comment-list {
    display: grid;
    gap: 18px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.comment-list .children {
    display: grid;
    gap: 16px;
    margin: 18px 0 0;
    padding-left: clamp(18px, 4vw, 34px);
    list-style: none;
}

.comment-body {
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    overflow-wrap: break-word;
}

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

.comment-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-ink);
    font-weight: 500;
}

.comment-author .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.comment-metadata a,
.comment-awaiting-moderation,
.comments-area__closed,
.comments-area__empty,
.comment-notes,
.logged-in-as {
    color: var(--color-muted);
}

.comments-area__empty {
    padding: 18px 20px;
    border: 1px solid var(--color-line);
    background: rgba(243, 238, 230, 0.58);
    text-align: center;
}

.comment-content p + p {
    margin-top: 1em;
}

.reply {
    margin-top: 18px;
}

.comment-reply-link {
    color: var(--color-terracotta);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.comment-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--color-line);
}

.comment-form p {
    display: grid;
    gap: 9px;
}

.comment-form label {
    color: var(--color-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: rgba(243, 238, 230, 0.86);
    color: var(--color-ink);
    padding: 15px 16px;
    font-size: 1rem;
    outline: 0;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--color-olive-dark);
    box-shadow: 0 0 0 4px rgba(35, 54, 44, 0.12);
}

.comment-form-cookies-consent {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.comment-form-cookies-consent label {
    font-size: 0.9rem;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.comment-notes,
.logged-in-as {
    margin-top: -4px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.form-submit .submit {
    min-height: 48px;
    width: max-content;
    border: 1px solid rgba(196, 213, 200, 0.22);
    border-radius: 999px;
    background: var(--color-olive);
    color: var(--color-ink);
    cursor: pointer;
    padding: 0 24px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.comments-subscriber-gate {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid rgba(13, 21, 18, 0.12);
    background: rgba(255, 250, 241, 0.78);
    text-align: center;
}

.comments-subscriber-gate h3 {
    max-width: 620px;
    margin: 0 auto;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.comments-subscriber-gate > p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-muted);
}

.comments-subscribe-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    width: min(100%, 620px);
    margin: 4px auto 0;
}

.comments-subscribe-form label {
    display: grid;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-align: left;
    text-transform: uppercase;
}

.comments-subscribe-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-ink);
    padding: 0 15px;
    font-size: 1rem;
    letter-spacing: 0;
    outline: 0;
    text-transform: none;
}

.comments-subscribe-form input:focus {
    border-color: var(--color-olive-dark);
    box-shadow: 0 0 0 4px rgba(35, 54, 44, 0.12);
}

.comments-subscribe-form .button {
    min-height: 48px;
    white-space: nowrap;
}

.comments-subscriber-gate .journal-access-request {
    width: min(100%, 620px);
    margin: 2px auto 0;
    border-color: var(--color-line);
    background: rgba(243, 238, 230, 0.82);
    color: var(--color-ink);
    text-align: left;
}

.comments-subscriber-gate .journal-access-request__title {
    color: var(--color-muted);
}

.comments-subscriber-gate .journal-access-request__notice {
    color: var(--color-muted);
}

.comments-subscriber-gate .journal-access-request__notice--error {
    color: var(--color-terracotta);
}

.comments-subscriber-gate .journal-access-request label {
    color: var(--color-muted);
}

.comments-subscriber-gate .journal-access-request input {
    border-color: var(--color-line);
    background: var(--color-white);
    color: var(--color-ink);
}

.comments-subscriber-gate .journal-access-request button {
    border-color: var(--color-olive-dark);
    background: var(--color-olive-dark);
    color: var(--color-white);
    white-space: nowrap;
}

.subscriber-exclusive-gate {
    width: min(760px, 100%);
    margin: 54px auto 0;
    padding: clamp(32px, 6vw, 64px);
    border: 1px solid rgba(13, 21, 18, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(244, 236, 224, 0.9)),
        image-set(url("../images/floral-detail.webp") type("image/webp"), url("../images/floral-detail.jpg") type("image/jpeg")) center / cover;
    box-shadow: 0 22px 70px rgba(13, 21, 18, 0.08);
    text-align: center;
}

.subscriber-exclusive-gate h2 {
    max-width: 680px;
    margin: 10px auto 0;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.subscriber-exclusive-gate p:not(.eyebrow) {
    max-width: 590px;
    margin: 22px auto 0;
    color: var(--color-muted);
}

.subscriber-exclusive-gate__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 620px;
    margin: 30px auto 0;
    text-align: left;
}

.subscriber-exclusive-gate__form label {
    display: grid;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.subscriber-exclusive-gate__form input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(13, 21, 18, 0.16);
    background: rgba(255, 250, 241, 0.94);
    color: var(--color-night);
    padding: 0 16px;
    font-size: 1rem;
    letter-spacing: 0;
    outline: 0;
    text-transform: none;
}

.subscriber-exclusive-gate__form input:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 4px rgba(166, 101, 72, 0.12);
}

.subscriber-exclusive-gate__form .button {
    align-self: end;
    min-height: 54px;
}

.subscriber-exclusive-gate .text-link {
    display: inline-flex;
    margin-top: 24px;
}

.journal-subscribe {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    width: min(1280px, calc(100vw - 64px));
    margin: 0 auto 88px;
    padding: clamp(34px, 5vw, 72px);
    border: 1px solid rgba(255, 250, 241, 0.18);
    background:
        linear-gradient(135deg, rgba(13, 21, 18, 0.9), rgba(24, 36, 30, 0.88)),
        image-set(url("../images/floral-detail.webp") type("image/webp"), url("../images/floral-detail.jpg") type("image/jpeg")) center / cover;
    color: var(--color-white);
    overflow: hidden;
}

.subscription-page .journal-subscribe {
    margin-top: calc(var(--header-height) + 48px);
}

.journal-subscribe__copy h2 {
    max-width: 600px;
    color: var(--color-white);
    font-size: clamp(2.9rem, 4vw, 5rem);
    line-height: 0.98;
}

.journal-subscribe__copy p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 24px;
    color: rgba(255, 250, 241, 0.72);
    font-size: 1.08rem;
}

.journal-subscribe__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 250, 241, 0.18);
    background: rgba(255, 250, 241, 0.08);
    backdrop-filter: blur(16px);
}

.journal-subscribe__form label {
    display: grid;
    gap: 9px;
    color: rgba(255, 250, 241, 0.7);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.journal-subscribe__form input,
.journal-subscribe__form select {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(255, 250, 241, 0.2);
    border-radius: 0;
    background: rgba(255, 250, 241, 0.9);
    color: var(--color-night);
    padding: 0 15px;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
    outline: 0;
}

.journal-subscribe__form select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--color-night) 50%),
        linear-gradient(135deg, var(--color-night) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.journal-subscribe__form option {
    color: var(--color-night);
}

.journal-subscribe__form input:focus,
.journal-subscribe__form select:focus {
    border-color: var(--color-mist);
    box-shadow: 0 0 0 4px rgba(196, 213, 200, 0.16);
}

.journal-subscribe__wide,
.journal-subscribe__notice,
.journal-subscribe__form .button {
    grid-column: 1 / -1;
}

.journal-subscribe__consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    text-transform: none;
    letter-spacing: 0;
}

.journal-subscribe__consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.journal-subscribe__consent span {
    color: rgba(255, 250, 241, 0.74);
    font-size: 0.92rem;
    line-height: 1.6;
}

.journal-subscribe__honeypot {
    position: absolute;
    left: -9999px;
}

.journal-subscribe__notice {
    margin: 0;
    padding: 14px 16px;
    background: rgba(196, 213, 200, 0.14);
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.journal-subscribe__notice--error {
    background: rgba(166, 101, 72, 0.22);
}

.journal-subscribe .journal-access-request {
    grid-column: 2;
}

.journal-access-request {
    padding: 20px 22px;
    border: 1px solid rgba(255, 250, 241, 0.16);
    background: rgba(13, 21, 18, 0.32);
    color: var(--color-white);
}

.journal-access-request__title,
.journal-access-request__notice {
    margin: 0;
}

.journal-access-request__title {
    color: rgba(255, 250, 241, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.journal-access-request__notice {
    margin-bottom: 12px;
    color: var(--color-mist);
    font-size: 0.9rem;
    line-height: 1.5;
}

.journal-access-request__notice--error {
    color: #f0c1ad;
}

.journal-access-request form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 14px;
}

.journal-access-request label {
    display: grid;
    gap: 7px;
    color: rgba(255, 250, 241, 0.68);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.journal-access-request input {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(255, 250, 241, 0.2);
    background: rgba(255, 250, 241, 0.92);
    color: var(--color-night);
    padding: 0 13px;
    font-size: 0.94rem;
    letter-spacing: 0;
    outline: 0;
    text-transform: none;
}

.journal-access-request button {
    align-self: end;
    min-height: 46px;
    border: 1px solid var(--color-mist);
    background: var(--color-mist);
    color: var(--color-night);
    cursor: pointer;
    padding: 0 18px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.subscriber-exclusive-gate .journal-access-request {
    max-width: 620px;
    margin: 18px auto 0;
    background: rgba(13, 21, 18, 0.9);
    text-align: left;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
    gap: 44px;
    align-items: start;
    padding-top: 32px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: clamp(28px, 5vw, 54px);
    background: var(--color-white);
    border: 1px solid var(--color-line);
}

.contact-form label {
    display: grid;
    gap: 9px;
    color: var(--color-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-form__wide,
.contact-form__phone,
.contact-form .button,
.form-message {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    background: var(--color-paper);
    color: var(--color-ink);
    padding: 15px 16px;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    outline: 0;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form__phone {
    display: grid;
    grid-template-columns: minmax(138px, 0.32fr) minmax(0, 1fr);
    gap: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-olive);
    box-shadow: 0 0 0 4px rgba(88, 99, 59, 0.12);
}

.form-message {
    padding: 14px 16px;
    text-transform: none;
    letter-spacing: 0;
}

.form-message--success {
    background: rgba(88, 99, 59, 0.12);
    color: var(--color-olive-dark);
}

.form-message--error {
    background: rgba(166, 101, 72, 0.12);
    color: var(--color-terracotta);
}

.contact-card {
    background: var(--color-olive);
    color: var(--color-white);
}

.contact-card img {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
}

.contact-card h2,
.contact-card p,
.contact-card a {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
}

.contact-card h2 {
    padding-top: 30px;
    font-size: 2.5rem;
}

.contact-card p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-card a {
    padding-top: 20px;
    padding-bottom: 30px;
    color: var(--color-white);
}

.default-page {
    width: min(900px, calc(100vw - 48px));
    margin: 0 auto;
}

.page-hero--simple {
    text-align: center;
}

.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 46px;
}

.page-numbers {
    display: grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--color-line);
    color: var(--color-muted);
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--color-olive);
    border-color: var(--color-olive);
    color: var(--color-white);
}

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

.footer-cta {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(76px, 9vw, 132px) 0;
    text-align: center;
}

.footer-cta h2 {
    max-width: 880px;
    margin: 0 auto;
}

.footer-cta p:not(.eyebrow) {
    max-width: 620px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.74);
}

.footer-cta .button {
    margin-top: 34px;
}

.site-footer__inner {
    width: var(--container);
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
    width: min(260px, 100%);
    height: auto;
    margin-bottom: 16px;
    mix-blend-mode: screen;
    opacity: 0.86;
}

.footer-brand span,
.footer-contact a,
.footer-contact p,
.site-footer__bottom {
    color: rgba(255, 255, 255, 0.68);
}

.footer-nav .menu {
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav .menu a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 8px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin: 10px 0;
}

.site-footer__bottom {
    width: var(--container);
    margin: 0 auto;
    padding: 18px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.84rem;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(20, 19, 16, 0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox img {
    max-height: min(82vh, 900px);
    width: auto;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.5rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    :root {
        --container: min(100vw - 36px, 980px);
    }

    .site-header__inner {
        grid-template-columns: auto auto auto;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: block;
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        background: rgba(255, 250, 242, 0.98);
        border-bottom: 1px solid var(--color-line);
        transition: opacity 260ms ease, transform 260ms ease;
    }

    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav .menu {
        width: var(--container);
        margin: 0 auto;
        padding: 22px 0 28px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 20px;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
        grid-column: 3;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(5px) rotate(42deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-5px) rotate(-42deg);
    }

    .header-cta {
        display: none;
    }

    .service-strip,
    .venue-grid,
    .post-grid,
    .venue-story {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid,
    .sensory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid article:nth-child(2n),
    .sensory-grid article:nth-child(2n) {
        border-right: 0;
    }

    .process-cta,
    .venue-hero,
    .featured-post,
    .contact-layout,
    .italy-guide {
        grid-template-columns: 1fr;
    }

    .venue-hero__image img,
    .venue-hero__image video {
        min-height: 420px;
        max-height: 70vh;
    }

    .venue-story > div {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
        padding-bottom: 30px;
    }

    .region-map {
        grid-template-columns: repeat(2, 1fr);
    }

    .italy-guide__intro {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 74px;
        --container: min(100vw - 28px, 720px);
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .site-header__inner {
        gap: 12px;
    }

    .brand {
        min-width: 0;
        gap: 9px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .brand__title {
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }

    .brand__subtitle {
        font-size: 0.5rem;
        letter-spacing: 0.16em;
    }

    .primary-nav .menu {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 86svh;
    }

    .hero__content {
        padding-bottom: 44px;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .service-strip,
    .venue-grid,
    .post-grid,
    .philosophy-grid,
    .sensory-grid,
    .process-steps,
    .service-list,
    .region-map,
    .fact-grid,
    .contact-form,
    .venue-story {
        grid-template-columns: 1fr;
    }

    .split-section,
    .page-hero--split,
    .italy-band {
        grid-template-columns: 1fr;
    }

    .italy-band img {
        height: 360px;
    }

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

    .image-ribbon {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-ribbon img {
        height: 160px;
    }

    .service-row {
        grid-template-columns: 96px 1fr;
        gap: 18px;
    }

    .service-row img {
        width: 96px;
    }

    .service-row h2 {
        font-size: 2rem;
    }

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

    .featured-post__image img {
        min-height: 280px;
    }

    .site-footer__inner,
    .site-footer__bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-nav .menu {
        justify-content: start;
    }

    .footer-contact {
        justify-items: start;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .philosophy-grid article,
    .sensory-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .contact-form__wide,
    .contact-form .button,
    .form-message {
        grid-column: auto;
    }
}

/* Cinematic redesign inspired by refined travel and hospitality sites. */
:root {
    --color-paper: #f3eee6;
    --color-ivory: #fffaf1;
    --color-white: #ffffff;
    --color-ink: #111713;
    --color-muted: #746f66;
    --color-title: #999189;
    --color-olive: #c4d5c8;
    --color-olive-dark: #23362c;
    --color-stone: #d8c8b8;
    --color-line: rgba(17, 23, 19, 0.14);
    --color-terracotta: #9e6f5b;
    --color-gold: #b69a63;
    --color-night: #0d1512;
    --color-night-soft: #17211c;
    --color-mist: #dce7db;
    --color-blush: #d9b5a1;
    --shadow-soft: 0 34px 100px rgba(13, 21, 18, 0.18);
    --shadow-deep: 0 30px 100px rgba(0, 0, 0, 0.34);
    --container: min(1180px, calc(100vw - 64px));
    --header-height: 88px;
}

html {
    background: var(--color-night);
}

body {
    color: var(--color-ink);
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.06), transparent 520px),
        var(--color-paper);
    font-size: 16px;
    line-height: 1.72;
}

body.nav-is-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    letter-spacing: 0;
}

h1 {
    font-size: 6.8rem;
    line-height: 0.9;
}

h2,
.section__heading h2,
.archive-intro h2,
.featured-post__content h2,
.italy-band h2 {
    font-size: 4.55rem;
    line-height: 0.96;
}

h3,
.venue-card__body h3,
.post-card h2,
.region-map h3 {
    font-size: 2.3rem;
    line-height: 1;
}

.site-header {
    color: var(--color-ivory);
    background: linear-gradient(180deg, rgba(13, 21, 18, 0.72), rgba(13, 21, 18, 0.08));
    border-bottom: 1px solid rgba(255, 250, 241, 0.08);
    box-shadow: none;
    backdrop-filter: blur(24px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-mist), rgba(255, 255, 255, 0));
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
}

.site-header.is-scrolled {
    background: rgba(13, 21, 18, 0.84);
    box-shadow: 0 16px 70px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
}

.brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
    gap: 14px;
    color: var(--color-ivory);
}

.brand__mark {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 250, 241, 0.58);
    border-radius: 50%;
    filter: grayscale(1) brightness(2.4);
    mix-blend-mode: screen;
    opacity: 0.9;
}

.brand__title {
    color: var(--color-ivory);
    font-size: 0.92rem;
    letter-spacing: 0.28em;
}

.brand__subtitle {
    color: rgba(255, 250, 241, 0.66);
    font-size: 0.52rem;
    letter-spacing: 0.32em;
}

.header-cta {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: 142px;
    min-height: 36px;
    padding: 10px 20px;
    border-color: rgba(255, 250, 241, 0.16);
    border-radius: 999px;
    background: var(--color-olive);
    color: var(--color-ink);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

.header-cta::after {
    content: "\2192";
    margin-left: 14px;
    font-size: 1rem;
}

.header-cta:hover {
    background: var(--color-ivory);
    border-color: var(--color-ivory);
    color: var(--color-ink);
}

.nav-toggle {
    position: relative;
    z-index: 320;
    grid-column: 3;
    grid-row: 1;
    display: inline-grid;
    grid-template-columns: auto 28px;
    align-items: center;
    justify-self: end;
    gap: 14px;
    width: auto;
    min-width: 104px;
    height: 44px;
    padding: 0;
    border: 0;
    color: var(--color-ivory);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.66rem;
}

.nav-toggle::before {
    content: "Menu";
}

.nav-toggle.is-open::before {
    content: "Close";
}

.nav-toggle span:not(.screen-reader-text) {
    width: 26px;
    background: currentColor;
    grid-column: 2;
    margin: 0;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-5px);
}

.nav-toggle span:nth-child(2) {
    opacity: 0.64;
}

.nav-toggle span:nth-child(3) {
    transform: translateY(5px);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(1px) rotate(42deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-1px) rotate(-42deg);
}

.primary-nav {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    padding: calc(var(--header-height) + 32px) 32px 54px;
    background:
        radial-gradient(circle at 12% 18%, rgba(196, 213, 200, 0.12), transparent 28rem),
        linear-gradient(135deg, rgba(13, 21, 18, 0.98), rgba(23, 33, 28, 0.98));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 360ms ease, transform 360ms ease;
}

.primary-nav::before {
    content: "Antonella Petrone";
    position: absolute;
    left: 7%;
    bottom: 7%;
    color: rgba(255, 250, 241, 0.06);
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.88;
}

.primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.primary-nav .menu {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    text-align: center;
}

.primary-nav .menu a {
    min-height: 0;
    color: var(--color-ivory);
    font-family: var(--font-serif);
    font-size: 4.4rem;
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0;
}

.primary-nav .menu a::after {
    bottom: -8px;
    background: var(--color-olive);
}

.site-main {
    position: relative;
    z-index: 1;
    background: var(--color-paper);
}

.hero {
    min-height: 82svh;
    color: var(--color-ivory);
    background-color: var(--color-night);
    background-position: center calc(50% + var(--hero-shift, 0px));
    isolation: isolate;
}

.hero--home {
    min-height: 94svh;
}

.hero::after {
    content: "";
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    top: 38%;
    z-index: 2;
    width: 1px;
    height: 138px;
    background: linear-gradient(180deg, var(--color-ivory) 0 22%, transparent 22% 31%, rgba(255, 250, 241, 0.84) 31% 100%);
    opacity: 0.82;
}

.hero__shade {
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.38), rgba(13, 21, 18, 0.2) 34%, rgba(13, 21, 18, 0.78)),
        linear-gradient(90deg, rgba(13, 21, 18, 0.52), rgba(13, 21, 18, 0.08) 48%, rgba(13, 21, 18, 0.38));
}

.hero__shade--light {
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.1), rgba(13, 21, 18, 0.48)),
        rgba(243, 238, 230, 0.1);
}

.hero__content {
    align-self: center;
    justify-self: center;
    width: min(1040px, var(--container));
    max-width: none;
    padding: calc(var(--header-height) + 70px) 0 190px;
    text-align: center;
}

.hero--interior .hero__content {
    padding-bottom: 0;
}

.hero--venues {
    color: var(--color-ivory);
}

.hero__content h1 {
    color: var(--color-ivory);
    font-size: 7.6rem;
    line-height: 0.86;
    text-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.hero__content p:not(.eyebrow) {
    max-width: 690px;
    margin: 26px auto 0;
    color: rgba(255, 250, 241, 0.76);
    font-size: 1.08rem;
    line-height: 1.78;
}

.eyebrow {
    color: var(--color-terracotta);
    font-size: 0.66rem;
    letter-spacing: 0.32em;
}

.hero .eyebrow,
.footer-cta .eyebrow,
.service-preview .eyebrow,
.italy-band .eyebrow {
    color: rgba(220, 231, 219, 0.82);
}

.button-row {
    justify-content: center;
}

.button,
.filter-bar a,
.page-numbers {
    border-radius: 999px;
}

.button {
    min-height: 48px;
    padding: 0 24px;
    border-color: rgba(196, 213, 200, 0.22);
    background: var(--color-olive);
    color: var(--color-ink);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.button::after,
.text-link::after {
    content: "\2192";
}

.button:hover {
    background: var(--color-ivory);
    border-color: var(--color-ivory);
    color: var(--color-ink);
}

.button--light {
    background: rgba(255, 250, 241, 0.9);
    color: var(--color-ink);
}

.button--outline {
    border-color: rgba(17, 23, 19, 0.2);
    background: transparent;
    color: var(--color-ink);
    box-shadow: none;
}

.button--outline:hover {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: var(--color-ivory);
}

.text-link {
    color: var(--color-terracotta);
    font-weight: 500;
}

.hero__storybar {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 3;
    width: var(--container);
    display: grid;
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
    gap: 28px;
    align-items: end;
    color: rgba(255, 250, 241, 0.78);
    transform: translateX(-50%);
}

.hero__feature-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    min-height: 142px;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.12);
    border-radius: 8px;
    background: rgba(17, 23, 19, 0.44);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(18px);
}

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

.hero__feature-card div {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 22px;
}

.hero__feature-card span,
.hero__feature-card a {
    color: rgba(255, 250, 241, 0.62);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero__feature-card strong {
    color: var(--color-ivory);
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
}

.hero__feature-card a::after {
    content: "\2192";
    margin-left: 12px;
}

.hero__storybar > p {
    max-width: 360px;
    font-size: 0.96rem;
    line-height: 1.78;
}

.destination-marquee,
.cinematic-gallery {
    overflow: hidden;
    background: var(--color-night);
}

.destination-marquee {
    height: 76px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 250, 241, 0.08);
    border-bottom: 1px solid rgba(255, 250, 241, 0.08);
}

.destination-marquee__track {
    display: flex;
    gap: 36px;
    width: max-content;
    color: var(--color-mist);
    animation: idw-marquee 32s linear infinite;
}

.destination-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.destination-marquee span::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-blush);
}

.section {
    padding: 118px 0;
}

.section__heading {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.95fr);
    gap: 46px;
    align-items: end;
}

.section__heading .eyebrow {
    margin-bottom: 10px;
}

.service-preview {
    width: 100%;
    max-width: none;
    padding: 118px max(32px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.92), rgba(23, 33, 28, 0.98)),
        var(--color-night);
    color: var(--color-ivory);
}

.service-preview .section__heading,
.service-preview .section__heading h2 {
    color: var(--color-ivory);
}

.service-strip,
.venue-grid,
.post-grid {
    gap: 22px;
}

.service-card,
.venue-card,
.post-card,
.featured-post,
.region-map article,
.contact-form {
    border: 1px solid rgba(17, 23, 19, 0.1);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.72);
    box-shadow: none;
    overflow: hidden;
}

.service-preview .service-card {
    border-color: rgba(255, 250, 241, 0.12);
    background: rgba(255, 250, 241, 0.06);
    color: var(--color-ivory);
    backdrop-filter: blur(16px);
}

.service-card:hover,
.venue-card:hover,
.post-card:hover,
.region-map article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.service-card img,
.venue-card__image img,
.post-card img {
    filter: saturate(0.92) contrast(1.02);
}

.service-card div,
.venue-card__body,
.post-card div {
    padding: 28px;
}

.service-card h3,
.service-row h2,
.process-steps h3 {
    letter-spacing: 0;
    text-transform: none;
}

.service-card p,
.venue-card__body p:not(.eyebrow),
.split-section__content p:not(.eyebrow),
.region-map p,
.service-row p,
.process-steps p,
.philosophy-grid p,
.sensory-grid p,
.featured-post__content p:not(.eyebrow),
.contact-card p {
    color: var(--color-muted);
}

.service-preview .service-card p {
    color: rgba(255, 250, 241, 0.64);
}

.split-section {
    gap: 70px;
}

.split-section__media img,
.page-hero__image img,
.single-post-image img,
.featured-post__image img,
.contact-card img {
    border-radius: 8px;
    filter: saturate(0.92) contrast(1.03);
}

.cinematic-gallery {
    padding: 28px 0;
}

.cinematic-gallery__track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: idw-gallery-drift 54s linear infinite;
}

.cinematic-gallery img {
    width: 360px;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
}

.venue-card {
    background: var(--color-ivory);
}

.venue-card__body {
    min-height: 238px;
}

.venue-card__arrow {
    color: var(--color-terracotta);
}

.italy-band {
    background: var(--color-night);
    color: var(--color-ivory);
}

.italy-band img {
    height: 620px;
    filter: saturate(0.88) contrast(1.04);
}

.italy-band div {
    padding: 76px;
}

.italy-band .text-link {
    color: var(--color-mist);
}

.page-hero {
    padding-top: calc(var(--header-height) + 78px);
    padding-bottom: 78px;
}

.page-hero--split {
    min-height: 86svh;
}

.page-hero__center,
.page-hero__content {
    max-width: 860px;
}

.page-hero__content p:not(.eyebrow),
.page-hero__center p:not(.eyebrow) {
    color: var(--color-muted);
    font-size: 1.08rem;
    line-height: 1.82;
}

.signature {
    color: var(--color-terracotta);
}

.philosophy-grid,
.sensory-grid {
    width: 100%;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.philosophy-grid article,
.sensory-grid article,
.process-steps article {
    border-color: rgba(17, 23, 19, 0.12);
}

.quote-band {
    min-height: 440px;
    background:
        linear-gradient(rgba(13, 21, 18, 0.42), rgba(13, 21, 18, 0.58)),
        image-set(url("../images/venues-hero.webp") type("image/webp"), url("../images/venues-hero.jpg") type("image/jpeg")) center / cover;
}

.quote-band p {
    font-size: 5.4rem;
}

.image-ribbon {
    margin-top: calc(var(--header-height) * -1);
}

.image-ribbon img {
    height: 320px;
    filter: saturate(0.88) contrast(1.04);
}

.service-row {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-line);
}

.service-row img {
    border-radius: 8px;
}

.process-cta {
    width: min(1180px, calc(100vw - 64px));
    padding: 58px;
    border: 1px solid rgba(17, 23, 19, 0.1);
    border-radius: 8px;
    background: var(--color-ivory);
}

.italy-guide__intro {
    top: calc(var(--header-height) + 42px);
}

.region-map article {
    min-height: 190px;
    background: rgba(255, 250, 241, 0.66);
}

.filter-bar {
    gap: 12px;
}

.filter-bar a {
    background: rgba(255, 250, 241, 0.7);
}

.filter-bar a:hover,
.filter-bar a.is-active,
.page-numbers.current,
.page-numbers:hover {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: var(--color-ivory);
}

.venue-hero {
    background: var(--color-night);
    color: var(--color-ivory);
}

.venue-hero__image img,
.venue-hero__image video {
    filter: saturate(0.9) contrast(1.03);
}

.venue-hero__content p:not(.eyebrow) {
    color: rgba(255, 250, 241, 0.7);
}

.fact-grid {
    border-color: rgba(255, 250, 241, 0.14);
}

.fact-grid div {
    border-color: rgba(255, 250, 241, 0.14);
}

.fact-grid span {
    color: rgba(255, 250, 241, 0.56);
}

.fact-grid strong {
    color: var(--color-ivory);
}

.venue-gallery {
    background: var(--color-night);
    gap: 1px;
}

.venue-story {
    gap: 48px;
}

.featured-post {
    background: var(--color-ivory);
}

.contact-form {
    background: var(--color-ivory);
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    background: rgba(243, 238, 230, 0.86);
}

.contact-card {
    border-radius: 8px;
    background: var(--color-night);
    overflow: hidden;
}

.contact-card h2,
.contact-card a {
    color: var(--color-ivory);
}

.site-footer {
    background:
        radial-gradient(circle at 88% 12%, rgba(196, 213, 200, 0.12), transparent 28rem),
        var(--color-night);
}

.footer-cta {
    padding: 118px 0;
}

.footer-cta h2 {
    color: var(--color-ivory);
    font-size: 5rem;
}

.footer-brand img {
    filter: grayscale(1) brightness(2.2);
}

.gallery-lightbox {
    background: rgba(13, 21, 18, 0.92);
}

[data-reveal] {
    transform: translateY(32px);
    transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes idw-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes idw-gallery-drift {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1120px) {
    :root {
        --container: min(100vw - 40px, 980px);
    }

    h1,
    .hero__content h1 {
        font-size: 5.4rem;
    }

    h2,
    .section__heading h2,
    .archive-intro h2,
    .featured-post__content h2,
    .italy-band h2 {
        font-size: 3.8rem;
    }

    .primary-nav {
        top: 0;
        background:
            radial-gradient(circle at 18% 24%, rgba(196, 213, 200, 0.12), transparent 25rem),
            linear-gradient(135deg, rgba(13, 21, 18, 0.98), rgba(23, 33, 28, 0.98));
        border-bottom: 0;
        transform: translateY(-18px);
    }

    .primary-nav.is-open {
        transform: translateY(0);
    }

    .primary-nav .menu {
        width: auto;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .primary-nav .menu a {
        font-size: 3.6rem;
    }

    .hero__storybar {
        grid-template-columns: minmax(0, 640px);
    }

    .hero__storybar > p:last-child {
        display: none;
    }

    .section__heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-cta {
        width: var(--container);
        padding: 42px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 74px;
        --container: min(100vw - 28px, 720px);
    }

    h1,
    .hero__content h1,
    .single-post-hero h1 {
        font-size: 4rem;
    }

    h2,
    .section__heading h2,
    .archive-intro h2,
    .featured-post__content h2,
    .italy-band h2,
    .quote-band p,
    .footer-cta h2 {
        font-size: 3rem;
    }

    h3,
    .venue-card__body h3,
    .post-card h2,
    .region-map h3 {
        font-size: 2rem;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-cta {
        display: inline-flex;
        min-width: 0;
        padding: 9px 14px;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .brand {
        justify-self: center;
        gap: 8px;
    }

    .brand__text {
        display: none;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .nav-toggle {
        min-width: 58px;
        grid-template-columns: 28px;
        gap: 0;
        font-size: 0;
    }

    .nav-toggle::before {
        content: "";
    }

    .nav-toggle span:not(.screen-reader-text) {
        grid-column: 1;
    }

    .primary-nav::before {
        font-size: 4.4rem;
    }

    .primary-nav .menu a {
        font-size: 3rem;
    }

    .hero {
        min-height: auto;
    }

    .hero::after {
        display: none;
    }

    .hero__content {
        padding: calc(var(--header-height) + 58px) 0 38px;
    }

    .hero--home .hero__content {
        padding-bottom: 34px;
    }

    .hero__storybar {
        position: relative;
        left: auto;
        bottom: auto;
        width: var(--container);
        margin: 0 auto 28px;
        grid-template-columns: minmax(0, 1fr);
        transform: none;
    }

    .hero__storybar > p:last-child {
        display: block;
    }

    .hero__feature-card {
        grid-template-columns: 112px 1fr;
    }

    .hero__feature-card div {
        padding: 18px;
    }

    .hero__feature-card strong {
        font-size: 1.35rem;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .destination-marquee {
        height: 64px;
    }

    .destination-marquee span {
        font-size: 1.55rem;
    }

    .section,
    .service-preview,
    .footer-cta {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .service-preview,
    .philosophy-grid,
    .sensory-grid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .split-section {
        gap: 34px;
    }

    .cinematic-gallery img {
        width: 240px;
        height: 340px;
    }

    .italy-band div {
        padding: 34px 22px 52px;
    }

    .page-hero {
        padding-top: calc(var(--header-height) + 44px);
        padding-bottom: 56px;
    }

    .process-cta {
        width: var(--container);
        padding: 28px;
    }

    .venue-hero {
        padding-top: var(--header-height);
    }

    .venue-hero__content {
        padding: 34px 22px 48px;
    }

    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    h1,
    .hero__content h1,
    .single-post-hero h1 {
        font-size: 3.3rem;
    }

    h2,
    .section__heading h2,
    .archive-intro h2,
    .featured-post__content h2,
    .italy-band h2,
    .quote-band p,
    .footer-cta h2 {
        font-size: 2.55rem;
    }

    .header-cta {
        max-width: 128px;
        overflow: hidden;
        white-space: nowrap;
    }

    .hero__feature-card {
        grid-template-columns: 1fr;
    }

    .hero__feature-card img {
        height: 150px;
    }

    .primary-nav .menu a {
        font-size: 2.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .destination-marquee__track,
    .cinematic-gallery__track {
        animation: none;
    }
}

/* Luxury expansion and QA polish. */
.site-header {
    z-index: 900;
    overflow: visible;
}

.site-header__inner {
    position: relative;
    z-index: 930;
}

.brand__mark {
    width: 52px;
    height: 52px;
    padding: 3px;
    border-color: rgba(255, 250, 241, 0.5);
    background: rgba(255, 250, 241, 0.92);
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
}

.brand__title,
.brand__subtitle {
    text-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
}

.primary-nav {
    position: fixed;
    inset: 0;
    z-index: 910;
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    min-height: 100svh;
    max-height: none;
    overflow: hidden auto;
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.96), rgba(13, 21, 18, 0.99)),
        radial-gradient(circle at 18% 22%, rgba(196, 213, 200, 0.18), transparent 34rem),
        var(--color-night);
}

.primary-nav::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(13, 21, 18, 0.96), rgba(13, 21, 18, 0.9)),
        image-set(url("../images/venue-como.webp") type("image/webp"), url("../images/venue-como.jpg") type("image/jpeg")) center / cover;
    opacity: 0.24;
}

.nav-toggle {
    z-index: 940;
}

body.nav-is-open .site-header {
    background: transparent;
    box-shadow: none;
}

body.nav-is-open .header-cta {
    opacity: 0;
    pointer-events: none;
}

.hero--home {
    min-height: max(920px, 100svh);
    align-content: center;
    padding-bottom: 40px;
}

.hero--home .hero__shade {
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.28), rgba(13, 21, 18, 0.16) 34%, rgba(13, 21, 18, 0.6)),
        linear-gradient(90deg, rgba(13, 21, 18, 0.42), rgba(13, 21, 18, 0.06) 48%, rgba(13, 21, 18, 0.22));
}

.hero__content h1 {
    max-width: 1060px;
    margin-inline: auto;
}

.hero--home .hero__content {
    align-self: end;
    padding-bottom: 28px;
}

.hero--home .button-row {
    position: relative;
    z-index: 5;
}

.hero--home .hero__storybar {
    position: relative;
    left: auto;
    bottom: auto;
    align-self: start;
    z-index: 4;
    margin: 8px auto 0;
    justify-content: center;
    transform: none;
}

.hero__storybar[data-reveal] {
    transform: translateY(28px);
}

.hero__storybar[data-reveal].is-visible {
    transform: translateY(0);
}

.film-moment {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(34px, 6vw, 88px);
    align-items: center;
}

.film-moment__copy {
    max-width: 520px;
}

.film-moment__copy p:not(.eyebrow),
.editorial-promise__details p {
    margin-top: 24px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.film-moment__media {
    position: relative;
    min-height: 560px;
}

.film-moment__media video,
.film-moment__media img {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.film-moment__media video {
    inset: 0;
    width: 100%;
    height: 100%;
}

.film-moment__media img:nth-child(1) {
    left: 0;
    top: 7%;
    width: 58%;
    height: 68%;
}

.film-moment__media img:nth-child(2) {
    right: 0;
    top: 0;
    width: 42%;
    height: 48%;
}

.film-moment__media img:nth-child(3) {
    right: 8%;
    bottom: 0;
    width: 52%;
    height: 42%;
}

.editorial-promise {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
    gap: clamp(36px, 6vw, 82px);
    align-items: end;
}

.editorial-promise__statement h2 {
    font-size: 5rem;
}

.luxury-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
}

.luxury-metrics span,
.concierge-steps span {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    color: var(--color-ink);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.story-showcase {
    width: 100%;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.story-grid,
.testimonial-grid,
.destination-grid {
    display: grid;
    gap: 22px;
}

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

.story-card,
.destination-card,
.testimonial-band figure {
    overflow: hidden;
    border: 1px solid rgba(17, 23, 19, 0.11);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.74);
}

.story-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
    transition: transform 900ms ease;
}

.story-card:hover img,
.destination-card:hover img {
    transform: scale(1.045);
}

.story-card div,
.destination-card div {
    padding: 28px;
}

.story-card span,
.destination-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--color-terracotta);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.story-card p,
.destination-card p {
    margin-top: 16px;
    color: var(--color-muted);
}

.testimonial-band {
    background:
        linear-gradient(180deg, rgba(13, 21, 18, 0.94), rgba(23, 33, 28, 0.98)),
        var(--color-night);
    color: var(--color-ivory);
}

.testimonial-band__inner {
    width: var(--container);
    margin: 0 auto;
    padding: 112px 0;
}

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

.testimonial-band figure {
    margin: 0;
    padding: 34px;
    background: rgba(255, 250, 241, 0.06);
    border-color: rgba(255, 250, 241, 0.12);
}

.testimonial-band blockquote {
    margin: 0;
    color: rgba(255, 250, 241, 0.84);
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.08;
}

.testimonial-band figcaption {
    display: grid;
    gap: 4px;
    margin-top: 28px;
}

.testimonial-band strong {
    color: var(--color-ivory);
    font-weight: 500;
}

.testimonial-band span {
    color: rgba(255, 250, 241, 0.56);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.destination-explorer {
    width: 100%;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
}

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

.destination-card {
    position: relative;
    min-height: 470px;
    background: var(--color-night);
    color: var(--color-ivory);
}

.destination-card img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.04);
    opacity: 0.74;
    transition: transform 900ms ease, opacity 320ms ease;
}

.destination-card:hover img {
    opacity: 0.9;
}

.destination-card div {
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(180deg, transparent, rgba(13, 21, 18, 0.92));
}

.destination-card h3 {
    color: var(--color-ivory);
}

.destination-card p {
    color: rgba(255, 250, 241, 0.72);
}

.destination-card span {
    color: var(--color-mist);
}

.inquiry-concierge {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr) auto;
    gap: 34px;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.inquiry-concierge h2 {
    font-size: 4.2rem;
}

.concierge-steps {
    display: grid;
    gap: 12px;
}

.contact-form__intro {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}

.contact-form__intro h2 {
    font-size: 2.8rem;
}

.contact-form__intro p:not(.eyebrow) {
    max-width: 660px;
    margin-top: 14px;
    color: var(--color-muted);
}

.contact-form select {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: rgba(243, 238, 230, 0.86);
    color: var(--color-ink);
    padding: 15px 16px;
    font-size: 1rem;
    outline: 0;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form select:focus {
    border-color: var(--color-olive-dark);
    box-shadow: 0 0 0 4px rgba(35, 54, 44, 0.12);
}

.contact-form .contact-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--color-muted);
    font-size: 0.84rem;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-olive-dark);
}

.contact-consent a {
    color: var(--color-olive-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.idw-recaptcha {
    min-height: 78px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.translation-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(13, 21, 18, 0.64);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.translation-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.translation-modal__dialog {
    width: min(560px, calc(100vw - 32px));
    padding: 34px;
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 250, 241, 0.05), transparent),
        var(--color-night);
    color: var(--color-ivory);
    box-shadow: var(--shadow-deep);
}

.translation-modal__dialog h2 {
    font-size: 2.8rem;
}

.translation-modal__dialog p {
    margin-top: 16px;
    color: rgba(255, 250, 241, 0.72);
    line-height: 1.65;
}

.translation-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.translation-modal__actions .button {
    box-shadow: none;
}

.translation-modal__actions .button--outline {
    border-color: rgba(255, 250, 241, 0.18);
    color: var(--color-ivory);
}

.reviews-hero .hero__content {
    max-width: 920px;
}

.reviews-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    max-width: none;
    padding: 0;
    background: rgba(17, 23, 19, 0.12);
}

.reviews-summary div {
    min-height: 190px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 34px max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.reviews-summary span,
.reviews-summary small,
.review-card__top span {
    color: var(--color-muted);
    font-size: 0.68rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.reviews-summary strong {
    color: var(--color-ink);
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1;
}

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

.review-card {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
    align-content: stretch;
    min-height: 420px;
    padding: 34px;
    border: 1px solid rgba(17, 23, 19, 0.11);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.74);
    box-shadow: 0 18px 70px rgba(13, 21, 18, 0.08);
}

.review-card__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.review-stars {
    color: var(--color-gold);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.review-card h3 {
    font-size: 2rem;
}

.review-card blockquote {
    margin: 24px 0 0;
    color: var(--color-muted);
}

.review-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}

.review-card blockquote p + p {
    margin-top: 1em;
}

.review-card__read {
    align-self: end;
    justify-self: start;
}

.review-card__read::after {
    content: "\2197";
}

.review-card footer {
    display: grid;
    gap: 4px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--color-line);
}

.review-card footer strong {
    font-weight: 500;
}

.review-card footer span {
    color: var(--color-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.review-card .text-link {
    margin-top: 14px;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-items: center;
    padding: 24px;
}

.review-modal[hidden] {
    display: none;
}

.review-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 18, 0.64);
}

.review-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 32px));
    max-height: min(780px, calc(100dvh - 48px));
    overflow: auto;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 8px;
    background: var(--color-ivory);
    color: var(--color-ink);
    box-shadow: var(--shadow-deep);
}

.review-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    background: transparent;
    color: var(--color-ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.review-modal__dialog h2 {
    max-width: calc(100% - 46px);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.review-modal__content {
    margin-top: 24px;
    color: var(--color-muted);
}

body.review-modal-is-open {
    overflow: hidden;
}

.reviews-empty {
    padding: 42px;
    border: 1px solid var(--color-line);
    background: var(--color-ivory);
    color: var(--color-muted);
}

.review-submit {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 44px;
    align-items: start;
    width: 100%;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.review-submit__copy {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.review-submit__copy p:not(.eyebrow) {
    margin-top: 22px;
    color: var(--color-muted);
}

.rating-picker {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--color-muted);
}

.rating-picker legend {
    padding: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.rating-picker__stars {
    display: flex;
    gap: 8px;
}

.rating-picker input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    opacity: 0;
    clip-path: inset(50%);
}

.rating-picker label {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: rgba(17, 23, 19, 0.28);
    font-size: 2rem;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease;
}

.rating-picker label:hover,
.rating-picker label.is-active,
.rating-picker input:checked + label {
    color: var(--color-gold);
}

.rating-picker label:hover {
    transform: translateY(-1px);
}

.rating-picker input:focus-visible + label {
    border-radius: 999px;
    outline: 2px solid var(--color-olive-dark);
    outline-offset: 4px;
}

.review-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--color-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.review-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-olive-dark);
}

.review-form__field--trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.testimonial-band .review-stars {
    display: block;
    margin-bottom: 22px;
}

.testimonial-band__link {
    color: rgba(255, 250, 241, 0.78);
}

@media (max-width: 1120px) {
    .film-moment,
    .editorial-promise,
    .inquiry-concierge,
    .review-submit {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .testimonial-grid,
    .destination-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-submit__copy {
        position: static;
    }

    .inquiry-concierge .button {
        width: max-content;
    }
}

@media (max-width: 760px) {
    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .primary-nav {
        padding: calc(var(--header-height) + 34px) 24px 44px;
    }

    .primary-nav::before {
        left: 24px;
        bottom: 34px;
        max-width: calc(100vw - 48px);
        overflow-wrap: anywhere;
    }

    .film-moment__media {
        min-height: 520px;
    }

    .hero__storybar[data-reveal],
    .hero__storybar[data-reveal].is-visible {
        transform: none;
    }

    .film-moment__media img:nth-child(1) {
        width: 72%;
        height: 56%;
    }

    .film-moment__media img:nth-child(2) {
        width: 48%;
        height: 36%;
    }

    .film-moment__media img:nth-child(3) {
        right: 0;
        width: 68%;
        height: 40%;
    }

    .editorial-promise__statement h2,
    .inquiry-concierge h2 {
        font-size: 3rem;
    }

    .luxury-metrics,
    .story-grid,
    .testimonial-grid,
    .destination-grid,
    .reviews-summary,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .story-showcase,
    .destination-explorer,
    .inquiry-concierge,
    .review-submit {
        padding-left: 20px;
        padding-right: 20px;
    }

    .reviews-summary div {
        min-height: 150px;
        padding: 28px 20px;
    }

    .reviews-summary strong {
        font-size: 2.7rem;
    }

    .translation-modal__dialog {
        padding: 26px;
    }

    .translation-modal__dialog h2 {
        font-size: 2.2rem;
    }

    .story-card img,
    .destination-card,
    .destination-card img {
        height: auto;
        min-height: 360px;
    }

    .testimonial-band__inner {
        padding: 78px 0;
    }

    .testimonial-band blockquote {
        font-size: 1.7rem;
    }

    .inquiry-concierge .button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .header-cta {
        max-width: 112px;
    }

    .film-moment__media {
        min-height: 440px;
    }

    .contact-form__intro h2 {
        font-size: 2.25rem;
    }
}

/* Final visual fixes. */
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 116px;
    padding-right: 40px;
    line-height: 1;
}

.nav-toggle::before {
    display: block;
    line-height: 1;
    margin-top: 1px;
}

.nav-toggle span:not(.screen-reader-text) {
    position: absolute;
    right: 0;
    top: 50%;
    grid-column: auto;
    width: 28px;
    margin: 0;
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-9px);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(9px);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(0) rotate(42deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(0) rotate(-42deg);
}

.footer-brand img {
    width: min(230px, 100%);
    padding: 10px;
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 8px;
    background: var(--color-ivory);
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
}

@media (max-width: 760px) {
    .nav-toggle {
        min-width: 44px;
        padding-right: 32px;
        gap: 0;
        font-size: 0;
    }

    .nav-toggle span:not(.screen-reader-text) {
        width: 28px;
    }
}

/* Legal pages, process card, and language selector fixes. */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-main {
    overflow-x: clip;
}

.header-tools {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 18px;
}

.header-tools .nav-toggle {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
}

.language-menu {
    position: relative;
    z-index: 950;
}

.language-menu__toggle,
.language-menu__panel button {
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.08);
    color: var(--color-ivory);
    cursor: pointer;
    font-size: 0.64rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.language-menu__toggle {
    min-width: 46px;
    height: 34px;
    padding: 0 13px;
}

.language-menu__toggle::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.language-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(5, auto);
    min-width: 290px;
    padding: 8px;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 8px;
    background: rgba(13, 21, 18, 0.96);
    box-shadow: var(--shadow-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.language-menu.is-open .language-menu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-menu__panel button {
    min-height: 30px;
    padding: 0 10px;
}

.language-menu__notice {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 4px 2px 0;
    color: rgba(255, 250, 241, 0.68);
    font-size: 0.66rem;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
}

.language-menu__panel button:hover,
.language-menu__toggle:hover {
    background: var(--color-olive);
    color: var(--color-ink);
}

.language-menu__engine,
body > .skiptranslate,
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-logo-link,
#goog-gt-tt,
.goog-tooltip,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.goog-text-highlight,
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

html.translated-ltr,
html.translated-rtl,
body {
    margin-top: 0 !important;
}

body {
    position: static !important;
    top: 0 !important;
}

.process-cta {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    align-items: start;
    overflow: hidden;
}

.process-cta .process-steps {
    min-width: 0;
}

.process-cta > .button {
    grid-column: 2;
    justify-self: end;
    width: auto;
    min-width: 280px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.process-steps--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
}

.process-steps--compact article {
    min-width: 0;
}

.default-page {
    width: min(1120px, calc(100vw - 64px));
    overflow-wrap: anywhere;
}

.default-page .section {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.default-page .content-flow {
    padding-top: 0;
}

.default-page--legal {
    width: min(1180px, calc(100vw - 64px));
}

.default-page--legal .page-hero {
    padding-top: calc(var(--header-height) + 76px);
    padding-bottom: 42px;
    text-align: left;
}

.default-page--legal .page-hero h1 {
    font-size: 4.8rem;
}

.default-page--legal .page-hero .eyebrow {
    margin-bottom: 14px;
}

.default-page--legal .content-flow > h1:first-child {
    display: none;
}

.default-page--legal .content-flow h2 {
    margin-top: 1.15em;
    font-size: 2.7rem;
}

.default-page--legal .content-flow p,
.default-page--legal .content-flow li {
    max-width: 100%;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
    .process-cta {
        grid-template-columns: 1fr;
    }

    .process-cta > .button {
        grid-column: auto;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .header-tools {
        gap: 10px;
    }

    .language-menu__toggle {
        min-width: 42px;
        height: 32px;
        padding: 0 10px;
        font-size: 0.58rem;
    }

    .language-menu__panel {
        right: -48px;
        grid-template-columns: repeat(5, auto);
        min-width: min(300px, calc(100vw - 28px));
    }

    .process-steps--compact {
        grid-template-columns: 1fr;
    }

    .process-cta > .button {
        min-width: 0;
        width: 100%;
    }

    .default-page,
    .default-page--legal {
        width: min(100vw - 28px, 720px);
    }

    .default-page--legal .page-hero h1 {
        font-size: 3.2rem;
    }
}

/* Completed weddings portfolio. */
.weddings-hero {
    min-height: 86svh;
    background-position: center 48%;
}

.weddings-hero .hero__content {
    max-width: 1060px;
    padding-top: calc(var(--header-height) + 112px);
    padding-bottom: 96px;
}

.wedding-portfolio-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
    gap: clamp(38px, 6vw, 82px);
    align-items: end;
}

.wedding-portfolio-intro__copy p:not(.eyebrow),
.wedding-portfolio-cta p:not(.eyebrow) {
    margin-top: 24px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

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

.wedding-portfolio-stats article,
.wedding-card,
.wedding-empty,
.wedding-case-quote {
    border: 1px solid rgba(17, 23, 19, 0.11);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.74);
}

.wedding-portfolio-stats article {
    min-height: 210px;
    display: grid;
    align-content: space-between;
    padding: 28px;
}

.wedding-portfolio-stats span,
.wedding-card__meta span {
    color: var(--color-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.wedding-portfolio-stats strong {
    color: var(--color-ink);
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 0.9;
}

.wedding-portfolio-stats p {
    color: var(--color-muted);
}

.wedding-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 390px));
    gap: 22px;
    justify-content: center;
    align-items: start;
}

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

.recent-weddings .wedding-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
}

.wedding-card {
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.wedding-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.wedding-card__image {
    display: block;
    overflow: hidden;
    background: var(--color-night);
}

.wedding-card__image img {
    width: 100%;
    aspect-ratio: 0.9 / 1;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
    transition: transform 900ms ease, opacity 320ms ease;
}

.wedding-card:hover .wedding-card__image img {
    transform: scale(1.045);
    opacity: 0.94;
}

.wedding-card__body {
    padding: 28px;
}

.wedding-card__body .eyebrow {
    margin-bottom: 12px;
}

.wedding-card__body h3 {
    font-size: 2.4rem;
}

.wedding-card__body p:not(.eyebrow) {
    margin-top: 16px;
    color: var(--color-muted);
}

.wedding-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.wedding-card__meta span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
}

.wedding-empty {
    padding: 42px;
    color: var(--color-muted);
}

.wedding-portfolio-cta,
.wedding-case-next {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 28px;
    align-items: center;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.wedding-portfolio-cta {
    min-height: 430px;
    text-align: center;
}

.wedding-portfolio-cta div {
    width: min(900px, 100%);
    margin: 0 auto;
}

.wedding-portfolio-cta h2 {
    font-size: 4.8rem;
}

.wedding-portfolio-cta p:not(.eyebrow) {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.wedding-portfolio-cta .button {
    margin-top: 34px;
}

.wedding-case-hero .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
}

.wedding-case-hero .fact-grid div {
    min-height: 112px;
    padding: 20px;
}

.wedding-case-hero .fact-grid strong {
    font-size: clamp(1.08rem, 1.35vw, 1.35rem);
    line-height: 1.16;
    overflow-wrap: break-word;
}

.wedding-case-hero .button--outline {
    border-color: rgba(255, 250, 241, 0.24);
    color: var(--color-ivory);
}

.wedding-case-hero .button--outline:hover {
    background: var(--color-ivory);
    border-color: var(--color-ivory);
    color: var(--color-ink);
}

.wedding-film-hero {
    padding-top: calc(var(--header-height) + clamp(18px, 2vw, 32px));
    background: var(--color-night);
    color: var(--color-ivory);
}

.wedding-film-hero__media {
    width: var(--container);
    margin: 0 auto;
}

.wedding-film-hero__media video {
    display: block;
    width: 100%;
    max-height: min(76svh, 900px);
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 10px;
    background: #050706;
}

.wedding-film-hero__content {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(42px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
}

.wedding-film-hero__content h1 {
    max-width: 1080px;
}

.wedding-case-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
    gap: clamp(36px, 6vw, 82px);
    align-items: start;
}

.wedding-case-story__content {
    max-width: 760px;
}

.wedding-case-story__content .content-flow {
    margin-top: 26px;
    font-size: 1.08rem;
}

.wedding-case-quote {
    position: sticky;
    top: calc(var(--header-height) + 36px);
    padding: 34px;
    background: var(--color-ivory);
}

.wedding-case-quote p {
    color: var(--color-terracotta);
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1;
}

.wedding-case-next {
    grid-template-columns: minmax(0, 1fr) auto;
    border-top: 1px solid var(--color-line);
}

.wedding-case-next h2 {
    max-width: 720px;
}

.wedding-case-next .button {
    margin-top: 30px;
}

@media (max-width: 1120px) {
    .wedding-portfolio-intro,
    .wedding-case-story,
    .wedding-case-next {
        grid-template-columns: 1fr;
    }

    .wedding-case-quote {
        position: static;
    }
}

@media (max-width: 760px) {
    .journal-subscribe,
    .wedding-portfolio-stats,
    .wedding-case-hero .fact-grid {
        grid-template-columns: 1fr;
    }

    .recent-weddings .wedding-card-grid,
    .wedding-card-grid {
        grid-template-columns: minmax(0, min(100%, 390px));
    }

    .journal-subscribe {
        width: min(100% - 28px, 680px);
        margin-bottom: 54px;
        padding: 28px;
    }

    .subscription-page .journal-subscribe {
        margin-top: calc(var(--header-height) + 24px);
    }

    .journal-subscribe__form {
        grid-template-columns: 1fr;
    }

    .journal-subscribe .journal-access-request {
        grid-column: 1;
    }

    .journal-access-request form {
        grid-template-columns: 1fr;
    }

    .journal-access-request button {
        width: 100%;
    }

    .comments-subscribe-form,
    .comments-subscriber-gate .journal-access-request form {
        grid-template-columns: 1fr;
    }

    .comments-subscribe-form .button,
    .comments-subscriber-gate .journal-access-request button {
        width: 100%;
    }

    .subscriber-exclusive-gate__form {
        grid-template-columns: 1fr;
    }

    .subscriber-exclusive-gate__form .button {
        width: 100%;
    }

    .wedding-portfolio-cta,
    .wedding-case-next {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wedding-portfolio-stats article {
        min-height: 150px;
    }

    .wedding-card__image img {
        aspect-ratio: 1.08 / 1;
    }

    .wedding-film-hero {
        padding-top: calc(var(--header-height) + 14px);
    }

    .wedding-film-hero__media video {
        border-radius: 6px;
    }

    .wedding-film-hero__content {
        padding-top: 34px;
        padding-bottom: 52px;
    }

    .wedding-portfolio-cta h2 {
        font-size: 3rem;
    }

    .wedding-case-quote p {
        font-size: 2.2rem;
    }
}

@media (max-width: 520px) {
    .wedding-portfolio-cta h2 {
        font-size: 2.55rem;
    }
}

/* Responsive hardening. */
.site-header__inner,
.brand,
.brand__text,
.header-tools,
.primary-nav,
.primary-nav .menu,
.hero__content,
.hero__storybar,
.section,
.section__heading,
.split-section,
.film-moment,
.editorial-promise,
.inquiry-concierge,
.review-submit,
.wedding-portfolio-intro,
.wedding-case-story,
.wedding-case-next,
.contact-form,
.comments-area,
.contact-card,
.service-card,
.venue-card,
.post-card,
.story-card,
.destination-card,
.testimonial-band figure,
.review-card,
.wedding-card,
.process-cta,
.process-steps,
.process-steps article {
    min-width: 0;
}

img,
picture,
video,
canvas,
svg,
iframe,
input,
select,
textarea,
button {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.hero__content p:not(.eyebrow),
.page-hero__content p:not(.eyebrow),
.page-hero__center p:not(.eyebrow),
.content-flow,
.content-flow p,
.content-flow li,
.service-card p,
.venue-card__body p,
.post-card p,
.story-card p,
.destination-card p,
.review-card blockquote,
.wedding-card__body p,
.wedding-case-quote p,
.comment-body,
.comment-form label {
    overflow-wrap: break-word;
}

.featured-post__content h2,
.featured-post__content h2 a,
.post-card h2,
.post-card h2 a,
.story-card h3,
.story-card h3 a,
.wedding-card__body h3,
.wedding-card__body h3 a,
.single-post-hero h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.eyebrow,
.button,
.header-cta,
.text-link,
.filter-bar a,
.page-numbers,
.brand__title,
.brand__subtitle,
.hero__feature-card span,
.hero__feature-card a,
.luxury-metrics span,
.concierge-steps span,
.wedding-card__meta span,
.reviews-summary span,
.reviews-summary small,
.review-card__top span {
    overflow-wrap: anywhere;
}

.button,
.header-cta,
.filter-bar a,
.page-numbers,
.luxury-metrics span,
.concierge-steps span {
    white-space: normal;
    text-align: center;
}

.primary-nav {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.primary-nav .menu {
    width: min(100%, var(--container));
    max-width: 100%;
    align-content: center;
}

.primary-nav .menu a {
    font-size: clamp(2.8rem, 7vw, 4.4rem);
    overflow-wrap: anywhere;
}

.primary-nav::before {
    max-width: min(86vw, 920px);
    font-size: clamp(3.4rem, 10vw, 8rem);
    overflow-wrap: anywhere;
}

h1,
.hero__content h1,
.single-post-hero h1 {
    font-size: clamp(3.2rem, 8.4vw, 7.6rem);
}

h2,
.section__heading h2,
.archive-intro h2,
.featured-post__content h2,
.italy-band h2,
.editorial-promise__statement h2,
.inquiry-concierge h2,
.wedding-portfolio-cta h2,
.footer-cta h2 {
    font-size: clamp(2.45rem, 5.1vw, 5rem);
}

h3,
.venue-card__body h3,
.post-card h2,
.region-map h3,
.wedding-card__body h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.service-strip,
.venue-grid,
.post-grid,
.story-grid,
.testimonial-grid,
.destination-grid,
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.luxury-metrics,
.reviews-summary,
.wedding-portfolio-stats,
.wedding-case-hero .fact-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.filter-bar,
.pagination,
.footer-nav .menu,
.footer-social,
.wedding-card__meta,
.translation-modal__actions {
    flex-wrap: wrap;
}

.language-menu__panel {
    max-width: calc(100vw - 28px);
}

.idw-recaptcha {
    max-width: 100%;
    overflow-x: auto;
}

@media (max-width: 760px) {
    :root {
        --container: min(100vw - 28px, 720px);
    }

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

    .header-tools {
        gap: 8px;
    }

    .header-cta {
        max-width: min(34vw, 112px);
        min-width: 0;
        min-height: 38px;
        padding: 9px 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .language-menu__panel {
        right: 0;
        grid-template-columns: repeat(5, minmax(0, auto));
        min-width: min(300px, calc(100vw - 28px));
        max-width: calc(100vw - 28px);
    }

    .language-menu__notice {
        max-width: 100%;
    }

    .primary-nav {
        padding: calc(var(--header-height) + 28px) 18px 32px;
    }

    .primary-nav .menu {
        gap: 12px;
    }

    .primary-nav .menu a {
        font-size: clamp(1.95rem, 11vw, 3rem);
        line-height: 1.02;
    }

    .primary-nav::before {
        left: 18px;
        bottom: 28px;
        max-width: calc(100vw - 36px);
        font-size: clamp(2.45rem, 13vw, 4.4rem);
    }

    .hero,
    .hero--home,
    .weddings-hero {
        min-height: auto;
    }

    .hero--home {
        padding-bottom: 0;
    }

    .hero__content,
    .weddings-hero .hero__content {
        width: var(--container);
        padding: calc(var(--header-height) + 44px) 0 42px;
    }

    .hero--home .hero__content {
        padding-bottom: 34px;
    }

    h1,
    .hero__content h1,
    .single-post-hero h1 {
        font-size: clamp(2.55rem, 14vw, 4rem);
        line-height: 0.96;
    }

    h2,
    .section__heading h2,
    .archive-intro h2,
    .featured-post__content h2,
    .italy-band h2,
    .editorial-promise__statement h2,
    .inquiry-concierge h2,
    .quote-band p,
    .footer-cta h2,
    .wedding-portfolio-cta h2 {
        font-size: clamp(2.15rem, 11vw, 3rem);
        line-height: 1;
    }

    h3,
    .venue-card__body h3,
    .post-card h2,
    .region-map h3,
    .wedding-card__body h3,
    .review-card h3 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .eyebrow {
        letter-spacing: 0.2em;
    }

    .button-row {
        align-items: stretch;
    }

    .button,
    .filter-bar a,
    .page-numbers {
        min-height: 46px;
        padding: 12px 18px;
        line-height: 1.25;
        letter-spacing: 0.15em;
    }

    .section,
    .service-preview,
    .story-showcase,
    .destination-explorer,
    .inquiry-concierge,
    .review-submit,
    .footer-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .film-moment__media {
        min-height: clamp(360px, 70svh, 520px);
    }

    .story-card img,
    .destination-card,
    .destination-card img {
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 5;
    }

.testimonial-band figure,
.review-card,
.wedding-card__body,
.comment-body,
.contact-form,
.translation-modal__dialog {
    padding: 24px;
}

    .form-submit .submit {
        width: 100%;
    }

    .translation-modal__actions .button {
        width: 100%;
    }

    .contact-form__phone {
        grid-template-columns: 1fr;
    }

    .review-consent,
    .contact-form .contact-consent {
        grid-template-columns: 18px minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    :root {
        --container: min(100vw - 24px, 520px);
    }

    h1,
    .hero__content h1,
    .single-post-hero h1 {
        font-size: clamp(2.25rem, 13vw, 3.3rem);
    }

    h2,
    .section__heading h2,
    .archive-intro h2,
    .featured-post__content h2,
    .italy-band h2,
    .editorial-promise__statement h2,
    .inquiry-concierge h2,
    .quote-band p,
    .footer-cta h2,
    .wedding-portfolio-cta h2 {
        font-size: clamp(2rem, 10vw, 2.55rem);
    }

    .primary-nav .menu a {
        font-size: clamp(1.8rem, 10vw, 2.45rem);
    }

    .header-cta {
        max-width: 108px;
        font-size: 0.58rem;
    }

    .language-menu__panel {
        right: 0;
    }

    .film-moment__media {
        min-height: clamp(320px, 64svh, 440px);
    }

    .service-row {
        grid-template-columns: minmax(82px, 112px) minmax(0, 1fr);
    }
}

@media (max-width: 380px) {
    :root {
        --container: min(100vw - 20px, 380px);
    }

    .site-header__inner {
        gap: 8px;
    }

    .header-cta {
        max-width: 92px;
        padding-inline: 10px;
        letter-spacing: 0.11em;
    }

    .language-menu__toggle {
        min-width: 38px;
        padding-inline: 8px;
    }

    .nav-toggle {
        min-width: 40px;
        padding-right: 30px;
    }

    .primary-nav {
        padding-inline: 14px;
    }

    .button,
    .filter-bar a,
    .page-numbers,
    .eyebrow {
        letter-spacing: 0.12em;
    }

    .hero__feature-card,
    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row img {
        width: 100%;
    }
}

@media (max-height: 560px) and (orientation: landscape) {
    .primary-nav {
        place-items: start center;
        padding-top: calc(var(--header-height) + 18px);
    }

    .primary-nav .menu a {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .primary-nav::before {
        display: none;
    }

    .hero,
    .hero--home,
    .weddings-hero {
        min-height: auto;
    }

    .hero__content,
    .weddings-hero .hero__content {
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: 34px;
    }

    .hero__content h1 {
        font-size: clamp(2.5rem, 7vw, 4.6rem);
    }

    .hero--home .hero__storybar {
        margin-bottom: 22px;
    }
}

h1,
.hero__content h1,
.page-hero h1,
.single-post-hero h1,
.venue-hero__content h1,
.wedding-film-hero__content h1,
.section__heading h2,
.service-preview .section__heading h2,
.film-moment__copy h2,
.split-section__content h2,
.editorial-promise__statement h2,
.archive-intro h2,
.featured-post__content h2,
.italy-band h2,
.quote-band p,
.service-row h2,
.venue-story h2,
.wedding-portfolio-intro h2,
.wedding-portfolio-cta h2,
.wedding-case-story__content > h2,
.wedding-case-next h2,
.inquiry-concierge h2,
.contact-form__intro h2,
.comments-area__header h2,
.comment-reply-title,
.footer-cta h2 {
    color: var(--color-title);
}

.hero .hero__content h1,
.hero .hero__content h2,
.service-preview .section__heading h2,
.italy-band h2,
.quote-band p,
.footer-cta h2,
.wedding-film-hero__content h1 {
    color: var(--color-ivory);
}

.accessibility-menu {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9990;
    font-family: var(--font-sans);
}

.accessibility-menu__toggle {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 250, 241, 0.24);
    border-radius: 50%;
    background: var(--color-night);
    color: var(--color-ivory);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.accessibility-menu__toggle span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1;
}

.accessibility-menu__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(320px, calc(100vw - 32px));
    padding: 20px;
    border: 1px solid rgba(17, 23, 19, 0.14);
    border-radius: 8px;
    background: var(--color-ivory);
    color: var(--color-ink);
    box-shadow: 0 24px 90px rgba(13, 21, 18, 0.2);
}

.accessibility-menu__panel h2 {
    margin-bottom: 14px;
    font-size: 1.8rem;
}

.accessibility-menu__controls {
    display: grid;
    gap: 8px;
}

.accessibility-menu__controls button,
.accessibility-menu__reset {
    min-height: 42px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: rgba(243, 238, 230, 0.72);
    color: var(--color-ink);
    padding: 8px 14px;
    font-size: 0.76rem;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.accessibility-menu__controls button[aria-pressed="true"] {
    background: var(--color-olive-dark);
    border-color: var(--color-olive-dark);
    color: var(--color-ivory);
}

.accessibility-menu__reset {
    width: 100%;
    margin-top: 12px;
    background: transparent;
}

.accessibility-menu button:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

html.idw-a11y-high-contrast {
    --color-paper: #ffffff;
    --color-ivory: #ffffff;
    --color-white: #ffffff;
    --color-ink: #050505;
    --color-muted: #1b1b1b;
    --color-title: #050505;
    --color-olive: #06472f;
    --color-olive-dark: #001f14;
    --color-stone: #d4d4d4;
    --color-line: rgba(0, 0, 0, 0.46);
    --color-terracotta: #722a12;
    --color-gold: #735300;
    --shadow-soft: none;
    --shadow-deep: none;
}

html.idw-a11y-high-contrast body,
html.idw-a11y-high-contrast .site-main,
html.idw-a11y-high-contrast .contact-form,
html.idw-a11y-high-contrast .review-card,
html.idw-a11y-high-contrast .wedding-card,
html.idw-a11y-high-contrast .service-card,
html.idw-a11y-high-contrast .venue-card,
html.idw-a11y-high-contrast .post-card,
html.idw-a11y-high-contrast .story-card,
html.idw-a11y-high-contrast .reviews-summary div {
    background: #ffffff;
}

html.idw-a11y-high-contrast .hero__shade {
    background: rgba(0, 0, 0, 0.72);
}

html.idw-a11y-high-contrast .hero__content p:not(.eyebrow),
html.idw-a11y-high-contrast .hero .eyebrow {
    color: #ffffff;
}

html.idw-a11y-high-contrast .button,
html.idw-a11y-high-contrast input,
html.idw-a11y-high-contrast textarea,
html.idw-a11y-high-contrast select {
    border-width: 2px;
}

html.idw-a11y-large-text {
    font-size: 112.5%;
}

html.idw-a11y-readable-font {
    --font-serif: "Avenir Next", "Segoe UI", Arial, sans-serif;
    --font-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

html.idw-a11y-bold-text body,
html.idw-a11y-bold-text p,
html.idw-a11y-bold-text li,
html.idw-a11y-bold-text label,
html.idw-a11y-bold-text input,
html.idw-a11y-bold-text textarea,
html.idw-a11y-bold-text select,
html.idw-a11y-bold-text button,
html.idw-a11y-bold-text a {
    font-weight: 500;
}

html.idw-a11y-bold-text h1,
html.idw-a11y-bold-text h2,
html.idw-a11y-bold-text h3,
html.idw-a11y-bold-text h4,
html.idw-a11y-bold-text strong {
    font-weight: 600;
}

html.idw-a11y-underline-links a:not(.button):not(.brand):not(.wedding-card__image):not(.story-card__image):not(.venue-card__image):not(.post-card__image) {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

html.idw-a11y-reduce-motion {
    scroll-behavior: auto;
}

html.idw-a11y-reduce-motion *,
html.idw-a11y-reduce-motion *::before,
html.idw-a11y-reduce-motion *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
}

html.idw-a11y-reduce-motion [data-reveal],
html.idw-a11y-reduce-motion [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
}

html.idw-a11y-reduce-motion .destination-marquee__track,
html.idw-a11y-reduce-motion .cinematic-gallery__track {
    animation: none !important;
    transform: none !important;
}

html.idw-a11y-reduce-motion .hero {
    background-position: center !important;
}

.venue-filter-form,
.contact-next-steps__grid article {
    border: 1px solid rgba(17, 23, 19, 0.11);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.74);
}

.venue-filter-form {
    display: grid;
    gap: 20px;
    margin: 0 0 52px;
    padding: 24px;
}

.venue-filter-form__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.venue-filter-form label {
    display: grid;
    gap: 8px;
}

.venue-filter-form label span {
    color: var(--color-muted);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.venue-filter-form select,
.contact-form__optional select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--color-line);
    border-radius: 0;
    background: var(--color-ivory);
    color: var(--color-ink);
    padding: 12px 14px;
}

.venue-filter-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.contact-next-steps {
    width: 100%;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1180px) / 2));
    padding-right: max(32px, calc((100vw - 1180px) / 2));
    background: var(--color-ivory);
}

.contact-next-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-next-steps__grid article {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    padding: 28px;
}

.contact-next-steps__grid span {
    color: var(--color-terracotta);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.contact-next-steps__grid h3 {
    margin-top: 28px;
}

.contact-next-steps__grid p {
    margin-top: 16px;
    color: var(--color-muted);
}

.contact-form__optional {
    border: 1px solid var(--color-line);
    padding: 18px;
    background: rgba(255, 250, 241, 0.46);
}

.contact-form__optional summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--color-ink);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.contact-form__optional summary::-webkit-details-marker {
    display: none;
}

.contact-form__optional summary::after {
    content: "+";
    color: var(--color-terracotta);
    font-size: 1.15rem;
    line-height: 1;
}

.contact-form__optional[open] summary::after {
    content: "-";
}

.contact-form__optional-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.home-mobile-carousel__dots {
    display: none;
}

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

.story-showcase .story-grid,
.venue-feature .venue-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.story-showcase .story-card,
.venue-feature .venue-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
}

.testimonial-grid--static figure,
.testimonial-grid--carousel figure {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

.testimonial-grid--static blockquote {
    font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}

.testimonial-carousel {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.testimonial-grid--carousel {
    width: 100%;
    min-width: 0;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 370px);
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    padding: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-grid--carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.testimonial-grid--carousel figure {
    min-height: 430px;
    scroll-snap-align: start;
}

.testimonial-carousel__button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 250, 241, 0.24);
    border-radius: 50%;
    background: rgba(255, 250, 241, 0.07);
    color: var(--color-ivory);
    cursor: pointer;
    transition: background 220ms ease, border-color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.testimonial-carousel__button:hover {
    background: rgba(255, 250, 241, 0.16);
    border-color: rgba(255, 250, 241, 0.46);
    transform: translateY(-1px);
}

.testimonial-carousel__button:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.testimonial-carousel__button:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .testimonial-grid--static {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .testimonial-grid--static figure {
        padding: 26px;
    }

    .testimonial-grid--static blockquote {
        font-size: clamp(1.25rem, 2vw, 1.55rem);
    }

    .story-showcase .story-grid,
    .venue-feature .venue-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .accessibility-menu {
        right: 14px;
        bottom: 14px;
    }

    .accessibility-menu__toggle {
        width: 52px;
        height: 52px;
    }

    .accessibility-menu__panel {
        bottom: 64px;
    }

    html.idw-a11y-large-text {
        font-size: 106.25%;
    }

    .testimonial-grid--static {
        grid-template-columns: 1fr;
    }

    .testimonial-grid--static blockquote {
        font-size: 1.7rem;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel__button {
        display: none;
    }

    .testimonial-grid--carousel {
        grid-auto-columns: minmax(260px, 88vw);
    }

    .testimonial-grid--carousel figure {
        min-height: 0;
    }

    .story-showcase .home-mobile-carousel,
    .recent-weddings .home-mobile-carousel,
    .venue-feature .home-mobile-carousel {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(270px, 84vw);
        grid-template-columns: none;
        justify-content: start;
        align-items: stretch;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 2px;
        scroll-snap-type: x mandatory;
        padding: 2px 0 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
        mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
    }

    .story-showcase .home-mobile-carousel::-webkit-scrollbar,
    .recent-weddings .home-mobile-carousel::-webkit-scrollbar,
    .venue-feature .home-mobile-carousel::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .story-showcase .home-mobile-carousel > *,
    .recent-weddings .home-mobile-carousel > *,
    .venue-feature .home-mobile-carousel > * {
        scroll-snap-align: start;
    }

    .home-mobile-carousel__dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 12px;
    }

    .home-mobile-carousel__dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        color: rgba(17, 23, 19, 0.22);
        transition: color 180ms ease, transform 180ms ease;
    }

    .home-mobile-carousel__dots span.is-active {
        color: var(--color-terracotta);
        transform: scale(1.22);
    }

    .story-showcase .story-card,
    .recent-weddings .wedding-card,
    .venue-feature .venue-card {
        height: 100%;
    }

    .venue-filter-form {
        margin-bottom: 38px;
        padding: 20px;
    }

    .venue-filter-form__grid,
    .contact-next-steps__grid,
    .contact-form__optional-grid {
        grid-template-columns: 1fr;
    }

    .venue-filter-form__actions {
        align-items: stretch;
    }

    .venue-filter-form__actions .button,
    .venue-filter-form__actions .text-link {
        width: 100%;
    }

    .contact-next-steps {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-next-steps__grid article {
        min-height: 0;
    }
}
