:root {
  --black: #0b0908;
  --charcoal: #171310;
  --brown: #2a1d16;
  --gold: #c89b3c;
  --gold-light: #e4c477;
  --champagne: #ead9b7;
  --ivory: #f8f4ec;
  --white: #fffdf8;
  --sand: #d8c5a7;
  --olive: #46503b;
  --burgundy: #5c1f26;
  --text: #2d251f;
  --muted: #6c6158;
  --shadow: 0 22px 60px rgba(20, 12, 7, .14);
  --radius: 18px;
  --container: 1240px;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--text); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 98px 0; }
.section--ivory { background: var(--ivory); }
.section--cream { background: #fbf7ef; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px; transform: translateY(-150%); background: var(--gold); color: var(--black); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 8px; color: #9b6f22; font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: var(--gold-light); }
.eyebrow--gold { color: var(--gold); }
h1, h2, h3 { margin-top: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.08; }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 4rem); }
p { margin-top: 0; }
.ornament { color: var(--gold); letter-spacing: .35em; font-size: .9rem; margin: 4px 0 18px; }
.ornament--gold { color: var(--gold-light); }
.small-note { color: var(--muted); font-size: .83rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 22px; border: 1px solid transparent; border-radius: 4px; font-size: .9rem; font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--large { min-height: 52px; padding-inline: 28px; }
.btn--gold { color: #21170e; background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 12px 30px rgba(200, 155, 60, .2); }
.btn--gold:hover { background: #f0d18e; border-color: #f0d18e; }
.btn--dark { color: var(--white); background: var(--black); border-color: var(--black); }
.btn--dark:hover { background: var(--brown); }
.btn--outline-light { color: var(--white); background: rgba(0,0,0,.16); border-color: rgba(255,255,255,.65); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--outline-dark { color: var(--black); background: transparent; border-color: #806b55; }
.btn--outline-dark:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.topbar { position: relative; z-index: 1010; color: #e9dfd1; background: #070605; border-bottom: 1px solid rgba(200,155,60,.35); font-size: .78rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar__location { display: flex; align-items: center; gap: 7px; min-width: 0; }
.topbar__location svg { width: 15px; color: var(--gold-light); flex: 0 0 auto; }
.topbar__links { display: flex; align-items: center; gap: 18px; }
.topbar__links a:not(.topbar__cta):hover { color: var(--gold-light); }
.topbar__cta { margin-left: 3px; padding: 6px 16px; color: var(--black); background: var(--gold-light); border-radius: 3px; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 1000; color: var(--white); background: rgba(9, 7, 6, .82); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(16px); transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(8,6,5,.97); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.header__inner { min-height: var(--header-height); display: grid; grid-template-columns: 270px 1fr auto; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; width: 260px; height: 78px; overflow: visible; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); }
.main-nav { justify-self: end; display: flex; align-items: center; gap: clamp(15px, 1.5vw, 26px); }
.main-nav a { position: relative; padding: 30px 0 26px; color: #efe8df; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header__cta { margin-left: 4px; }
.menu-toggle, .mobile-whatsapp { display: none; }

.hero { position: relative; min-height: clamp(620px, calc(100svh - 116px), 900px); display: grid; align-items: center; color: var(--white); isolation: isolate; overflow: hidden; }
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; }
.hero__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4,3,3,.82) 0%, rgba(4,3,3,.62) 42%, rgba(4,3,3,.2) 72%, rgba(4,3,3,.08) 100%), linear-gradient(0deg, rgba(5,4,3,.62) 0%, transparent 50%); }
.hero__content { position: relative; z-index: 2; padding: 90px 0 60px; }
.botanical { width: 250px; height: 28px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--gold-light); }
.botanical span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, currentColor); }
.botanical span:last-child { transform: scaleX(-1); }
.botanical i { width: 14px; height: 14px; border-radius: 100% 0 100% 0; background: currentColor; transform: rotate(45deg); }
.hero h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(3rem, 5.7vw, 6.1rem); text-wrap: balance; text-shadow: 0 5px 30px rgba(0,0,0,.45); }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero__lead { max-width: 650px; margin-bottom: 28px; color: #f2ece5; font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 26px; color: #e9e2da; font-size: .86rem; }
.hero__meta span { display: flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 19px; color: var(--gold-light); }

.trust-strip { color: var(--white); background: linear-gradient(90deg, #0b0908, #171310); border-top: 1px solid rgba(228,196,119,.35); border-bottom: 1px solid rgba(228,196,119,.2); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { min-height: 130px; display: flex; align-items: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid article:last-child { border-right: 0; }
.trust-grid svg { width: 42px; height: 42px; color: var(--gold); flex: 0 0 auto; }
.trust-grid h2 { margin: 0 0 4px; font-size: 1.2rem; }
.trust-grid p { margin: 0; color: #cfc5bb; font-size: .8rem; line-height: 1.45; }

.center-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.center-mosaic { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: 170px 120px 150px; gap: 7px; min-height: 460px; }
.center-mosaic figure { margin: 0; overflow: hidden; background: #ddd2c4; }
.center-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.center-mosaic figure:hover img { transform: scale(1.035); }
.mosaic__large { grid-row: 1 / 4; }
.center-mosaic figure:nth-child(2) { grid-column: 2; grid-row: 1 / 2; }
.center-mosaic figure:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.center-mosaic figure:nth-child(4) { grid-column: 2; grid-row: 2 / 4; }
.center-mosaic figure:nth-child(5) { grid-column: 3; grid-row: 3; }
.center-copy h2 { margin-bottom: 7px; }
.center-copy > p:not(.eyebrow) { max-width: 560px; }
.feature-mini-grid { margin: 28px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
.feature-mini-grid div { display: grid; justify-items: center; gap: 8px; text-align: center; font-size: .72rem; font-weight: 700; line-height: 1.35; }
.feature-mini-grid svg { width: 30px; height: 30px; color: var(--gold); }

.events-section { color: var(--white); background: radial-gradient(circle at 10% 0%, rgba(200,155,60,.08), transparent 28%), #0c0a09; }
.events-layout { display: grid; grid-template-columns: 220px 1fr; gap: 38px; }
.events-heading { align-self: center; }
.events-heading h2 { font-size: clamp(2.4rem, 4vw, 4.1rem); }
.events-heading h2 span { display: block; }
.event-cards { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; }
.event-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(200,155,60,.65); isolation: isolate; }
.event-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(5,4,3,.95) 0%, rgba(5,4,3,.2) 65%, transparent 100%); }
.event-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.event-card:hover img { transform: scale(1.055); }
.event-card > div { position: absolute; inset: auto 0 0; padding: 22px 14px; text-align: center; }
.event-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.event-card p { margin-bottom: 12px; color: #ddd3c8; font-size: .7rem; line-height: 1.45; }
.text-link { padding: 0; color: var(--gold-light); background: none; border: 0; font-size: .72rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.includes-layout { display: grid; grid-template-columns: 250px 1fr; gap: 45px; }
.section-heading--side { align-self: start; position: sticky; top: 110px; }
.section-heading--side h2 { margin-bottom: 4px; }
.section-heading--side p { font-size: .9rem; }
.include-chapters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.include-chapter { overflow: hidden; background: var(--white); box-shadow: 0 12px 35px rgba(35,22,13,.08); }
.include-chapter img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.include-chapter:nth-child(3) img { object-position: center 40%; }
.include-chapter > div { padding: 24px; }
.include-chapter h3 { margin-bottom: 14px; font-size: 1.35rem; }
ul { padding-left: 1.2em; }
.include-chapter ul { margin: 0; color: #574e47; font-size: .82rem; }

.proposal-section { position: relative; padding: 28px 0; background: linear-gradient(90deg, #efe6d6, #faf6ee, #efe6d6); border-block: 1px solid #d9c8ac; }
.proposal-shell { display: grid; grid-template-columns: 150px 1fr; min-height: 210px; border: 1px solid #cdb996; background: rgba(255,253,248,.78); box-shadow: var(--shadow); }
.proposal-tabs { display: grid; align-content: start; border-right: 1px solid #cdb996; }
.proposal-tabs button { min-height: 70px; padding: 15px; border: 0; border-bottom: 1px solid #cdb996; background: transparent; font-family: Georgia, serif; cursor: pointer; }
.proposal-tabs button[aria-selected="true"] { color: var(--white); background: var(--gold); }
.proposal-panel { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: stretch; min-width: 0; }
/* El atributo hidden debe prevalecer sobre el display:grid del panel. */
.proposal-panel[hidden] { display: none !important; }
.proposal-facts { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: center; gap: 10px; min-width: 0; padding: 26px; }
.proposal-facts div { display: grid; justify-items: center; gap: 2px; text-align: center; }
.fact-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 6px; color: #84601f; border: 1px solid #b89b68; border-radius: 50%; font-size: .78rem; font-weight: 800; }
.proposal-facts strong { font-size: .72rem; line-height: 1.25; }
.proposal-facts small { color: var(--muted); font-size: .65rem; line-height: 1.35; }
.proposal-copy { display: grid; align-content: center; justify-items: center; min-width: 0; padding: 30px; text-align: center; border-left: 1px solid #d7c8af; }
.proposal-copy h2 { margin-bottom: 10px; font-size: 1.45rem; }
.proposal-copy p { max-width: 440px; margin-bottom: 18px; color: var(--muted); font-size: .8rem; }

.gastronomy { background: var(--white); }
.gastronomy__header { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 28px; }
.gastronomy__header h2 { margin-bottom: 2px; }
.gastronomy__header > p { max-width: 520px; color: var(--muted); }
.gastronomy-tabs { display: flex; overflow-x: auto; scrollbar-width: thin; border-bottom: 1px solid #d8c5a7; }
.food-tab { flex: 1 0 auto; min-width: 130px; padding: 14px 16px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--muted); font-size: .8rem; font-weight: 800; cursor: pointer; }
.food-tab.is-active { color: #7b571d; border-bottom-color: var(--gold); }
.food-panels { margin-top: 28px; }
.food-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 470px; overflow: hidden; background: #f9f4eb; box-shadow: var(--shadow); }
.food-panel img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.food-panel > div { padding: clamp(34px, 5vw, 72px); align-self: center; }
.food-panel h3 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 3rem); }
.food-columns, .two-col-list { columns: 2; column-gap: 40px; }
.food-panel ul { color: #51483f; }

.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.gallery-heading h2 { margin-bottom: 0; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px auto 22px; }
.gallery-filter { padding: 8px 16px; border: 1px solid #c7b89e; border-radius: 999px; background: transparent; color: #5a5047; font-size: .76rem; cursor: pointer; }
.gallery-filter.is-active, .gallery-filter:hover { color: var(--white); background: var(--gold); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 8px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #cfc4b6; cursor: zoom-in; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.82); }
.gallery-item.is-hidden { display: none; }

.journey { padding: 70px 0; background: #f1e9dc; border-top: 1px solid #decfb9; }
.journey__inner { display: grid; grid-template-columns: 230px 1fr; gap: 45px; }
.journey__heading h2 { margin-bottom: 2px; }
.journey__steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.journey__steps::before { content: ''; position: absolute; top: 22px; left: 10%; right: 10%; border-top: 1px dashed #a98c59; }
.journey__steps li { position: relative; text-align: center; }
.journey__steps span { position: relative; z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; margin: 0 auto 12px; color: var(--white); background: var(--gold); border-radius: 50%; font-family: Georgia, serif; font-size: 1.2rem; }
.journey__steps h3 { margin-bottom: 7px; font-size: 1rem; }
.journey__steps p { color: var(--muted); font-size: .72rem; line-height: 1.45; }

.contact-zone { color: var(--white); background: radial-gradient(circle at 80% 10%, rgba(200,155,60,.13), transparent 25%), #0d0b0a; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; }
.contact-zone h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.faq-list { border-top: 1px solid rgba(255,255,255,.15); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.15); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border: 0; background: none; color: #f7f1e9; text-align: left; font-size: .85rem; cursor: pointer; }
.faq-item button span { color: var(--gold-light); font-size: 1.3rem; transition: transform .25s ease; }
.faq-item button[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item > div p { min-height: 0; overflow: hidden; margin: 0; color: #c9bfb5; font-size: .8rem; }
.faq-item.is-open > div { grid-template-rows: 1fr; }
.faq-item.is-open > div p { padding: 0 0 16px; }
.location-block address { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; font-style: normal; }
.location-block address p { margin: 0; color: #d4cbc2; font-size: .82rem; }
.location-block address strong { color: var(--gold-light); }
.location-block address a:hover { color: var(--gold-light); }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.map-frame { overflow: hidden; height: 260px; border: 1px solid rgba(228,196,119,.5); background: #211a15; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.quote-section { background: var(--ivory); }
.quote-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.quote-copy { position: sticky; top: 110px; }
.quote-copy ul { color: var(--muted); }
.quote-form { padding: clamp(25px, 4vw, 50px); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 6px; color: #473e36; font-size: .78rem; font-weight: 700; }
.form-full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: #2d251f; background: #fffefa; border: 1px solid #cbbba4; border-radius: 4px; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: 2px solid rgba(200,155,60,.18); }
.form-status { min-height: 24px; margin: 16px 0 8px; color: var(--burgundy); font-size: .82rem; }

.final-cta { position: relative; min-height: 360px; display: grid; align-items: center; color: var(--white); overflow: hidden; isolation: isolate; }
.final-cta__media, .final-cta__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta__media img { object-fit: cover; object-position: center 65%; }
.final-cta__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,4,3,.9), rgba(5,4,3,.56), rgba(5,4,3,.72)); }
.final-cta__content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 60px 0; }
.final-cta h2 { max-width: 700px; margin-bottom: 10px; }
.final-cta p { color: #e6ddd4; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }

.site-footer { padding: 52px 0 18px; color: #ddd4cb; background: #080706; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 55px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { width: 230px; max-height: 100px; object-fit: contain; object-position: left center; margin-bottom: 12px; }
.footer-brand p { max-width: 300px; color: #9f958b; font-size: .78rem; }
.footer-grid h2 { margin-bottom: 14px; color: var(--gold-light); font-family: Arial, sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a, .footer-grid span { color: #a9a097; font-size: .77rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 25px; align-items: center; padding-top: 18px; color: #80786f; font-size: .68rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 16px; }
.footer-bottom a:hover { color: var(--gold-light); }

.whatsapp-float, .back-to-top { position: fixed; z-index: 950; right: 20px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,.24); }
.whatsapp-float { bottom: 22px; color: white; background: #25d366; }
.whatsapp-float svg { width: 27px; fill: currentColor; stroke: none; }
.back-to-top { bottom: 84px; border: 1px solid rgba(255,255,255,.35); color: var(--white); background: rgba(11,9,8,.88); opacity: 0; pointer-events: none; cursor: pointer; transition: opacity .25s ease, transform .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }

.lightbox { width: min(96vw, 1200px); max-width: none; height: min(92vh, 850px); max-height: none; padding: 0; overflow: hidden; border: 1px solid rgba(228,196,119,.45); background: rgba(8,6,5,.98); color: var(--white); }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(4px); }
.lightbox figure { width: 100%; height: 100%; display: grid; place-items: center; margin: 0; padding: 40px 60px 55px; }
.lightbox figure img { max-width: 100%; max-height: calc(100% - 30px); object-fit: contain; }
.lightbox figcaption { margin-top: 10px; color: #d8cfc6; font-size: .82rem; }
.lightbox button { position: absolute; z-index: 3; display: grid; place-items: center; border: 0; color: var(--white); background: rgba(0,0,0,.55); cursor: pointer; }
.lightbox__close { top: 10px; right: 10px; width: 42px; height: 42px; border-radius: 50%; font-size: 1.8rem; }
.lightbox__prev, .lightbox__next { top: 50%; width: 44px; height: 70px; transform: translateY(-50%); font-size: 2.2rem; }
.lightbox__prev { left: 8px; }
.lightbox__next { right: 8px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; background: var(--ivory); }
.legal-header { padding: 24px 0; background: var(--black); }
.legal-header img { width: 220px; height: 80px; object-fit: contain; }
.legal-content { max-width: 850px; padding: 70px 20px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.legal-content h2 { margin-top: 35px; font-size: 1.6rem; }
.legal-content a { color: #8e6420; text-decoration: underline; }

@media (max-width: 1150px) {
  .header__inner { grid-template-columns: 230px 1fr auto; gap: 14px; }
  .brand { width: 225px; height: 68px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .74rem; }
  .event-cards { grid-template-columns: repeat(3, 1fr); }
  .event-card { min-height: 390px; }
  .include-chapters { grid-template-columns: 1fr; }
  .include-chapter { display: grid; grid-template-columns: .9fr 1.1fr; }
  .include-chapter img { height: 100%; aspect-ratio: auto; }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .topbar__location span { max-width: 270px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar__links a:not(.topbar__cta) { display: none; }
  .header__inner { grid-template-columns: 1fr auto auto; }
  .header__cta { display: none; }
  .brand { width: 220px; height: 58px; }
  .menu-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 22px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-whatsapp { display: grid; place-items: center; width: 44px; height: 44px; color: white; background: #25d366; border-radius: 4px; }
  .mobile-whatsapp svg { width: 24px; fill: currentColor; stroke: none; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; z-index: 999; display: grid; align-content: start; gap: 0; max-height: calc(100vh - var(--header-height)); overflow-y: auto; padding: 18px 20px 28px; background: rgba(9,7,6,.99); border-top: 1px solid rgba(255,255,255,.1); transform: translateY(-115%); opacity: 0; pointer-events: none; transition: transform .3s ease, opacity .3s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .9rem; }
  .main-nav a::after { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .center-intro, .includes-layout, .journey__inner, .contact-grid, .quote-grid { grid-template-columns: 1fr; }
  .center-copy { order: -1; }
  .events-layout { grid-template-columns: 1fr; }
  .events-heading { text-align: center; }
  .section-heading--side, .quote-copy { position: static; }
  .proposal-panel { grid-template-columns: 1fr; }
  .proposal-copy { border-left: 0; border-top: 1px solid #d7c8af; }
  .food-panel { grid-template-columns: 1fr; }
  .food-panel img { min-height: 340px; max-height: 500px; }
  .journey__steps { grid-template-columns: repeat(5, minmax(145px, 1fr)); overflow-x: auto; padding-bottom: 10px; }
  .journey__steps::before { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .topbar__inner { min-height: 36px; }
  .topbar__location { font-size: .67rem; }
  .topbar__cta { padding: 5px 11px; font-size: .67rem; }
  .header__inner { gap: 8px; }
  .brand { width: 178px; height: 54px; }
  .menu-toggle, .mobile-whatsapp { width: 40px; height: 40px; }
  .hero { min-height: calc(100svh - 106px); align-items: end; }
  .hero__media img { object-position: center top; }
  .hero__shade { background: linear-gradient(0deg, rgba(5,4,3,.93) 0%, rgba(5,4,3,.7) 45%, rgba(5,4,3,.18) 78%, rgba(5,4,3,.05) 100%); }
  .hero__content { padding: 180px 0 42px; }
  .botanical { width: 180px; margin-bottom: 8px; }
  .hero h1 { max-width: 430px; font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .hero__lead { font-size: .95rem; line-height: 1.5; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { min-width: 0; padding-inline: 12px; font-size: .78rem; }
  .hero__meta { margin-top: 24px; display: grid; gap: 9px; font-size: .74rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article, .trust-grid article:nth-child(2) { min-height: auto; padding: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid article:last-child { border-bottom: 0; }
  .trust-grid svg { width: 34px; height: 34px; }
  .center-mosaic { grid-template-columns: 1.2fr 1fr; grid-template-rows: 160px 130px 140px; min-height: 430px; }
  .mosaic__large { grid-row: 1 / 3; }
  .center-mosaic figure:nth-child(2) { grid-column: 2; grid-row: 1; }
  .center-mosaic figure:nth-child(3) { display: none; }
  .center-mosaic figure:nth-child(4) { grid-column: 2; grid-row: 2; }
  .center-mosaic figure:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
  .feature-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .event-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .event-card { min-height: 320px; }
  .event-card > div { padding: 18px 10px; }
  .event-card h3 { font-size: 1rem; }
  .event-card p { display: none; }
  .include-chapter { grid-template-columns: 1fr; }
  .include-chapter img { height: 220px; }
  .proposal-shell { grid-template-columns: 1fr; }
  .proposal-tabs { grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid #cdb996; }
  .proposal-tabs button { border-bottom: 0; border-right: 1px solid #cdb996; }
  .proposal-facts { grid-template-columns: repeat(5, minmax(90px, 1fr)); overflow-x: auto; padding: 20px 12px; }
  .proposal-copy { padding: 26px 18px; }
  .gastronomy__header, .gallery-heading, .final-cta__content { display: grid; }
  .food-panel img { min-height: 260px; max-height: 360px; }
  .food-panel > div { padding: 28px 22px; }
  .food-columns, .two-col-list { columns: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item--wide { grid-column: span 2; }
  .journey__steps { grid-template-columns: repeat(5, 160px); }
  .location-block address { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .final-cta__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .final-cta__actions .btn { padding-inline: 12px; font-size: .78rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .back-to-top { right: 14px; bottom: 74px; width: 44px; height: 44px; }
  .lightbox figure { padding: 50px 42px 50px; }
}

@media (max-width: 430px) {
  .brand { width: 158px; height: 48px; }
  .brand { width: 132px; }
  .hero__actions { grid-template-columns: 1fr; }
  .hero__content { padding-top: 210px; }
  .hero h1 { font-size: 2.8rem; }
  .event-cards { grid-template-columns: 1fr 1fr; }
  .event-card { min-height: 285px; }
  .center-mosaic { min-height: 370px; grid-template-rows: 140px 110px 120px; }
  .feature-mini-grid { gap: 16px 8px; }
  .gallery-grid { grid-auto-rows: 135px; }
  .final-cta__actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

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

/* Página: Centro de eventos en Coronel */
.venue-page-hero { position: relative; min-height: 640px; display: grid; align-items: end; overflow: hidden; color: var(--white); isolation: isolate; }
.venue-page-hero__media, .venue-page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.venue-page-hero__media img { object-fit: cover; object-position: center; }
.venue-page-hero__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,4,3,.86) 0%, rgba(5,4,3,.6) 48%, rgba(5,4,3,.18) 76%), linear-gradient(0deg, rgba(5,4,3,.76), transparent 55%); }
.venue-page-hero__content { position: relative; z-index: 2; padding: 110px 0 76px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 34px; color: #e5dcd2; font-size: .76rem; }
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 4px; }
.venue-page-hero h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(3.2rem, 6vw, 6.7rem); text-shadow: 0 6px 32px rgba(0,0,0,.5); }
.venue-page-hero h1 em { color: var(--gold-light); font-style: normal; }
.venue-page-hero__content > p:not(.eyebrow) { max-width: 680px; margin-bottom: 28px; color: #f0e8df; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.venue-page-hero__actions, .venue-intro__actions, .venue-visit__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.venue-facts { color: var(--white); background: linear-gradient(90deg, #0a0807, #1a1410); border-block: 1px solid rgba(228,196,119,.25); }
.venue-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.venue-facts article { min-height: 124px; display: flex; align-items: center; gap: 17px; padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.venue-facts article:last-child { border-right: 0; }
.venue-facts article > span { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(228,196,119,.7); border-radius: 50%; color: var(--gold-light); font-family: Georgia, serif; font-size: .8rem; }
.venue-facts strong { display: block; margin-bottom: 3px; font-family: Georgia, serif; font-size: 1.05rem; font-weight: 500; }
.venue-facts p { margin: 0; color: #cfc5bb; font-size: .75rem; }

.venue-intro__grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.venue-intro__copy > p:not(.eyebrow) { max-width: 570px; color: #564c43; }
.venue-intro__mosaic { min-height: 540px; display: grid; grid-template-columns: 1.4fr .8fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.venue-intro__mosaic figure { margin: 0; overflow: hidden; background: #d9cec0; }
.venue-intro__mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.venue-intro__mosaic figure:hover img { transform: scale(1.035); }
.venue-intro__main { grid-row: 1 / 3; }

.venue-spaces { color: var(--white); background: radial-gradient(circle at 12% 0%, rgba(200,155,60,.1), transparent 30%), #0b0908; }
.venue-section-heading { display: grid; grid-template-columns: 1.05fr .75fr; align-items: end; gap: 50px; margin-bottom: 34px; }
.venue-section-heading h2 { margin-bottom: 0; }
.venue-section-heading > p { max-width: 500px; margin-bottom: 5px; color: #cfc5bb; }
.venue-spaces__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 8px; }
.venue-space-card { position: relative; overflow: hidden; isolation: isolate; border: 1px solid rgba(200,155,60,.34); }
.venue-space-card--large { grid-column: span 2; grid-row: span 2; }
.venue-space-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.15) 66%, transparent); }
.venue-space-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.venue-space-card:hover img { transform: scale(1.045); }
.venue-space-card > div { position: absolute; inset: auto 0 0; padding: 25px; }
.venue-space-card p { margin: 0 0 5px; color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.venue-space-card h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2.4rem); }
.venue-space-card span { display: block; max-width: 520px; margin-top: 8px; color: #d9cfc5; font-size: .8rem; }
.venue-photo-note { max-width: 760px; margin: 20px 0 0; color: #9f958b; font-size: .72rem; }

.venue-integral { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; color: var(--white); background: #17110e; }
.venue-integral__image { min-height: 620px; overflow: hidden; }
.venue-integral__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.venue-integral__content { display: grid; align-content: center; padding: clamp(55px, 7vw, 110px); background: radial-gradient(circle at 85% 5%, rgba(200,155,60,.17), transparent 28%); }
.venue-integral__content h2 { max-width: 720px; }
.venue-integral__content > p:not(.eyebrow):not(.venue-integral__note) { max-width: 650px; color: #d0c6bc; }
.venue-integral__list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 34px; margin: 30px 0; }
.venue-integral__list > div { display: grid; grid-template-columns: 46px 1fr; gap: 14px; }
.venue-integral__list span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(228,196,119,.55); border-radius: 50%; font-family: Georgia, serif; font-size: .75rem; }
.venue-integral__list p { margin: 0; color: #bfb5ab; font-size: .8rem; }
.venue-integral__list strong { display: block; margin-bottom: 4px; color: var(--white); font-family: Georgia, serif; font-size: 1rem; font-weight: 500; }
.venue-integral__note { color: #a99f96; font-size: .74rem; }
.venue-integral__content .btn { justify-self: start; }

.venue-visit__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.venue-visit__copy > p:not(.eyebrow) { max-width: 530px; color: #5b5148; }
.venue-visit address { margin: 28px 0; font-style: normal; }
.venue-visit address p { margin-bottom: 14px; color: #554b43; }
.venue-visit address strong { color: #8c6423; }
.venue-visit address a:hover { color: #8c6423; text-decoration: underline; }
.venue-visit__map { overflow: hidden; min-height: 500px; border: 1px solid #cdb996; box-shadow: var(--shadow); background: #d8cdbf; }
.venue-visit__map iframe { width: 100%; height: 500px; display: block; border: 0; }

.venue-faq { color: var(--white); background: radial-gradient(circle at 8% 15%, rgba(200,155,60,.12), transparent 28%), #0d0b0a; }
.venue-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 7vw, 95px); }
.venue-faq__heading { align-self: start; position: sticky; top: 115px; }
.venue-faq__heading > p:not(.eyebrow) { color: #c9bfb5; }
.venue-faq__heading .btn { margin-top: 12px; }
.venue-final-cta .final-cta__shade { background: linear-gradient(90deg, rgba(5,4,3,.92), rgba(5,4,3,.64) 55%, rgba(5,4,3,.22)); }

@media (max-width: 980px) {
  .venue-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .venue-facts article:nth-child(2) { border-right: 0; }
  .venue-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .venue-intro__grid, .venue-visit__grid, .venue-faq__grid { grid-template-columns: 1fr; }
  .venue-intro__copy { order: -1; }
  .venue-section-heading { grid-template-columns: 1fr; gap: 12px; }
  .venue-spaces__grid { grid-template-columns: repeat(2, 1fr); }
  .venue-space-card--large { grid-column: span 2; }
  .venue-integral { grid-template-columns: 1fr; }
  .venue-integral__image { min-height: 520px; max-height: 720px; }
  .venue-integral__image img { object-position: center 42%; }
  .venue-faq__heading { position: static; }
}

@media (max-width: 700px) {
  .venue-page-hero { min-height: calc(100svh - 106px); }
  .venue-page-hero__media img { object-position: center top; }
  .venue-page-hero__shade { background: linear-gradient(0deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.72) 47%, rgba(5,4,3,.18) 78%, rgba(5,4,3,.06) 100%); }
  .venue-page-hero__content { padding: 220px 0 46px; }
  .breadcrumbs { margin-bottom: 20px; }
  .venue-page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .venue-page-hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .venue-page-hero__actions .btn { min-width: 0; padding-inline: 12px; font-size: .78rem; }
  .venue-facts__grid { grid-template-columns: 1fr; }
  .venue-facts article, .venue-facts article:nth-child(2) { min-height: auto; padding: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .venue-facts article:last-child { border-bottom: 0; }
  .venue-intro__mosaic { min-height: 420px; grid-template-columns: 1.25fr .75fr; }
  .venue-spaces__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 225px; }
  .venue-space-card--large { grid-column: span 2; grid-row: span 1; }
  .venue-space-card > div { padding: 18px; }
  .venue-space-card span { display: none; }
  .venue-integral__image { min-height: 460px; }
  .venue-integral__content { padding: 65px 20px; }
  .venue-integral__list { grid-template-columns: 1fr; }
  .venue-visit__map, .venue-visit__map iframe { min-height: 360px; height: 360px; }
}

@media (max-width: 430px) {
  .venue-page-hero__actions { grid-template-columns: 1fr; }
  .venue-intro__mosaic { min-height: 360px; }
  .venue-spaces__grid { grid-auto-rows: 195px; }
  .venue-space-card h3 { font-size: 1.2rem; }
  .venue-space-card p { font-size: .58rem; letter-spacing: .08em; }
  .venue-integral__image { min-height: 400px; }
  .venue-visit__actions { display: grid; grid-template-columns: 1fr; }
}

/* Página: Matrimonios en Coronel */
.wedding-hero .venue-page-hero__shade { background: linear-gradient(90deg, rgba(5,4,3,.9) 0%, rgba(5,4,3,.66) 48%, rgba(5,4,3,.2) 78%), linear-gradient(0deg, rgba(5,4,3,.75), transparent 55%); }
.wedding-facts article > span { color: var(--gold-light); }

.wedding-intro__grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.wedding-intro__copy > p:not(.eyebrow) { max-width: 590px; color: #564c43; }
.wedding-intro__visual { position: relative; min-height: 610px; display: grid; grid-template-columns: 1.35fr .72fr; grid-template-rows: 1fr 1fr; gap: 9px; }
.wedding-intro__visual figure { margin: 0; overflow: hidden; background: #d8cdbf; }
.wedding-intro__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wedding-intro__visual figure:hover img { transform: scale(1.035); }
.wedding-intro__main { grid-row: 1 / 3; }
.wedding-intro__seal { position: absolute; right: 5%; bottom: 6%; z-index: 2; width: 150px; height: 150px; display: grid; place-content: center; gap: 4px; padding: 18px; text-align: center; border-radius: 50%; color: var(--white); background: rgba(16,12,9,.92); border: 1px solid var(--gold-light); box-shadow: 0 18px 40px rgba(0,0,0,.24); }
.wedding-intro__seal::before, .wedding-intro__seal::after { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(228,196,119,.35); border-radius: 50%; }
.wedding-intro__seal strong { position: relative; z-index: 1; font-family: Georgia, serif; font-size: 1.05rem; font-weight: 500; }
.wedding-intro__seal span { position: relative; z-index: 1; color: var(--gold-light); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.wedding-ceremony { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; color: var(--white); background: #0c0908; }
.wedding-ceremony__image { min-height: 650px; overflow: hidden; }
.wedding-ceremony__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.wedding-ceremony__content { display: grid; align-content: center; padding: clamp(58px, 7vw, 112px); background: radial-gradient(circle at 90% 5%, rgba(200,155,60,.16), transparent 30%); }
.wedding-ceremony__content h2 { max-width: 700px; }
.wedding-ceremony__content > p:not(.eyebrow):not(.wedding-note) { max-width: 610px; color: #d1c6bb; }
.wedding-detail-list { display: grid; gap: 22px; margin: 34px 0 24px; }
.wedding-detail-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.wedding-detail-list span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(228,196,119,.58); border-radius: 50%; color: var(--gold-light); font-family: Georgia, serif; font-size: .72rem; }
.wedding-detail-list p { margin: 0; color: #bfb4aa; font-size: .8rem; }
.wedding-detail-list strong { display: block; margin-bottom: 4px; color: var(--white); font-family: Georgia, serif; font-size: 1.05rem; font-weight: 500; }
.wedding-note { margin: 0; color: #9e948b; font-size: .72rem; }

.wedding-experience { color: var(--white); background: radial-gradient(circle at 10% 0%, rgba(200,155,60,.09), transparent 30%), #15100d; }
.wedding-experience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wedding-experience__card { overflow: hidden; background: #fbf7f0; color: #241a15; border: 1px solid rgba(200,155,60,.34); box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.wedding-experience__card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.wedding-experience__card:hover img { transform: scale(1.035); }
.wedding-experience__card > div { padding: 30px; }
.wedding-experience__card > div > p { margin: 0 0 8px; color: #9b6e25; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.wedding-experience__card h3 { margin-bottom: 15px; font-size: 1.55rem; }
.wedding-experience__card ul { margin: 0; color: #5a5048; font-size: .8rem; }
.wedding-experience__card li + li { margin-top: 5px; }
.wedding-experience__note { max-width: 780px; margin: 22px auto 0; color: #a99f96; text-align: center; font-size: .72rem; }

.wedding-journey { padding: clamp(70px, 8vw, 120px) 0; }
.wedding-journey__grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 46px; }
.wedding-journey__grid::before { content: ''; position: absolute; top: 24px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, transparent, #c9aa73 8%, #c9aa73 92%, transparent); }
.wedding-journey__grid article { position: relative; padding: 0 22px; text-align: center; }
.wedding-journey__grid article > span { position: relative; z-index: 1; width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; color: var(--white); background: var(--gold); border: 5px solid var(--ivory); font-family: Georgia, serif; }
.wedding-journey__grid h3 { margin-bottom: 7px; font-size: 1.15rem; }
.wedding-journey__grid p { margin: 0; color: #675d55; font-size: .76rem; }

.wedding-conditions { padding: clamp(70px, 8vw, 120px) 0; color: var(--white); background: radial-gradient(circle at 12% 0%, rgba(200,155,60,.14), transparent 30%), #0b0908; }
.wedding-conditions__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.wedding-conditions__heading { position: sticky; top: 115px; }
.wedding-conditions__heading > p:not(.eyebrow) { color: #c8bdb3; }
.wedding-conditions__panel { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(228,196,119,.4); background: rgba(255,255,255,.025); }
.wedding-conditions__panel > div { display: grid; grid-template-columns: 40px 1fr; gap: 15px; min-height: 150px; padding: 28px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.wedding-conditions__panel > div:nth-child(2n) { border-right: 0; }
.wedding-conditions__panel > div:nth-last-child(-n+2) { border-bottom: 0; }
.wedding-conditions__panel span { color: var(--gold-light); font-family: Georgia, serif; font-size: .75rem; }
.wedding-conditions__panel p { margin: 0; color: #bdb2a8; font-size: .79rem; }
.wedding-conditions__panel strong { display: block; margin-bottom: 6px; color: var(--white); font-family: Georgia, serif; font-size: 1.08rem; font-weight: 500; }

.wedding-gallery__grid { grid-auto-rows: 240px; }
.wedding-quote { background: linear-gradient(90deg, #f3eadc, #fffdf8); }
.wedding-faq { background: radial-gradient(circle at 10% 10%, rgba(200,155,60,.13), transparent 28%), #0c0a09; }
.wedding-final-cta .final-cta__shade { background: linear-gradient(90deg, rgba(5,4,3,.94), rgba(5,4,3,.65) 58%, rgba(5,4,3,.22)); }

@media (max-width: 1050px) {
  .wedding-intro__grid { grid-template-columns: 1fr; }
  .wedding-intro__copy { order: -1; }
  .wedding-experience__grid { grid-template-columns: 1fr 1fr; }
  .wedding-experience__card:last-child { grid-column: 1 / 3; }
  .wedding-experience__card:last-child { display: grid; grid-template-columns: 1fr 1fr; }
  .wedding-experience__card:last-child img { height: 100%; aspect-ratio: auto; }
  .wedding-journey__grid { grid-template-columns: repeat(3, 1fr); gap: 34px 0; }
  .wedding-journey__grid::before { display: none; }
  .wedding-conditions__grid { grid-template-columns: 1fr; }
  .wedding-conditions__heading { position: static; }
}

@media (max-width: 820px) {
  .wedding-ceremony { grid-template-columns: 1fr; }
  .wedding-ceremony__image { min-height: 520px; max-height: 700px; }
  .wedding-ceremony__content { padding: 70px 24px; }
  .wedding-journey__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .wedding-hero .venue-page-hero__content { padding-top: 210px; }
  .wedding-intro__visual { min-height: 500px; }
  .wedding-intro__seal { width: 126px; height: 126px; right: 3%; bottom: 4%; }
  .wedding-experience__grid { grid-template-columns: 1fr; }
  .wedding-experience__card:last-child { grid-column: auto; display: block; }
  .wedding-experience__card:last-child img { aspect-ratio: 4 / 3; height: auto; }
  .wedding-conditions__panel { grid-template-columns: 1fr; }
  .wedding-conditions__panel > div, .wedding-conditions__panel > div:nth-child(2n), .wedding-conditions__panel > div:nth-last-child(-n+2) { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .wedding-conditions__panel > div:last-child { border-bottom: 0; }
  .wedding-gallery__grid { grid-auto-rows: 210px; }
}

@media (max-width: 520px) {
  .wedding-intro__visual { min-height: 420px; grid-template-columns: 1.22fr .78fr; }
  .wedding-intro__seal { width: 112px; height: 112px; padding: 13px; }
  .wedding-intro__seal strong { font-size: .88rem; }
  .wedding-intro__seal span { font-size: .52rem; }
  .wedding-journey__grid { grid-template-columns: 1fr; gap: 28px; }
  .wedding-journey__grid article { max-width: 360px; margin-inline: auto; }
  .wedding-ceremony__image { min-height: 430px; }
  .wedding-experience__card > div { padding: 24px; }
}

/* Página Banquetería en Coronel */
.banquet-hero .venue-page-hero__media img { object-position: center 52%; }
.banquet-hero .venue-page-hero__shade { background: linear-gradient(90deg, rgba(5,4,3,.92) 0%, rgba(5,4,3,.68) 48%, rgba(5,4,3,.26) 78%), linear-gradient(0deg, rgba(5,4,3,.8), transparent 58%); }
.banquet-facts { background: linear-gradient(90deg, #0c0907, #21150f, #0c0907); }
.banquet-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(42px, 7vw, 90px); }
.banquet-intro__copy > p:not(.eyebrow) { max-width: 580px; color: #5f554c; }
.banquet-intro__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.banquet-mosaic { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 235px 235px; gap: 8px; min-height: 478px; }
.banquet-mosaic figure { margin: 0; overflow: hidden; background: #d8ccba; }
.banquet-mosaic__main { grid-row: 1 / 3; }
.banquet-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.banquet-mosaic figure:hover img { transform: scale(1.035); }
.banquet-menu { background: var(--white); }
.banquet-tabs { position: sticky; top: var(--header-height); z-index: 30; background: rgba(255,253,248,.97); backdrop-filter: blur(12px); }
.banquet-panels .food-panel { min-height: 550px; }
.banquet-panels .food-panel img { min-height: 550px; }
.banquet-page .food-panel h4 { margin: 22px 0 8px; color: #76531d; font-family: Arial, Helvetica, sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.banquet-page .food-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; columns: auto; }
.banquet-page .food-columns ul { margin-top: 0; }
.banquet-selection .section-heading--center { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.banquet-selection__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.banquet-selection__grid article { min-height: 245px; padding: 34px 28px; background: var(--white); border-top: 3px solid var(--gold); box-shadow: 0 16px 40px rgba(35,22,13,.08); }
.banquet-selection__grid span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; color: #fff; background: var(--gold); border-radius: 50%; font-family: Georgia, serif; font-size: 1.2rem; }
.banquet-selection__grid h3 { margin-bottom: 10px; font-size: 1.35rem; }
.banquet-selection__grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.banquet-dietary { color: var(--white); background: #0d0a08; }
.banquet-dietary__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.banquet-dietary__image { min-height: 600px; overflow: hidden; }
.banquet-dietary__image img { width: 100%; height: 100%; object-fit: cover; }
.banquet-dietary__copy { align-self: center; padding: clamp(48px, 7vw, 100px); }
.banquet-dietary__copy h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); }
.banquet-dietary__copy p, .banquet-dietary__copy li { color: #d0c5bb; }
.banquet-dietary__copy ul { margin: 24px 0 30px; }
.banquet-gallery__grid { grid-auto-rows: 210px; }
.banquet-quote { background: linear-gradient(135deg, #f2eadc 0%, #fffdf8 55%, #ece0cc 100%); }
.banquet-faq { color: var(--white); background: radial-gradient(circle at 15% 10%, rgba(200,155,60,.12), transparent 24%), #0d0b0a; }
.banquet-final-cta .final-cta__media img { object-position: center 56%; }

@media (max-width: 980px) {
  .banquet-intro__grid, .banquet-dietary__grid { grid-template-columns: 1fr; }
  .banquet-intro__copy { order: -1; }
  .banquet-selection__grid { grid-template-columns: repeat(2, 1fr); }
  .banquet-dietary__image { min-height: 430px; }
  .banquet-dietary__grid { min-height: 0; }
  .banquet-tabs { top: var(--header-height); }
}

@media (max-width: 700px) {
  .banquet-hero .venue-page-hero__media img { object-position: center; }
  .banquet-mosaic { grid-template-columns: 1.15fr .85fr; grid-template-rows: 190px 190px; min-height: 388px; }
  .banquet-panels .food-panel, .banquet-panels .food-panel img { min-height: 0; }
  .banquet-page .food-columns { grid-template-columns: 1fr; gap: 4px; }
  .banquet-selection__grid { grid-template-columns: 1fr; }
  .banquet-selection__grid article { min-height: auto; }
  .banquet-dietary__image { min-height: 330px; }
  .banquet-dietary__copy { padding: 54px 22px 64px; }
  .banquet-gallery__grid { grid-auto-rows: 150px; }
}

@media (max-width: 430px) {
  .banquet-intro__actions { display: grid; }
  .banquet-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 150px; min-height: 368px; }
  .banquet-mosaic__main { grid-column: 1 / 3; grid-row: 1; }
  .banquet-mosaic figure:nth-child(2) { grid-column: 1; grid-row: 2; }
  .banquet-mosaic figure:nth-child(3) { grid-column: 2; grid-row: 2; }
}
.gastronomy-page-link { display: flex; justify-content: center; margin-top: 34px; }

/* Página Producción y Entretenimiento */
.production-hero .venue-page-hero__media img { object-position: center 46%; }
.production-hero .venue-page-hero__shade { background: linear-gradient(90deg, rgba(4,3,3,.94) 0%, rgba(4,3,3,.73) 48%, rgba(4,3,3,.24) 80%), linear-gradient(0deg, rgba(4,3,3,.72), transparent 58%); }
.production-facts { background: linear-gradient(90deg, #080706, #21160f 48%, #080706); }
.production-intro { overflow: hidden; }
.production-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.production-intro__copy > p:not(.eyebrow) { max-width: 590px; color: #5f554d; }
.production-intro__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.production-intro__media { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 150px 330px; gap: 9px; min-height: 489px; }
.production-intro__media figure { margin: 0; overflow: hidden; background: #d5c8b8; }
.production-intro__main { grid-row: 1 / 3; }
.production-intro__media figure:last-child { grid-column: 2; grid-row: 2; transform: translateY(34px); box-shadow: -22px 22px 0 var(--ivory), 0 25px 55px rgba(30,18,10,.2); }
.production-intro__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.production-intro__media figure:hover img { transform: scale(1.035); }

.production-stories { background: var(--black); }
.production-story { display: grid; grid-template-columns: 1.22fr .78fr; min-height: 660px; }
.production-story--reverse .production-story__media { order: 2; }
.production-story--reverse .production-story__copy { order: 1; }
.production-story__media { min-height: 660px; overflow: hidden; }
.production-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.production-story:hover .production-story__media img { transform: scale(1.025); }
.production-story__copy { display: grid; align-content: center; padding: clamp(55px, 7vw, 110px); }
.production-story__copy h2 { max-width: 650px; font-size: clamp(2.35rem, 4.2vw, 4.6rem); }
.production-story__copy > p:not(.eyebrow) { max-width: 590px; }
.production-story--dark { color: var(--white); background: radial-gradient(circle at 80% 10%, rgba(200,155,60,.13), transparent 32%), #0c0908; }
.production-story--dark .production-story__copy > p:not(.eyebrow),
.production-story--dark .production-service-list { color: #cfc4ba; }
.production-story--light { color: var(--text); background: #f5efe5; }
.production-story--light .production-story__copy > p:not(.eyebrow),
.production-story--light .production-service-list { color: #5e544b; }
.production-service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin: 28px 0 0; padding: 0; list-style: none; }
.production-service-list li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid currentColor; border-bottom-color: rgba(180,157,128,.25); font-size: .84rem; }
.production-service-list li::before { content: '◆'; position: absolute; left: 0; top: 13px; color: var(--gold); font-size: .55rem; }

.production-immersive { position: relative; min-height: 720px; display: grid; align-items: end; color: var(--white); overflow: hidden; isolation: isolate; }
.production-immersive__media, .production-immersive__media img,
.production-immersive__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.production-immersive__media { z-index: -2; }
.production-immersive__media img { object-fit: cover; object-position: center 42%; }
.production-immersive__shade { z-index: -1; background: linear-gradient(0deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.58) 48%, rgba(5,4,3,.12) 100%), linear-gradient(90deg, rgba(5,4,3,.65), transparent 70%); }
.production-immersive__content { padding-bottom: clamp(70px, 9vw, 130px); }
.production-immersive__content h2 { max-width: 830px; margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 5.3rem); }
.production-immersive__content p:not(.eyebrow) { max-width: 720px; margin: 0; color: #e4dbd2; font-size: 1.02rem; }

.production-fit .section-heading--center { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.production-fit__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cdbb9c; border-bottom: 1px solid #cdbb9c; }
.production-fit__grid article { min-height: 330px; padding: 50px 42px; border-right: 1px solid #cdbb9c; }
.production-fit__grid article:last-child { border-right: 0; }
.production-fit__grid span { display: block; margin-bottom: 28px; color: #96691c; font-family: Georgia, serif; font-size: .78rem; letter-spacing: .14em; }
.production-fit__grid h3 { margin-bottom: 14px; font-size: 1.8rem; }
.production-fit__grid p { color: #675c52; font-size: .84rem; }
.production-fit__grid a { display: inline-block; margin-top: 16px; color: #855d1b; font-size: .76rem; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }

.production-notice { padding: 66px 0; color: var(--white); background: radial-gradient(circle at 5% 0%, rgba(228,196,119,.16), transparent 28%), #17110d; border-block: 1px solid rgba(228,196,119,.35); }
.production-notice__inner { display: grid; grid-template-columns: 50px 1fr auto; gap: 30px; align-items: center; }
.production-notice__inner > span { width: 50px; height: 50px; display: grid; place-items: center; color: #21160d; background: var(--gold-light); border-radius: 50%; }
.production-notice__inner h2 { max-width: 820px; margin-bottom: 9px; font-size: clamp(1.8rem, 3vw, 3rem); }
.production-notice__inner p:last-child { max-width: 800px; margin-bottom: 0; color: #cfc4ba; font-size: .84rem; }

.production-faq { background: radial-gradient(circle at 12% 6%, rgba(200,155,60,.14), transparent 28%), #0b0908; }
.production-final-cta .final-cta__shade { background: linear-gradient(90deg, rgba(4,3,3,.95) 0%, rgba(4,3,3,.65) 55%, rgba(4,3,3,.2) 85%); }
.production-final-cta .final-cta__media img { object-position: center 52%; }

@media (max-width: 1050px) {
  .production-intro__grid { grid-template-columns: 1fr; }
  .production-intro__copy { order: -1; }
  .production-story { grid-template-columns: 1fr 1fr; min-height: 600px; }
  .production-story__media { min-height: 600px; }
  .production-story__copy { padding: 60px 42px; }
  .production-service-list { grid-template-columns: 1fr; }
  .production-fit__grid article { padding: 42px 30px; }
  .production-notice__inner { grid-template-columns: 50px 1fr; }
  .production-notice__inner .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .production-story, .production-story--reverse { grid-template-columns: 1fr; }
  .production-story--reverse .production-story__media,
  .production-story--reverse .production-story__copy { order: initial; }
  .production-story__media { min-height: 520px; }
  .production-story__copy { padding: 68px 32px 78px; }
  .production-fit__grid { grid-template-columns: 1fr; }
  .production-fit__grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #cdbb9c; }
  .production-fit__grid article:last-child { border-bottom: 0; }
  .production-immersive { min-height: 620px; }
}

@media (max-width: 700px) {
  .production-hero .venue-page-hero__content { padding-top: 210px; }
  .production-intro__media { grid-template-columns: 1.2fr .8fr; grid-template-rows: 150px 260px; min-height: 419px; }
  .production-intro__media figure:last-child { transform: translateY(18px); box-shadow: -12px 12px 0 var(--ivory), 0 18px 35px rgba(30,18,10,.16); }
  .production-story__media { min-height: 440px; }
  .production-story__copy h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .production-immersive { min-height: 580px; }
  .production-immersive__content { padding-bottom: 70px; }
  .production-notice { padding: 54px 0; }
  .production-notice__inner { grid-template-columns: 1fr; gap: 20px; }
  .production-notice__inner .btn { grid-column: 1; }
}

@media (max-width: 480px) {
  .production-intro__actions { display: grid; }
  .production-intro__media { grid-template-columns: 1fr 1fr; grid-template-rows: 245px 135px; min-height: 389px; }
  .production-intro__main { grid-column: 1 / 3; grid-row: 1; }
  .production-intro__media figure:last-child { grid-column: 2; grid-row: 2; transform: translateY(-18px); box-shadow: -10px 10px 0 var(--ivory); }
  .production-story__media { min-height: 360px; }
  .production-story__copy { padding: 54px 22px 64px; }
  .production-service-list li { font-size: .8rem; }
  .production-fit__grid article { padding: 38px 24px; }
  .production-immersive { min-height: 540px; }
  .production-immersive__content h2 { font-size: 2.55rem; }
}

/* Página Decoración y Ambientación */
.decoration-hero .venue-page-hero__media img { object-position: center 48%; }
.decoration-hero .venue-page-hero__shade { background: linear-gradient(90deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.7) 48%, rgba(5,4,3,.18) 82%), linear-gradient(0deg, rgba(5,4,3,.72), transparent 60%); }
.decoration-facts { background: linear-gradient(90deg, #0a0807, #24170f 48%, #0a0807); }
.decoration-intro { overflow: hidden; }
.decoration-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.decoration-intro__copy > p:not(.eyebrow) { max-width: 600px; color: #5f554d; }
.decoration-intro__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.decoration-intro__media { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 180px 340px; gap: 10px; min-height: 530px; }
.decoration-intro__media figure { margin: 0; overflow: hidden; background: #d7c9b8; }
.decoration-intro__main { grid-row: 1 / 3; }
.decoration-intro__media figure:last-child { grid-column: 2; grid-row: 2; transform: translateY(34px); box-shadow: -22px 22px 0 var(--ivory), 0 25px 55px rgba(30,18,10,.2); }
.decoration-intro__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.decoration-intro__media figure:hover img { transform: scale(1.035); }

.decoration-stories { background: var(--black); }
.decoration-story { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 650px; }
.decoration-story--reverse .decoration-story__media { order: 2; }
.decoration-story--reverse .decoration-story__copy { order: 1; }
.decoration-story__media { min-height: 650px; overflow: hidden; }
.decoration-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.decoration-story:hover .decoration-story__media img { transform: scale(1.025); }
.decoration-story__copy { display: grid; align-content: center; padding: clamp(56px, 7vw, 108px); }
.decoration-story__copy h2 { max-width: 650px; font-size: clamp(2.35rem, 4.2vw, 4.55rem); }
.decoration-story__copy > p:not(.eyebrow) { max-width: 590px; }
.decoration-story--dark { color: var(--white); background: radial-gradient(circle at 82% 12%, rgba(200,155,60,.13), transparent 32%), #0c0908; }
.decoration-story--dark .decoration-story__copy > p:not(.eyebrow),
.decoration-story--dark .decoration-service-list { color: #cfc4ba; }
.decoration-story--light { color: var(--text); background: #f5efe5; }
.decoration-story--light .decoration-story__copy > p:not(.eyebrow),
.decoration-story--light .decoration-service-list { color: #5e544b; }
.decoration-service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin: 28px 0 0; padding: 0; list-style: none; }
.decoration-service-list li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid rgba(180,157,128,.25); font-size: .84rem; }
.decoration-service-list li::before { content: '◆'; position: absolute; left: 0; top: 13px; color: var(--gold); font-size: .55rem; }

.decoration-coordination .section-heading--center { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.decoration-coordination__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid #cdbb9c; border-bottom: 1px solid #cdbb9c; list-style: none; }
.decoration-coordination__grid li { min-height: 300px; padding: 48px 34px; border-right: 1px solid #cdbb9c; }
.decoration-coordination__grid li:last-child { border-right: 0; }
.decoration-coordination__grid span { display: block; margin-bottom: 28px; color: #96691c; font-family: Georgia, serif; font-size: .78rem; letter-spacing: .14em; }
.decoration-coordination__grid h3 { margin-bottom: 13px; font-size: 1.65rem; }
.decoration-coordination__grid p { color: #675c52; font-size: .84rem; }

.decoration-gallery { background: #120e0c; color: var(--white); }
.decoration-gallery .section-heading > p:last-child { max-width: 760px; margin-inline: auto; color: #cfc4ba; }
.decoration-gallery__grid { grid-auto-rows: 230px; }
.decoration-gallery__grid .gallery-item { min-height: 230px; }
.decoration-gallery__grid .gallery-item--tall { grid-row: span 2; }
.decoration-gallery__grid .gallery-item--wide { grid-column: span 2; }

.decoration-notice { padding: 66px 0; color: var(--white); background: radial-gradient(circle at 5% 0%, rgba(228,196,119,.16), transparent 28%), #17110d; border-block: 1px solid rgba(228,196,119,.35); }
.decoration-notice__inner { display: grid; grid-template-columns: 50px 1fr auto; gap: 30px; align-items: center; }
.decoration-notice__inner > span { width: 50px; height: 50px; display: grid; place-items: center; color: #21160d; background: var(--gold-light); border-radius: 50%; }
.decoration-notice__inner h2 { max-width: 820px; margin-bottom: 9px; font-size: clamp(1.8rem, 3vw, 3rem); }
.decoration-notice__inner p:last-child { max-width: 820px; margin-bottom: 0; color: #cfc4ba; font-size: .84rem; }
.decoration-faq { background: radial-gradient(circle at 12% 6%, rgba(200,155,60,.14), transparent 28%), #0b0908; }
.decoration-final-cta .final-cta__shade { background: linear-gradient(90deg, rgba(4,3,3,.95) 0%, rgba(4,3,3,.65) 55%, rgba(4,3,3,.2) 85%); }
.decoration-final-cta .final-cta__media img { object-position: center 52%; }

@media (max-width: 1100px) {
  .decoration-intro__grid { grid-template-columns: 1fr; }
  .decoration-intro__copy { order: -1; }
  .decoration-story { grid-template-columns: 1fr 1fr; min-height: 600px; }
  .decoration-story__media { min-height: 600px; }
  .decoration-story__copy { padding: 60px 42px; }
  .decoration-service-list { grid-template-columns: 1fr; }
  .decoration-coordination__grid { grid-template-columns: repeat(2, 1fr); }
  .decoration-coordination__grid li:nth-child(2) { border-right: 0; }
  .decoration-coordination__grid li:nth-child(-n+2) { border-bottom: 1px solid #cdbb9c; }
  .decoration-notice__inner { grid-template-columns: 50px 1fr; }
  .decoration-notice__inner .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .decoration-story, .decoration-story--reverse { grid-template-columns: 1fr; }
  .decoration-story--reverse .decoration-story__media,
  .decoration-story--reverse .decoration-story__copy { order: initial; }
  .decoration-story__media { min-height: 500px; }
  .decoration-story__copy { padding: 66px 32px 76px; }
  .decoration-gallery__grid { grid-auto-rows: 180px; }
  .decoration-gallery__grid .gallery-item { min-height: 180px; }
}

@media (max-width: 700px) {
  .decoration-hero .venue-page-hero__content { padding-top: 205px; }
  .decoration-intro__media { grid-template-columns: 1.2fr .8fr; grid-template-rows: 150px 260px; min-height: 420px; }
  .decoration-intro__media figure:last-child { transform: translateY(18px); box-shadow: -12px 12px 0 var(--ivory), 0 18px 35px rgba(30,18,10,.16); }
  .decoration-story__media { min-height: 420px; }
  .decoration-story__copy h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .decoration-coordination__grid { grid-template-columns: 1fr; }
  .decoration-coordination__grid li { min-height: 0; border-right: 0; border-bottom: 1px solid #cdbb9c; }
  .decoration-coordination__grid li:last-child { border-bottom: 0; }
  .decoration-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .decoration-notice { padding: 54px 0; }
  .decoration-notice__inner { grid-template-columns: 1fr; gap: 20px; }
  .decoration-notice__inner .btn { grid-column: 1; }
}

@media (max-width: 480px) {
  .decoration-intro__actions { display: grid; }
  .decoration-intro__media { grid-template-columns: 1fr 1fr; grid-template-rows: 245px 135px; min-height: 390px; }
  .decoration-intro__main { grid-column: 1 / 3; grid-row: 1; }
  .decoration-intro__media figure:last-child { grid-column: 2; grid-row: 2; transform: translateY(-18px); box-shadow: -10px 10px 0 var(--ivory); }
  .decoration-story__media { min-height: 350px; }
  .decoration-story__copy { padding: 52px 22px 62px; }
  .decoration-service-list li { font-size: .8rem; }
  .decoration-coordination__grid li { padding: 36px 24px; }
  .decoration-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .decoration-gallery__grid .gallery-item--wide { grid-column: span 1; }
  .decoration-gallery__grid .gallery-item--tall { grid-row: span 1; }
}
.include-chapter .chapter-link { display: inline-flex; margin-top: 18px; color: var(--gold-light); font-size: .76rem; font-weight: 800; letter-spacing: .03em; text-decoration: underline; text-underline-offset: 5px; }
.include-chapter .chapter-link:hover { color: var(--white); }
