:root {
  --ink: #292620;
  --ink-soft: #5f5a52;
  --paper: #ffffff;
  --cream: #f7f4ef;
  --sand: #e9e0d4;
  --taupe: #8e8171;
  --taupe-dark: #665b50;
  --line: rgba(41, 38, 32, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --header-h: 104px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.7; font-weight: 300; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--sand); color: var(--ink); }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 140px 0; }
.eyebrow { margin: 0 0 22px; font-size: 11px; line-height: 1.3; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }
.eyebrow.light { color: rgba(255,255,255,.82); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 em, h2 em { font-weight: 400; }
h2 { font-size: clamp(48px, 6vw, 84px); line-height: .98; letter-spacing: -.035em; margin-bottom: 0; }
.lead { font-family: var(--serif); font-size: clamp(27px, 2.4vw, 38px); line-height: 1.18; color: var(--ink); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: #fff; padding: 12px 16px; transition: .2s; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header { position: fixed; z-index: 1000; left: 0; right: 0; top: 0; height: var(--header-h); transition: background .35s ease, height .35s ease, box-shadow .35s ease; color: #fff; }
.site-header.scrolled { background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 1px 0 rgba(41,38,32,.09); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); --header-h: 86px; }
.header-inner { height: 100%; width: min(calc(100% - 64px), 1440px); margin-inline: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; }
.brand { width: 190px; padding: 6px 0; }
.brand img { max-height: 76px; width: 100%; object-fit: contain; filter: brightness(0) invert(1); transition: filter .35s, max-height .35s; }
.site-header.scrolled .brand img { filter: none; max-height: 66px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; font-weight: 500; }
.nav-right { justify-content: flex-end; }
.desktop-nav a:not(.nav-cta) { position: relative; }
.desktop-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: currentColor; transition: width .25s ease; }
.desktop-nav a:hover::after { width: 100%; }
.nav-cta { border: 1px solid currentColor; padding: 12px 16px; transition: background .25s, color .25s; }
.nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
.site-header.scrolled .nav-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-toggle, .mobile-menu { display: none; }

/* Buttons & links */
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid currentColor; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 600; transition: background .25s ease, color .25s ease, transform .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-1px); }
.button-light { color: #fff; background: transparent; }
.button-light:hover { color: var(--ink); background: #fff; }
.button-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }
.text-link { appearance: none; border: 0; background: none; padding: 0 0 5px; border-bottom: 1px solid currentColor; display: inline-flex; align-items: center; gap: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; cursor: pointer; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.light-link { color: #fff; border-color: rgba(255,255,255,.55); }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; color: #fff; display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 63% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,14,12,.62) 0%, rgba(17,14,12,.28) 50%, rgba(17,14,12,.05) 80%), linear-gradient(0deg, rgba(17,14,12,.24), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.hero h1 { max-width: 820px; margin: 0 0 28px; font-size: clamp(58px, 7.6vw, 112px); line-height: .84; letter-spacing: -.045em; text-wrap: balance; }
.hero h1 em { display: inline-block; }
.hero-copy { max-width: 610px; font-size: 17px; color: rgba(255,255,255,.86); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-scroll { position: absolute; z-index: 2; right: 42px; bottom: 34px; display: flex; align-items: center; gap: 14px; text-transform: uppercase; font-size: 10px; letter-spacing: .18em; }
.hero-scroll i { width: 46px; height: 1px; background: rgba(255,255,255,.72); display: block; }

/* Introduction */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10vw; align-items: start; }
.intro-copy { padding-top: 44px; max-width: 530px; }
.intro-copy > p:not(.lead) { color: var(--ink-soft); }
.intro-copy .text-link { margin-top: 16px; }
.editorial-mosaic { margin-top: 110px; display: grid; grid-template-columns: .9fr 1.2fr; grid-template-rows: 260px 360px; gap: 24px; }
.editorial-mosaic figure { margin: 0; overflow: hidden; }
.editorial-mosaic img { height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.6,.2,1); }
.editorial-mosaic figure:hover img { transform: scale(1.025); }
.mosaic-tall { grid-row: 1 / 3; }
.mosaic-wide { grid-column: 2; grid-row: 1; }
.mosaic-note { grid-column: 2; grid-row: 2; background: var(--cream); padding: 52px; display: flex; flex-direction: column; justify-content: space-between; }
.mosaic-note span { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; font-weight: 600; }
.mosaic-note p { margin: 0; max-width: 580px; font-family: var(--serif); font-size: clamp(34px, 3.6vw, 52px); line-height: 1.02; }

/* Venues */
.venues { background: var(--cream); padding-bottom: 160px; }
.section-heading { max-width: 860px; margin-bottom: 100px; }
.section-heading > p:last-child { max-width: 570px; margin-top: 28px; color: var(--ink-soft); }
.venue-list { display: grid; gap: 150px; }
.venue-block { display: grid; grid-template-columns: .36fr .64fr; gap: 68px; align-items: center; }
.venue-block.reverse { grid-template-columns: .64fr .36fr; }
.venue-block.reverse .venue-copy { order: 2; }
.venue-block.reverse .venue-collage { order: 1; }
.venue-copy { position: relative; }
.venue-number { font-family: var(--serif); font-size: 18px; color: var(--taupe); margin-bottom: 50px; }
.venue-copy h3 { font-size: clamp(52px, 5.4vw, 78px); line-height: .88; letter-spacing: -.035em; margin: 0 0 28px; }
.venue-copy > p:not(.venue-number):not(.eyebrow) { color: var(--ink-soft); max-width: 420px; }
.venue-copy .text-link { margin-top: 14px; }
.venue-collage { height: 660px; display: grid; grid-template-columns: 1.48fr .72fr; gap: 16px; }
.venue-main, .venue-side button { border: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: #ddd; }
.venue-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.venue-collage img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .4s; }
.venue-collage button:hover img { transform: scale(1.025); filter: brightness(.94); }

/* Services */
.services { background: #fff; }
.services-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; }
.services-heading { position: sticky; top: 150px; height: max-content; }
.services-heading > p:not(.eyebrow) { max-width: 420px; color: var(--ink-soft); margin: 30px 0; }
.services-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 28px 0 30px; border-bottom: 1px solid var(--line); }
.service-item > span { font-size: 10px; letter-spacing: .14em; color: var(--taupe); padding-top: 6px; }
.service-item h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; margin: 0 0 8px; }
.service-item p { margin: 0; color: var(--ink-soft); font-size: 14px; max-width: 620px; }

/* Statement */
.statement { position: relative; min-height: 76vh; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.statement > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.statement-shade { position: absolute; inset: 0; background: rgba(20,16,12,.42); }
.statement-content { position: relative; z-index: 2; width: min(calc(100% - 48px), 1080px); }
.statement h2 { font-size: clamp(52px, 7vw, 92px); }

/* Mariachi */
.mariachi { background: var(--sand); }
.mariachi-heading { margin-bottom: 70px; }
.mariachi-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: center; }
.video-shell { aspect-ratio: 16/9; background: #181512; overflow: hidden; box-shadow: 0 30px 70px rgba(43,35,29,.12); }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.mariachi-copy > p:not(.lead) { color: #5b534b; }
.social-row { display: flex; flex-wrap: wrap; gap: 18px 28px; padding-top: 20px; margin-top: 26px; border-top: 1px solid rgba(41,38,32,.18); }
.social-row a { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* Process */
.process { background: #fff; }
.process-top { display: grid; grid-template-columns: 1.4fr .6fr; column-gap: 80px; align-items: end; margin-bottom: 78px; }
.process-top .eyebrow { grid-column: 1 / 3; }
.process-top > p:last-child { color: var(--ink-soft); margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { padding: 34px 30px 42px 0; border-right: 1px solid var(--line); min-height: 270px; }
.process-step + .process-step { padding-left: 30px; }
.process-step:last-child { border-right: 0; }
.process-step span { font-family: var(--serif); font-size: 15px; color: var(--taupe); }
.process-step h3 { font-family: var(--sans); font-size: 16px; font-weight: 500; margin: 56px 0 10px; }
.process-step p { color: var(--ink-soft); font-size: 13px; margin: 0; }

/* Contact */
.contact { background: #292620; color: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.contact-intro { position: sticky; top: 140px; }
.contact-intro h2 { font-size: clamp(54px, 5.8vw, 78px); }
.contact-intro > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.68); margin: 32px 0; }
.contact-direct { display: grid; gap: 8px; font-size: 13px; }
.contact-direct a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.3); }
.inquiry-form { display: grid; gap: 24px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-row label { display: grid; gap: 9px; }
.form-row label > span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.62); font-weight: 500; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff; padding: 10px 2px 13px; border-radius: 0; outline: none; }
select { color-scheme: dark; }
textarea { resize: vertical; min-height: 132px; }
input:focus, select:focus, textarea:focus { border-color: #fff; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.32); }
.check-row { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.7); font-size: 13px; cursor: pointer; }
.check-row input { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--sand); }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-submit { justify-self: start; min-width: 190px; gap: 26px; }
.form-note { font-size: 10px; color: rgba(255,255,255,.42); margin: -10px 0 0; }
.form-status { min-height: 24px; font-size: 13px; }
.form-status.success { color: #d8e8d0; }
.form-status.error { color: #ffd0c9; }

/* Footer */
.site-footer { background: #f2eee8; padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 40px; align-items: start; }
.footer-logo { width: 230px; }
.footer-links, .footer-contact { display: grid; gap: 10px; font-size: 12px; }
.footer-links a { text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.footer-contact { justify-self: end; text-align: right; }
.footer-bottom { margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom p { margin: 0; }

/* WhatsApp */
.whatsapp-float { position: fixed; z-index: 800; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; background: #fff; color: var(--ink); box-shadow: 0 8px 30px rgba(24,20,16,.16); border: 1px solid rgba(41,38,32,.08); border-radius: 999px; padding: 10px 14px 10px 11px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

/* Gallery */
.gallery-modal { position: fixed; inset: 0; z-index: 3000; background: rgba(15,13,11,.96); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; color: #fff; }
.gallery-modal.open { opacity: 1; visibility: visible; }
.gallery-stage { margin: 0; width: min(84vw, 1180px); height: 82vh; display: grid; grid-template-rows: 1fr auto; gap: 16px; }
.gallery-stage img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.gallery-stage figcaption { display: flex; justify-content: space-between; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.8); }
.gallery-stage small { font-size: inherit; }
.gallery-close, .gallery-arrow { position: absolute; border: 0; background: transparent; color: #fff; cursor: pointer; }
.gallery-close { right: 28px; top: 20px; font-size: 42px; font-weight: 200; }
.gallery-arrow { top: 50%; transform: translateY(-50%); font-size: 30px; padding: 20px; }
.gallery-arrow.prev { left: 18px; }
.gallery-arrow.next { right: 18px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1050px) {
  :root { --header-h: 88px; }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 172px; justify-self: start; }
  .menu-toggle { justify-self: end; display: grid; gap: 7px; width: 44px; height: 44px; place-content: center; border: 0; background: transparent; cursor: pointer; color: inherit; }
  .menu-toggle span { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { display: flex; position: fixed; inset: var(--header-h) 0 0; background: #f7f4ef; color: var(--ink); flex-direction: column; align-items: center; justify-content: center; gap: 26px; font-family: var(--serif); font-size: 36px; opacity: 0; visibility: hidden; transition: .25s; }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu .button { font-family: var(--sans); font-size: 10px; margin-top: 12px; }
  .intro-grid, .services-layout, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .intro-copy { padding-top: 0; }
  .services-heading, .contact-intro { position: static; }
  .venue-block, .venue-block.reverse { grid-template-columns: 1fr; gap: 48px; }
  .venue-block.reverse .venue-copy, .venue-block.reverse .venue-collage { order: initial; }
  .venue-collage { height: 580px; }
  .mariachi-grid { grid-template-columns: 1fr; gap: 52px; }
  .mariachi-copy { max-width: 720px; }
  .process-top { grid-template-columns: 1fr; gap: 28px; }
  .process-top .eyebrow { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 94px 0; }
  h2 { font-size: clamp(46px, 14vw, 68px); }
  .site-header, .site-header.scrolled { --header-h: 78px; }
  .header-inner { width: calc(100% - 28px); }
  .brand { width: 142px; }
  .hero { min-height: 92svh; }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(15,13,11,.7), rgba(15,13,11,.2)), linear-gradient(0deg, rgba(15,13,11,.25), transparent); }
  .hero-content { padding-top: 90px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); max-width: 90%; }
  .hero-copy { max-width: 90%; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-scroll { display: none; }
  .editorial-mosaic { margin-top: 70px; grid-template-columns: 1fr; grid-template-rows: 520px 260px auto; gap: 12px; }
  .mosaic-tall { grid-row: 1; }
  .mosaic-wide { grid-column: 1; grid-row: 2; }
  .mosaic-note { grid-column: 1; grid-row: 3; min-height: 300px; padding: 34px; }
  .section-heading { margin-bottom: 64px; }
  .venue-list { gap: 100px; }
  .venue-number { margin-bottom: 30px; }
  .venue-collage { height: auto; grid-template-columns: 1fr; gap: 10px; }
  .venue-main { aspect-ratio: 4/5; }
  .venue-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; gap: 10px; }
  .venue-side button { aspect-ratio: 1/1; }
  .service-item { grid-template-columns: 36px 1fr; }
  .statement { min-height: 68vh; }
  .statement h2 { font-size: clamp(48px, 14vw, 68px); }
  .mariachi-heading { margin-bottom: 44px; }
  .process-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .process-step, .process-step + .process-step { padding: 26px 0 32px; border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
  .process-step h3 { margin-top: 28px; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { justify-self: start; text-align: left; }
  .footer-bottom { flex-direction: column; }
  .gallery-stage { width: 90vw; height: 76vh; }
  .gallery-arrow { top: auto; bottom: 8px; }
  .gallery-arrow.prev { left: 18px; }
  .gallery-arrow.next { right: 18px; }
  .gallery-close { right: 14px; top: 10px; }
  .gallery-stage figcaption { padding-bottom: 52px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 11px; }
}
