:root {
  --ink: #0d1733;
  --ink-soft: #152247;
  --ivory: #f2f5fb;
  --paper: #f8faff;
  --sand: #cdd7ea;
  --gold: #d0af68;
  --gold-deep: #a9843f;
  --royal: #17469a;
  --line: rgba(13, 23, 51, 0.16);
  --light-line: rgba(255, 255, 255, 0.18);
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -6rem;
  padding: .8rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  transition: top .2s ease;
}

.skip-link:focus { top: 1rem; }

.page-shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; }

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--royal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light { color: #e0c17f; }

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: .98;
}

h3 {
  margin-bottom: .7rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  background: rgba(9, 18, 44, .95);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 86px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  line-height: 1;
}

.brand-logo-shell {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(208, 175, 104, .55);
  border-radius: 50%;
  background: rgba(248, 250, 255, .97);
  box-shadow: 0 7px 22px rgba(5, 13, 35, .18);
}

.brand-logo-shell img {
  display: block;
  width: 57px;
  height: 57px;
  object-fit: contain;
}

.brand-name {
  padding-left: .8rem;
  border-left: 1px solid rgba(255, 255, 255, .38);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.35rem);
}

.site-nav a {
  position: relative;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: .72rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .55);
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover { background: #fff; color: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  height: min(940px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("./assets/rz-hospitality-hero.webp") center center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-in 1.6s cubic-bezier(.2,.75,.25,1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 42, .98) 0%, rgba(8, 22, 57, .91) 30%, rgba(8, 30, 75, .38) 70%, rgba(7, 22, 55, .18) 100%),
    linear-gradient(0deg, rgba(6, 14, 36, .76) 0%, transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  align-items: center;
  height: 100%;
  padding-top: 86px;
  padding-bottom: 90px;
}

.hero-copy {
  max-width: 850px;
  animation: copy-in .9s .15s cubic-bezier(.2,.75,.25,1) both;
}

.hero h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.6rem, 7vw, 7.1rem);
  line-height: .91;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.2;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.button span { margin-left: 1.5rem; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: #dfc38f; }
.button-ivory { background: var(--ivory); color: var(--ink); }
.button-ivory:hover { background: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  border-bottom: 1px solid currentColor;
  font-size: .88rem;
  font-weight: 600;
}

.light-link { color: rgba(255, 255, 255, .82); }

.hero-signature {
  align-self: end;
  justify-self: end;
  display: flex;
  padding-bottom: 2.5rem;
  color: rgba(255, 255, 255, .14);
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: .6;
  letter-spacing: -.18em;
  user-select: none;
}

.hero-signature span:last-child { color: rgba(199, 165, 104, .34); }

.hero-rail {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 3rem), var(--max));
  min-height: 76px;
  background: rgba(8, 20, 48, .84);
  border-top: 1px solid var(--light-line);
  color: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-rail span {
  display: grid;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid var(--light-line);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.hero-rail span:last-child { border-right: 0; }

.intro { background: var(--paper); }

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading h2 { max-width: 650px; }

.intro-content { padding-top: 3.1rem; }

.intro-content > p { max-width: 720px; color: #58627a; }

.intro-content .large-copy {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.3;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.7rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.values article { padding-right: 1rem; }
.value-number { color: var(--royal); font-size: .72rem; font-weight: 700; letter-spacing: .15em; }
.values h3 { margin: .8rem 0 .5rem; font-family: var(--serif); font-size: 1.35rem; }
.values p { margin-bottom: 0; color: #657087; font-size: .88rem; line-height: 1.55; }

.services {
  background: var(--ink);
  color: #fff;
}

.services-top {
  display: grid;
  grid-template-columns: 1.2fr .55fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.services-top > p {
  max-width: 430px;
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, .58);
}

.inverse h2 { color: #fff; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.service-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.2rem;
  min-height: 370px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  background: rgba(255, 255, 255, .01);
  transition: background .3s ease;
}

.service-card:hover { background: rgba(255, 255, 255, .045); }
.service-card.featured { background: var(--royal); }
.service-card.featured:hover { background: #1b53b6; }
.service-index { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
.service-card h3 { max-width: 420px; margin-bottom: 1.2rem; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 400; }
.service-card p { max-width: 490px; color: rgba(255,255,255,.62); }
.service-card ul { margin: 1.7rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--light-line); list-style: none; }
.service-card li { position: relative; margin: .35rem 0; padding-left: 1.1rem; color: rgba(255,255,255,.79); font-size: .87rem; }
.service-card li::before { position: absolute; top: .62rem; left: 0; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; content: ""; }

.method { background: var(--ivory); }
.method-heading { display: grid; grid-template-columns: .65fr 1.35fr .55fr; align-items: end; gap: 2rem; }
.method-heading .eyebrow { align-self: start; }
.method-heading h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.method-heading > p:last-child { color: #657087; }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 5rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-steps li { min-height: 270px; padding: 1.7rem 1.5rem 1.7rem 0; border-right: 1px solid var(--line); }
.method-steps li + li { padding-left: 1.5rem; }
.method-steps li:last-child { border-right: 0; }
.method-steps li > span { display: inline-block; margin-bottom: 4.3rem; color: var(--royal); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.method-steps h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.method-steps p { margin-bottom: 0; color: #657087; font-size: .9rem; }

.catering {
  position: relative;
  overflow: hidden;
  background: var(--royal);
  color: #fff;
}

.catering::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.1), transparent 38%), linear-gradient(120deg, transparent 55%, rgba(0,0,0,.18));
  content: "";
}

.catering-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.catering-art { position: relative; display: grid; place-items: center; min-height: 540px; }
.giant-c { color: rgba(255,255,255,.08); font-family: var(--serif); font-size: 34rem; line-height: .8; }
.event-ticket { position: absolute; display: flex; flex-direction: column; justify-content: space-between; width: min(330px, 76%); aspect-ratio: .75; padding: 2rem; border: 1px solid rgba(255,255,255,.45); background: rgba(8, 36, 99, .55); backdrop-filter: blur(10px); transform: rotate(-5deg); }
.event-ticket::before, .event-ticket::after { position: absolute; left: 2rem; width: 36px; height: 1px; background: var(--gold); content: ""; }
.event-ticket::before { top: 4.8rem; }
.event-ticket::after { right: 2rem; bottom: 4.8rem; left: auto; }
.event-ticket span { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.event-ticket strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.05; }
.event-ticket small { font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.catering-copy h2 { max-width: 680px; margin-bottom: 1.7rem; color: #fff; font-size: clamp(3rem, 5.7vw, 5.6rem); }
.catering-copy > p:not(.eyebrow) { max-width: 630px; color: rgba(255,255,255,.72); }
.event-types { display: flex; flex-wrap: wrap; gap: .65rem; margin: 2rem 0 2.3rem; }
.event-types span { padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.84); font-size: .78rem; }

.audience { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 9vw, 9rem); }
.audience-list { border-top: 1px solid var(--line); }
.audience-list article { display: grid; grid-template-columns: 50px 1fr 1.2fr; align-items: center; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.audience-list article > span { color: var(--royal); font-size: .75rem; font-weight: 700; }
.audience-list h3 { margin: 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.audience-list p { margin: 0; color: #657087; font-size: .9rem; }

.contact { background: var(--ink-soft); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy h2 { margin-bottom: 1.8rem; color: #fff; font-size: clamp(3rem, 5vw, 5rem); }
.contact-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.62); }
.contact-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 3rem; background: var(--light-line); border: 1px solid var(--light-line); }
.contact-options > * { display: flex; flex-direction: column; min-height: 108px; padding: 1.25rem; background: var(--ink-soft); transition: background .2s ease; }
.contact-options a:hover { background: rgba(255,255,255,.05); }
.contact-options span { margin-bottom: .55rem; color: rgba(255,255,255,.48); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-options strong { font-size: .98rem; font-weight: 500; }

.contact-form { padding: clamp(1.7rem, 4vw, 3.3rem); background: #f1f4fa; color: var(--ink); }
.form-header { margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.form-header > span { display: block; margin-bottom: .5rem; color: var(--royal); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.form-header h3 { margin-bottom: .5rem; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 400; }
.form-header p { margin: 0; color: #657087; font-size: .9rem; }
.identity-fieldset { margin: 0 0 1.4rem; padding: 0; border: 0; }
.identity-fieldset legend { margin-bottom: .65rem; color: #58627a; font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.identity-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.identity-option { display: flex !important; align-items: center; gap: .75rem; min-height: 52px; margin: 0 !important; padding: .7rem .85rem; border: 1px solid rgba(13,23,51,.18); background: rgba(255,255,255,.52); color: var(--ink) !important; cursor: pointer; text-transform: none !important; transition: border-color .2s ease, background .2s ease; }
.identity-option:has(input:checked) { border-color: var(--royal); background: rgba(23,70,154,.08); }
.identity-option input { appearance: none; flex: 0 0 auto; width: 18px !important; height: 18px; margin: 0 !important; padding: 0 !important; border: 1px solid #7d879c !important; border-radius: 50% !important; background: #fff !important; }
.identity-option input:checked { border: 5px solid var(--royal) !important; }
.identity-option span { font-size: .92rem; font-weight: 650; letter-spacing: 0; }
.field-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1.2rem; color: #58627a; font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.contact-form input:not([type="radio"]), .contact-form select, .contact-form textarea { width: 100%; margin-top: .5rem; padding: .8rem 0; border: 0; border-bottom: 1px solid rgba(13,23,51,.28); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 1rem; letter-spacing: 0; text-transform: none; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--royal); }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form ::placeholder { color: #8b96aa; opacity: 1; }
.conditional-field { display: none !important; }
.conditional-field.visible { display: block !important; }
.privacy-consent {
  display: grid;
  grid-template-columns: 20px auto 1fr;
  align-items: center;
  gap: .55rem;
  margin: .35rem 0 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(13,23,51,.16);
  background: rgba(255,255,255,.55);
}
.privacy-consent input {
  appearance: none;
  width: 19px;
  height: 19px;
  margin: 0;
  border: 1px solid #7d879c;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}
.privacy-consent input:checked {
  border-color: var(--royal);
  background: var(--royal);
  box-shadow: inset 0 0 0 4px #fff;
}
.privacy-consent label {
  display: inline;
  margin: 0;
  color: #58627a;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.privacy-link,
.footer-privacy-link {
  width: fit-content;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--royal);
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
}
.form-button { width: 100%; margin-top: .7rem; border: 0; }
.form-note { margin: .9rem 0 0; color: #737d91; font-size: .75rem; text-align: center; }

.privacy-dialog {
  width: min(760px, calc(100% - 2rem));
  max-height: min(88vh, 900px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(208,175,104,.5);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(5,12,31,.45);
}
.privacy-dialog::backdrop { background: rgba(5,12,31,.82); backdrop-filter: blur(6px); }
.privacy-dialog-panel { display: flex; flex-direction: column; max-height: min(88vh, 900px); }
.privacy-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: #eef3fc;
}
.privacy-dialog-header .eyebrow { margin-bottom: .55rem; }
.privacy-dialog-header h2 { font-size: clamp(2rem, 6vw, 3.4rem); }
.privacy-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.privacy-dialog-content { overflow-y: auto; padding: 1.8rem 2rem .6rem; }
.privacy-dialog-content p { color: #58627a; }
.privacy-dialog-content h3 { margin: 1.8rem 0 .45rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.privacy-dialog-content a { color: var(--royal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.privacy-accept { margin: 1.2rem 2rem 2rem; }

.site-footer { padding: 3rem 0; background: #080f24; color: #fff; }
.footer-grid { display: grid; grid-template-columns: .7fr .8fr 1.2fr; align-items: center; gap: 2rem; }
.footer-brand .brand-logo-shell { width: 82px; height: 82px; }
.footer-brand .brand-logo-shell img { width: 76px; height: 76px; }
.footer-brand .brand-name { color: rgba(255,255,255,.75); }
.footer-grid > p { margin: 0; color: rgba(255,255,255,.54); font-family: var(--serif); font-size: 1.1rem; line-height: 1.45; }
.footer-meta { display: flex; justify-content: flex-end; gap: 2rem; color: rgba(255,255,255,.45); font-size: .73rem; }
.footer-meta a { color: rgba(255,255,255,.78); }
.footer-privacy-link { color: rgba(255,255,255,.78); font-size: .73rem; font-weight: 500; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: #276e50;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { background: #318660; transform: translateY(-3px); }
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }

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

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes hero-in { from { opacity: .35; transform: scale(1.07); } to { opacity: 1; transform: scale(1.015); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .site-nav { gap: 1rem; }
  .site-nav a { font-size: .76rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-signature { display: none; }
  .intro-grid, .audience-grid { grid-template-columns: 1fr; }
  .intro-content { padding-top: 0; }
  .services-top { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .method-heading { grid-template-columns: 1fr; }
  .method-heading > p:last-child { max-width: 550px; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-steps li:nth-child(2) { border-right: 0; }
  .method-steps li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .method-steps li:nth-child(3) { padding-left: 0; }
  .catering-grid, .contact-grid { grid-template-columns: 1fr; }
  .catering-art { min-height: 390px; }
  .giant-c { font-size: 26rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--light-line); }
}

@media (max-width: 760px) {
  .page-shell, .nav-shell, .hero-rail { width: min(calc(100% - 2rem), var(--max)); }
  .section { padding: 5.5rem 0; }
  .nav-shell { min-height: 74px; }
  .brand-logo-shell { width: 50px; height: 50px; }
  .brand-logo-shell img { width: 46px; height: 46px; }
  .brand-name { font-size: .6rem; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: calc(100svh - 74px);
    padding: 2rem 1rem;
    background: rgba(9,18,44,.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 1rem; border-bottom: 1px solid var(--light-line); font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
  .site-nav .nav-cta { margin-top: 1rem; border: 1px solid var(--gold); color: var(--gold); font-family: var(--sans); font-size: .9rem; font-weight: 700; text-align: center; }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: 760px; height: 100svh; }
  .hero-media { background-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,15,42,.96) 0%, rgba(8,24,62,.76) 72%, rgba(7,22,55,.52) 100%), linear-gradient(0deg, rgba(6,14,36,.8) 0%, transparent 55%); }
  .hero-grid { padding-top: 74px; padding-bottom: 105px; }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-rail { min-height: 64px; }
  .hero-rail span { padding: .7rem .35rem; font-size: .58rem; letter-spacing: .08em; }
  .intro-grid { gap: 2rem; }
  .values { grid-template-columns: 1fr; gap: 1.5rem; }
  .values article { padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
  .values article:last-child { border-bottom: 0; }
  .service-list { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 36px 1fr; min-height: auto; padding: 2rem 1.4rem; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li, .method-steps li + li, .method-steps li:nth-child(3) { min-height: auto; padding: 1.6rem 0; border-top: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-steps li > span { margin-bottom: 1.7rem; }
  .catering-grid { gap: 2rem; }
  .catering-art { min-height: 330px; }
  .giant-c { font-size: 22rem; }
  .event-ticket { width: 250px; padding: 1.5rem; }
  .event-ticket strong { font-size: 2rem; }
  .audience-list article { grid-template-columns: 35px 1fr; }
  .audience-list p { grid-column: 2; }
  .contact-options { grid-template-columns: 1fr; }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .identity-options { grid-template-columns: 1fr; }
  .privacy-consent { grid-template-columns: 20px 1fr; }
  .privacy-link { grid-column: 2; }
  .privacy-dialog-header { padding: 1.4rem 1.2rem 1rem; }
  .privacy-dialog-content { padding: 1.3rem 1.2rem .4rem; }
  .privacy-accept { margin: 1rem 1.2rem 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { grid-column: auto; flex-direction: column; gap: .75rem; }
  .whatsapp-float { right: 1rem; bottom: 1rem; width: 50px; height: 50px; }
}

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