:root {
    --wine-950: #2b0711;
    --wine-900: #3b0a19;
    --wine-800: #511024;
    --wine-700: #68152d;
    --wine-600: #7e1a36;
    --wine-500: #8f2442;
    --gold-600: #956d2c;
    --gold-500: #b4883d;
    --gold-400: #d5ad62;
    --cream-50: #fffdf9;
    --cream-100: #fbf6ec;
    --cream-200: #f2e5cf;
    --ink-900: #211b1d;
    --ink-700: #51494c;
    --ink-500: #7b7275;
    --line: #e9dfd5;
    --white: #ffffff;
    --success: #176346;
    --danger: #a52a3f;
    --shadow-sm: 0 5px 20px rgba(59, 10, 25, 0.06);
    --shadow-md: 0 18px 50px rgba(59, 10, 25, 0.11);
    --shadow-lg: 0 28px 80px rgba(43, 7, 17, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream-50);
    color: var(--ink-900);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(180, 136, 61, 0.48);
    outline-offset: 3px;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--wine-800);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.announcement-bar {
    background: var(--wine-950);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    letter-spacing: 0.03em;
}

.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.announcement-inner p {
    margin: 0;
}

.announcement-inner a span {
    color: #f2d9a4;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 999px;
    background: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(213, 173, 98, 0.12);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(89, 58, 68, 0.09);
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 10px 35px rgba(43, 7, 17, 0.08);
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(180, 136, 61, 0.52);
    border-radius: 50% 50% 50% 8px;
    background: var(--wine-800);
    color: #f6dda8;
    transform: rotate(-4deg);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(246, 221, 168, 0.38);
    border-radius: inherit;
}

.brand-mark span {
    position: relative;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    transform: rotate(4deg);
}

.brand-copy {
    display: flex;
    align-items: baseline;
    letter-spacing: -0.035em;
}

.brand-copy strong {
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    line-height: 1;
}

.brand-copy small {
    color: var(--gold-600);
    font-size: 16px;
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding: 27px 0 24px;
    color: var(--ink-700);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--wine-800);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-list-button,
.button-primary,
.button-secondary,
.button-whatsapp,
.button-outline,
.filter-submit,
.compare-submit-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-list-button,
.button-primary,
.filter-submit,
.compare-submit-button {
    background: var(--wine-700);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(104, 21, 45, 0.16);
}

.nav-list-button:hover,
.button-primary:hover,
.filter-submit:hover,
.compare-submit-button:hover {
    background: var(--wine-900);
    box-shadow: 0 12px 28px rgba(104, 21, 45, 0.22);
    transform: translateY(-1px);
}

.nav-list-button svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.mobile-menu-button {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
}

.mobile-menu-button span:not(.sr-only) {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--wine-900);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 77px 0 0;
    background: rgba(43, 7, 17, 0.98);
    color: var(--white);
}

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

.mobile-nav .site-container {
    display: flex;
    flex-direction: column;
    padding-block: 25px;
}

.mobile-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
}

.mobile-nav .mobile-list-link {
    margin-top: 22px;
    border: 1px solid rgba(213, 173, 98, 0.55);
    border-radius: 999px;
    padding: 13px 20px;
    color: #f5dba5;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* Shared page elements */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 13px;
    color: var(--gold-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 25px;
    height: 1px;
    background: currentColor;
}

.section-heading {
    margin: 0;
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.section-copy {
    max-width: 600px;
    margin: 16px 0 0;
    color: var(--ink-700);
    font-size: 17px;
}

.section-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.text-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold-500);
    color: var(--wine-700);
    font-size: 14px;
    font-weight: 700;
}

.text-link:hover {
    color: var(--gold-600);
}

.button-secondary {
    border-color: var(--gold-500);
    background: #fffaf0;
    color: var(--wine-800);
}

.button-secondary:hover {
    background: var(--cream-200);
    transform: translateY(-1px);
}

.button-outline {
    border-color: var(--line);
    background: var(--white);
    color: var(--wine-800);
}

.button-outline:hover {
    border-color: var(--gold-400);
    background: var(--cream-100);
}

.button-whatsapp {
    background: #167d58;
    color: var(--white);
    box-shadow: 0 8px 22px rgba(22, 125, 88, 0.18);
}

.button-whatsapp:hover {
    background: #106747;
    transform: translateY(-1px);
}

.button-whatsapp svg,
.button-primary svg,
.button-secondary svg,
.button-outline svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 54px 28px;
    border: 1px dashed #d7c5b4;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.empty-state-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--cream-200);
    color: var(--wine-700);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.empty-state h2,
.empty-state h3 {
    margin: 0 0 8px;
    color: var(--wine-900);
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.empty-state p {
    max-width: 480px;
    margin: 0 auto 22px;
    color: var(--ink-500);
}

/* Homepage */
.home-hero {
    position: relative;
    isolation: isolate;
    min-height: 660px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 26%, rgba(213, 173, 98, 0.18), transparent 26%),
        linear-gradient(114deg, rgba(43, 7, 17, 0.98) 0%, rgba(75, 13, 31, 0.96) 55%, rgba(104, 21, 45, 0.91) 100%);
    color: var(--white);
}

.home-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(56vw, 720px);
    aspect-ratio: 1;
    right: -12%;
    top: -25%;
    border: 1px solid rgba(213, 173, 98, 0.23);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(213, 173, 98, 0.035), 0 0 0 140px rgba(213, 173, 98, 0.025);
}

.home-hero::after {
    content: "B";
    position: absolute;
    z-index: -1;
    right: 7%;
    bottom: -15%;
    color: rgba(255, 255, 255, 0.025);
    font-family: "Playfair Display", serif;
    font-size: min(46vw, 600px);
    font-weight: 700;
    line-height: 1;
}

.hero-ornament {
    position: absolute;
    top: 50%;
    right: 8.5%;
    width: 290px;
    height: 430px;
    border: 1px solid rgba(240, 207, 142, 0.32);
    border-radius: 150px 150px 12px 12px;
    transform: translateY(-50%);
}

.hero-ornament::before,
.hero-ornament::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(240, 207, 142, 0.16);
}

.hero-ornament::before {
    inset: 16px;
}

.hero-ornament::after {
    inset: 33px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding-block: 90px 105px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: #efd69d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.hero-title {
    max-width: 860px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 6.6vw, 79px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.01;
}

.hero-title em {
    color: #edcf8d;
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    max-width: 700px;
    margin: 24px 0 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.hero-search {
    width: min(100%, 620px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 0;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    color: var(--ink-900);
}

.search-field {
    position: relative;
    padding: 3px 18px;
    border-right: 1px solid var(--line);
}

.search-field label {
    display: block;
    margin: 0 0 1px;
    color: var(--ink-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.search-field select,
.search-field input {
    width: 100%;
    min-height: 34px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink-900);
    font-size: 14px;
    font-weight: 600;
}

.search-field input::placeholder {
    color: #a49a9d;
}

.hero-search button {
    min-height: 54px;
    padding-inline: 22px;
    border: 0;
    border-radius: 12px;
    background: var(--wine-700);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 9px 25px rgba(104, 21, 45, 0.22);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-search button:hover {
    background: var(--wine-900);
    transform: translateY(-1px);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.proof-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.proof-item span {
    width: 19px;
    height: 19px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(213, 173, 98, 0.5);
    border-radius: 50%;
    color: #efd69d;
    font-size: 10px;
}

.event-section {
    padding: 94px 0 105px;
    background: var(--cream-50);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.event-chip {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 2px 0 rgba(59, 10, 25, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.event-chip:hover {
    border-color: rgba(180, 136, 61, 0.55);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.event-chip-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--wine-700);
    font-family: "Playfair Display", serif;
    font-size: 17px;
}

.event-chip strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--wine-900);
    font-size: 14px;
}

.event-chip strong span {
    color: var(--gold-600);
}

.featured-section {
    padding: 96px 0 105px;
    background: var(--cream-100);
}

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

.venue-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(106, 79, 87, 0.1);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.venue-card-media {
    position: relative;
    aspect-ratio: 16 / 10.5;
    overflow: hidden;
    background: var(--cream-200);
}

.venue-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.venue-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.venue-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--wine-800);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(43, 7, 17, 0.11);
}

.venue-badge.featured {
    background: #f5dca7;
}

.venue-badge.verified::before {
    content: "✓";
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wine-700);
    color: var(--white);
    font-size: 8px;
}

.compare-check {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(43, 7, 17, 0.85);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(7px);
}

.compare-check input {
    width: 15px;
    height: 15px;
    accent-color: var(--gold-400);
}

.venue-card-body {
    padding: 20px 20px 18px;
}

.venue-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 7px;
    color: var(--gold-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.venue-card-location svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.venue-card-title {
    margin: 0;
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    line-height: 1.2;
}

.venue-card-title a:hover {
    color: var(--gold-600);
}

.venue-card-type {
    margin: 5px 0 17px;
    color: var(--ink-500);
    font-size: 13px;
}

.venue-card-facts {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #efe7df;
    border-bottom: 1px solid #efe7df;
}

.venue-card-fact {
    min-width: 0;
}

.venue-card-fact + .venue-card-fact {
    padding-left: 12px;
    border-left: 1px solid #efe7df;
}

.venue-card-fact span {
    display: block;
    margin-bottom: 2px;
    color: var(--ink-500);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.venue-card-fact strong {
    display: block;
    overflow: hidden;
    color: var(--ink-900);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.venue-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
}

.venue-card-actions .button-primary,
.venue-card-actions .venue-card-contact {
    min-height: 41px;
    padding: 9px 15px;
    font-size: 12px;
}

.venue-card-actions .venue-card-contact {
    width: 41px;
    padding: 0;
}

.cities-section {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.city-card {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 24px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(155deg, rgba(59, 10, 25, 0.22), rgba(43, 7, 17, 0.94)),
        linear-gradient(45deg, #8e475b, #37101b);
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city-card:nth-child(2) {
    background: linear-gradient(155deg, rgba(42, 52, 46, 0.15), rgba(27, 45, 39, 0.94)), linear-gradient(45deg, #6d8a78, #253c34);
}

.city-card:nth-child(3) {
    background: linear-gradient(155deg, rgba(109, 76, 45, 0.12), rgba(69, 44, 31, 0.94)), linear-gradient(45deg, #bb966b, #513725);
}

.city-card:nth-child(4) {
    background: linear-gradient(155deg, rgba(32, 67, 80, 0.12), rgba(25, 50, 63, 0.94)), linear-gradient(45deg, #77a2aa, #243f4c);
}

.city-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -60px;
    right: -40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

.city-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.city-card-content {
    position: relative;
    width: 100%;
}

.city-card h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
}

.city-card p {
    display: flex;
    justify-content: space-between;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.owner-cta-section {
    padding: 10px 0 105px;
    background: var(--cream-50);
}

.owner-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 45px;
    padding: 58px 64px;
    border-radius: var(--radius-lg);
    background: var(--wine-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.owner-cta::after {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    right: -110px;
    top: -190px;
    border: 1px solid rgba(213, 173, 98, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(213, 173, 98, 0.035), 0 0 0 80px rgba(213, 173, 98, 0.025);
}

.owner-cta .eyebrow {
    color: #e4c17a;
}

.owner-cta h2 {
    max-width: 680px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
}

.owner-cta p:not(.eyebrow) {
    max-width: 650px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.owner-cta .button-secondary {
    position: relative;
    z-index: 1;
    min-width: 170px;
}

/* Listing */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 72px;
    background: var(--wine-900);
    color: var(--white);
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    top: -240px;
    border: 1px solid rgba(213, 173, 98, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(213, 173, 98, 0.035), 0 0 0 100px rgba(213, 173, 98, 0.02);
}

.page-hero .eyebrow {
    color: #e4c17a;
}

.page-hero h1 {
    max-width: 800px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 6vw, 65px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.page-hero p:last-child {
    max-width: 690px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.listing-section {
    padding: 42px 0 105px;
}

.filter-panel {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
    gap: 13px;
    margin: -78px 0 35px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-field label {
    display: block;
    margin: 0 0 7px;
    color: var(--ink-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #ddd1c8;
    border-radius: var(--radius-sm);
    background: var(--cream-50);
    color: var(--ink-900);
    padding: 10px 13px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
    min-height: 122px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(180, 136, 61, 0.13);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa0a3;
}

.filter-submit {
    min-height: 48px;
    border-radius: var(--radius-sm);
    padding-inline: 23px;
}

.listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.listing-count {
    margin: 0;
    color: var(--ink-700);
    font-size: 14px;
}

.listing-count strong {
    color: var(--wine-800);
    font-size: 18px;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-700);
    font-size: 11px;
    font-weight: 700;
}

.filter-pill.clear {
    border-color: transparent;
    background: var(--cream-200);
    color: var(--wine-800);
}

.compare-tray {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 22px;
    left: 20px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-inline: auto;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(213, 173, 98, 0.34);
    border-radius: 16px;
    background: rgba(43, 7, 17, 0.97);
    color: var(--white);
    box-shadow: 0 18px 55px rgba(43, 7, 17, 0.3);
    backdrop-filter: blur(15px);
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.compare-tray.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.compare-tray p {
    margin: 0;
    font-size: 13px;
}

.compare-tray p strong {
    color: #efd69d;
}

.compare-submit-button {
    min-height: 42px;
    border: 0;
    background: var(--gold-500);
    color: var(--wine-950);
    box-shadow: none;
}

.compare-submit-button:hover {
    background: #d0a250;
}

/* Venue detail */
.detail-hero {
    position: relative;
    background: var(--wine-950);
}

.detail-hero-image {
    width: 100%;
    height: clamp(350px, 52vw, 630px);
    object-fit: cover;
    opacity: 0.78;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(32, 4, 12, 0.94), rgba(43, 7, 17, 0.08) 65%);
}

.detail-hero-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 50px;
    color: var(--white);
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.detail-breadcrumb a:hover {
    color: #f0cf8a;
}

.detail-heading-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.detail-heading h1 {
    margin: 10px 0 5px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(43px, 6vw, 70px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.detail-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
}

.detail-location svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #edca82;
    stroke-width: 1.8;
}

.detail-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.detail-actions .button-outline {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.detail-actions .button-outline:hover {
    background: rgba(255, 255, 255, 0.22);
}

.detail-section {
    padding: 66px 0 110px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    align-items: start;
    gap: 65px;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 48px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
}

.detail-fact {
    min-height: 115px;
    padding: 21px;
    background: var(--white);
}

.detail-fact-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--wine-700);
    font-size: 13px;
}

.detail-fact-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.detail-fact-icon.detail-fact-currency {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
}

.detail-fact span {
    display: block;
    color: var(--ink-500);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-fact strong {
    display: block;
    margin-top: 3px;
    color: var(--wine-900);
    font-size: 14px;
}

.detail-content-block + .detail-content-block {
    margin-top: 45px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.detail-content-block h2 {
    margin: 0 0 16px;
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 600;
}

.detail-description {
    color: var(--ink-700);
    font-size: 16px;
    line-height: 1.85;
    white-space: pre-line;
}

.venue-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.venue-gallery-grid li {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--cream-100);
}

.venue-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.venue-gallery-grid li:hover .venue-gallery-image {
    transform: scale(1.025);
}

.venue-gallery-empty {
    margin: 0;
    padding: 28px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream-50);
    color: var(--ink-500);
    text-align: center;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-700);
    font-size: 13px;
    font-weight: 600;
}

.detail-tag::before {
    content: "✓";
    color: var(--gold-600);
    font-size: 11px;
}

.contact-card {
    position: sticky;
    top: 102px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-card-head {
    padding: 24px 25px 20px;
    background: var(--wine-900);
    color: var(--white);
}

.contact-card-head p {
    margin: 0 0 5px;
    color: #e5c27b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-card-head h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-card-body {
    padding: 24px 25px 26px;
}

.contact-card-body > p {
    margin: 0 0 19px;
    color: var(--ink-500);
    font-size: 13px;
}

.contact-card .button-whatsapp,
.contact-card .button-primary {
    width: 100%;
    border-radius: var(--radius-sm);
}

.contact-card .button-outline {
    width: 100%;
    margin-top: 9px;
    border-radius: var(--radius-sm);
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 19px 0;
    color: #a09799;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-divider::before,
.contact-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.inquiry-section {
    scroll-margin-top: 110px;
    margin-top: 30px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--cream-100);
}

.inquiry-section h2 {
    margin: 0 0 6px;
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 33px;
    font-weight: 600;
}

.inquiry-section > p {
    margin: 0 0 25px;
    color: var(--ink-500);
    font-size: 14px;
}

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

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

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

.field-error {
    display: block;
    margin-top: 5px;
    color: var(--danger);
    font-size: 11px;
    font-weight: 600;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: rgba(165, 42, 63, 0.7);
}

.inquiry-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.inquiry-submit-row p {
    max-width: 380px;
    margin: 0;
    color: var(--ink-500);
    font-size: 11px;
}

.inline-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.inline-alert.success {
    border: 1px solid rgba(23, 99, 70, 0.2);
    background: #edf8f3;
    color: var(--success);
}

.inline-alert.warning {
    border: 1px solid rgba(158, 111, 20, 0.24);
    background: #fff8e7;
    color: #76500b;
}

.inline-alert.error {
    border: 1px solid rgba(165, 42, 63, 0.18);
    background: #fdf0f2;
    color: #812034;
}

/* Compare */
.compare-page {
    padding: 58px 0 105px;
}

.compare-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.compare-intro h1 {
    margin: 0;
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 6vw, 62px);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.compare-intro p:not(.eyebrow) {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--ink-500);
}

.comparison-wrap {
    overflow-x: auto;
    padding-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    width: 27%;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 19%;
    background: var(--cream-100);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table tbody th {
    color: var(--ink-500);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compare-venue-head {
    position: relative;
}

.compare-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 15px;
    border-radius: 12px;
    object-fit: cover;
}

.compare-venue-head h2 {
    margin: 0;
    color: var(--wine-900);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.2;
}

.compare-venue-head p {
    margin: 5px 0 13px;
    color: var(--ink-500);
    font-size: 12px;
}

.compare-remove {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(43, 7, 17, 0.84);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
}

.compare-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.compare-tags span {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--cream-100);
    color: var(--ink-700);
    font-size: 10px;
}

.compare-picker {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--cream-100);
}

.compare-picker h2 {
    margin: 0 0 5px;
    color: var(--wine-900);
    font-family: "Playfair Display", serif;
    font-size: 29px;
}

.compare-picker > p {
    margin: 0 0 22px;
    color: var(--ink-500);
}

.picker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: end;
    gap: 13px;
}

.compare-help {
    margin-top: 22px;
    color: var(--ink-500);
    font-size: 12px;
}

.not-found {
    min-height: 58vh;
    display: grid;
    place-items: center;
    padding: 80px 20px;
    text-align: center;
}

.not-found-inner {
    max-width: 580px;
}

.not-found-code {
    display: block;
    color: var(--gold-500);
    font-family: "Playfair Display", serif;
    font-size: 80px;
    line-height: 1;
}

.not-found h1 {
    margin: 13px 0;
    color: var(--wine-900);
    font-family: "Playfair Display", serif;
    font-size: 40px;
}

.not-found p {
    margin: 0 0 25px;
    color: var(--ink-500);
}

.toast {
    position: fixed;
    z-index: 200;
    top: 130px;
    right: 22px;
    max-width: min(430px, calc(100vw - 44px));
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid rgba(23, 99, 70, 0.22);
    border-radius: 13px;
    background: #f5fff9;
    color: var(--success);
    box-shadow: var(--shadow-md);
    animation: toast-in 0.3s ease both;
}

.toast-error {
    border-color: rgba(165, 42, 63, 0.22);
    background: #fff6f7;
    color: var(--danger);
}

.toast p {
    flex: 1;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.toast-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: currentColor;
    color: white;
    font-size: 11px;
}

.toast button {
    border: 0;
    background: transparent;
    color: currentColor;
    font-size: 22px;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(-12px); }
}

/* Footer */
.site-footer {
    background: var(--wine-950);
    color: rgba(255, 255, 255, 0.73);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.75fr 1fr;
    gap: 60px;
    padding: 70px 0 60px;
}

.brand-light .brand-copy strong {
    color: var(--white);
}

.footer-intro > p {
    max-width: 330px;
    margin: 20px 0 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.75;
}

.footer-email {
    color: #e4c17a;
    font-size: 13px;
    font-weight: 600;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.61);
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #e8c981;
}

.footer-for-venues p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.footer-for-venues .footer-cta {
    margin-top: 6px;
    color: #e8c981;
    font-weight: 700;
}

.footer-bottom {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
    .desktop-nav {
        gap: 22px;
    }

    .nav-list-button {
        display: none;
    }

    .hero-ornament {
        right: -8%;
        opacity: 0.45;
    }

    .hero-content {
        max-width: 840px;
    }

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

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

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

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

    .filter-submit {
        grid-column: 1 / -1;
    }

    .filter-panel .filter-submit {
        grid-column: auto;
    }

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

    .footer-main {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 800px) {
    .announcement-inner {
        justify-content: center;
    }

    .announcement-inner > a {
        display: none;
    }

    .nav-shell {
        min-height: 68px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav {
        inset: 68px 0 0;
    }

    .home-hero {
        min-height: 690px;
    }

    .hero-content {
        padding-block: 70px 82px;
    }

    .hero-ornament {
        display: none;
    }

    .detail-heading-line {
        display: block;
    }

    .detail-actions {
        margin-top: 22px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }

    .owner-cta {
        grid-template-columns: 1fr;
        padding: 48px 40px;
    }

    .owner-cta .button-secondary {
        justify-self: start;
    }

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

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

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

    .picker-grid .filter-submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-copy strong {
        font-size: 21px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-content {
        padding-block: 60px 70px;
    }

    .hero-title {
        font-size: clamp(43px, 13.5vw, 59px);
    }

    .hero-subtitle {
        margin: 20px 0 28px;
        font-size: 16px;
    }

    .hero-search {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .search-field {
        padding: 5px 12px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .event-section,
    .featured-section,
    .cities-section {
        padding: 72px 0;
    }

    .section-topline {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .event-chip {
        min-height: 112px;
        padding: 16px;
    }

    .venue-grid,
    .city-grid {
        grid-template-columns: 1fr;
    }

    .city-card {
        min-height: 160px;
    }

    .owner-cta-section {
        padding-bottom: 72px;
    }

    .owner-cta {
        padding: 38px 26px;
        border-radius: 22px;
    }

    .page-hero {
        padding: 56px 0 95px;
    }

    .listing-section {
        padding-top: 0;
    }

    .filter-panel {
        grid-template-columns: 1fr;
        margin-top: -54px;
        padding: 16px;
    }

    .filter-submit {
        grid-column: auto;
    }

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

    .active-filters {
        justify-content: flex-start;
    }

    .detail-hero-image {
        height: 490px;
    }

    .detail-hero-content {
        padding-bottom: 34px;
    }

    .detail-heading h1 {
        font-size: 43px;
    }

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

    .detail-actions a {
        width: 100%;
    }

    .detail-section {
        padding: 40px 0 78px;
    }

    .detail-facts {
        grid-template-columns: 1fr;
    }

    .detail-fact {
        min-height: auto;
    }

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

    .inquiry-section {
        padding: 24px 18px;
    }

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

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

    .inquiry-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .inquiry-submit-row button {
        width: 100%;
    }

    .compare-page {
        padding-top: 42px;
    }

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

    .compare-picker {
        padding: 22px 17px;
    }

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

    .picker-grid .filter-submit {
        grid-column: auto;
    }

    .compare-tray {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
        padding: 55px 0 45px;
    }

    .footer-for-venues {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }
}

/* About, contact and privacy pages */
.info-hero h1 {
    max-width: 900px;
}

.info-section {
    padding: 88px 0 105px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 80px;
    align-items: start;
}

.about-story-grid h2,
.contact-intro h2,
.contact-owner-note h2 {
    max-width: 570px;
    margin: 4px 0 0;
    color: var(--wine-950);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.about-story-copy {
    padding-top: 4px;
}

.about-story-copy p {
    margin: 0;
    color: var(--ink-700);
    font-size: 18px;
    line-height: 1.85;
}

.about-story-copy p + p {
    margin-top: 19px;
}

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

.value-card {
    min-height: 270px;
    padding: 33px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.value-number {
    color: var(--gold-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
}

.value-card h2 {
    margin: 54px 0 11px;
    color: var(--wine-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
    line-height: 1.1;
}

.value-card p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.7;
}

.project-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 65px;
    padding: 48px 52px;
    border-radius: 26px;
    background: var(--wine-900);
    color: var(--white);
}

.project-banner::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -105px;
    top: -135px;
    border: 1px solid rgba(213, 173, 98, .28);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(213, 173, 98, .035);
}

.project-banner > * {
    position: relative;
    z-index: 1;
}

.project-banner .eyebrow {
    color: #e4c17a;
}

.project-banner h2 {
    margin: 3px 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
}

.project-banner p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.project-banner .button-secondary {
    flex: 0 0 auto;
    border-color: rgba(255, 255, 255, .18);
    background: var(--white);
    color: var(--wine-800);
}

.contact-intro {
    max-width: 780px;
    margin-bottom: 44px;
    text-align: center;
}

.contact-intro h2 {
    max-width: none;
}

.contact-intro > p:last-child {
    max-width: 650px;
    margin: 17px auto 0;
    color: var(--ink-500);
    line-height: 1.75;
}

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

.contact-tile {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 16px;
    background: var(--wine-100, #f7e9ed);
    color: var(--wine-700);
}

.contact-icon svg {
    width: 25px;
    stroke-width: 1.6;
}

.contact-label {
    margin: 0 0 8px !important;
    color: var(--gold-600) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-tile h2 {
    margin: 0 0 12px;
    color: var(--wine-950);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
}

.contact-tile > a,
.contact-tile address {
    display: block;
    min-height: 56px;
    color: var(--wine-700);
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.65;
}

.contact-tile > a:hover {
    color: var(--wine-900);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-tile > p:last-child {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-500);
    font-size: 13px;
    line-height: 1.65;
}

.contact-owner-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 62px;
    padding: 38px 44px;
    border: 1px solid #ead9bb;
    border-radius: 22px;
    background: var(--cream-100);
}

.contact-owner-note h2 {
    font-size: clamp(28px, 3vw, 38px);
}

.contact-owner-note .button-primary {
    flex: 0 0 auto;
}

.privacy-section {
    background: #fffdfa;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
    max-width: 1040px;
}

.privacy-summary {
    position: sticky;
    top: 115px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream-100);
    color: var(--ink-500);
    font-size: 13px;
}

.privacy-updated {
    margin: 0 0 23px;
    padding-bottom: 21px;
    border-bottom: 1px solid #e7d8c6;
    line-height: 1.65;
}

.privacy-summary > p:not(.privacy-updated) {
    margin: 0 0 8px;
}

.privacy-summary a {
    display: block;
    color: var(--wine-700);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.privacy-summary a + a {
    margin-top: 5px;
}

.privacy-copy {
    padding: 5px 0;
}

.privacy-copy section {
    scroll-margin-top: 110px;
}

.privacy-copy section + section {
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.privacy-copy h2 {
    margin: 0 0 14px;
    color: var(--wine-950);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    line-height: 1.2;
}

.privacy-copy p,
.privacy-copy li {
    color: var(--ink-700);
    line-height: 1.82;
}

.privacy-copy p {
    margin: 0;
}

.privacy-copy p + p {
    margin-top: 14px;
}

.privacy-copy ul {
    display: grid;
    gap: 9px;
    margin: 15px 0;
    padding-left: 22px;
}

.privacy-contact {
    padding: 30px !important;
    border: 1px solid #ead9bb !important;
    border-radius: 18px;
    background: var(--cream-100);
}

.privacy-contact address {
    margin: 0 0 13px;
    color: var(--ink-700);
    font-style: normal;
    line-height: 1.7;
}

.privacy-contact a {
    color: var(--wine-700);
    font-weight: 700;
}

@media (max-width: 800px) {
    .about-story-grid,
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .value-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .value-card h2 {
        margin-top: 30px;
    }

    .project-banner,
    .contact-owner-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .privacy-summary {
        position: static;
    }
}

@media (max-width: 620px) {
    .info-section {
        padding: 66px 0 76px;
    }

    .about-story-copy p {
        font-size: 16px;
    }

    .value-grid {
        margin-top: 45px;
    }

    .value-card,
    .contact-tile {
        padding: 27px 24px;
    }

    .project-banner,
    .contact-owner-note {
        margin-top: 44px;
        padding: 32px 25px;
    }

    .project-banner .button-secondary,
    .contact-owner-note .button-primary {
        width: 100%;
    }

    .privacy-copy section + section {
        margin-top: 32px;
        padding-top: 32px;
    }

    .privacy-contact {
        padding: 24px !important;
    }
}

/* Venue owner listing request */
.list-venue-hero {
    padding-bottom: 122px;
}

.list-venue-hero h1 {
    max-width: 820px;
}

.listing-request-section {
    position: relative;
    z-index: 2;
    margin-top: -70px;
    padding-bottom: 105px;
}

.listing-request-layout {
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
    gap: 52px;
    align-items: center;
}

.listing-request-benefits {
    padding: 30px 0;
}

.listing-request-benefits h2,
.listing-form-heading h2 {
    margin: 9px 0 17px;
    color: var(--wine-950);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3.2vw, 43px);
    line-height: 1.12;
}

.listing-request-benefits > p:not(.eyebrow):not(.listing-help) {
    max-width: 560px;
    color: var(--ink-500);
    line-height: 1.8;
}

.listing-request-benefits ul {
    display: grid;
    gap: 15px;
    margin: 29px 0;
    padding: 0;
    list-style: none;
}

.listing-request-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.55;
}

.listing-request-benefits li span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wine-100);
    color: var(--wine-700);
    font-size: 13px;
}

.listing-help {
    color: var(--ink-500);
    font-size: 14px;
}

.listing-help a {
    color: var(--wine-700);
    font-weight: 700;
}

.listing-request-card {
    padding: 43px;
    border: 1px solid rgba(104, 21, 45, .12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(59, 10, 25, .13);
}

.listing-form-heading {
    margin-bottom: 28px;
}

.listing-form-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(29px, 3vw, 38px);
}

.listing-form-heading > p:last-child {
    color: var(--ink-500);
}

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

.listing-request-form .form-field:first-child,
.listing-request-form .form-field:last-of-type,
.listing-submit,
.listing-privacy {
    grid-column: 1 / -1;
}

.listing-request-form label span {
    color: var(--wine-600);
}

.listing-submit {
    width: 100%;
    margin-top: 4px;
    border: 0;
    cursor: pointer;
}

.listing-privacy {
    margin: -8px 0 0;
    color: var(--ink-500);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.field-error {
    margin-top: 7px;
    color: #b42318;
    font-size: 12px;
    font-weight: 600;
}

.listing-error-summary,
.listing-success {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
}

.listing-error-summary {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.listing-success {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #065f46;
}

.listing-success > span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #059669;
    color: #fff;
}

.listing-success strong,
.listing-success p {
    display: block;
}

.listing-success p {
    margin-top: 2px;
    color: #047857;
}

@media (max-width: 900px) {
    .listing-request-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .listing-request-benefits {
        padding-bottom: 0;
    }
}

@media (max-width: 620px) {
    .list-venue-hero {
        padding-bottom: 104px;
    }

    .listing-request-section {
        margin-top: -58px;
        padding-bottom: 72px;
    }

    .listing-request-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

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

    .listing-request-form .form-field:first-child,
    .listing-request-form .form-field:last-of-type,
    .listing-submit,
    .listing-privacy {
        grid-column: auto;
    }
}

@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;
    }
}
