@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500&display=swap");
:root {
  --red: #960705;
  --red-deep: #720503;
  --ink: #111111;
  --muted: #6d6d6d;
  --paper: #ffffff;
  --soft: #f6f5f2;
  --line: rgba(17, 17, 17, 0.13);
  --serif: Didot, "Bodoni Moda", "Bodoni MT", Georgia, serif;
  --sans: Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; display: flex; width: 100%; height: 78px;
  align-items: center; justify-content: space-between; padding: 0 clamp(22px, 4vw, 68px);
  border-bottom: 1px solid transparent; transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.95); border-color: var(--line); box-shadow: 0 8px 28px rgba(17,17,17,.04); backdrop-filter: blur(14px); }
.header-brand { position: relative; display: grid; width: clamp(145px, 14vw, 215px); place-items: center; }
.header-logo { grid-area: 1 / 1; display: block; width: 100%; height: auto; transition: opacity .25s ease; }
.header-logo-dark { opacity: 0; }
.site-header.is-scrolled .header-logo-light { opacity: 0; }
.site-header.is-scrolled .header-logo-dark { opacity: 1; }
.header-cta { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.92); border-radius: 999px; padding: 10px 18px 7px 18px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.site-header.is-scrolled .header-cta { border-color: var(--red); background: var(--red); color: #fff; }
.header-cta:hover { border-color: var(--red); background: var(--red); color: #fff; }

.hero { position: relative; display: grid; min-height: 100svh; place-items: center; overflow: hidden; background: #d8d3c8; isolation: isolate; }
.hero-video { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-card { display: flex; width: min(820px, calc(100% - 40px)); flex-direction: column; align-items: center; margin-top: 44px; padding: clamp(30px, 4vw, 54px) clamp(28px, 5vw, 62px) clamp(34px, 4.5vw, 58px); color: #fff; text-align: center; text-shadow: 0 2px 22px rgba(0,0,0,.32); }
.hero-brand { margin: 0; line-height: 0; }
.hero-logo { display: block; width: clamp(180px, 13vw, 250px); height: auto; }
.hero-divider { width: 42px; height: 2px; margin: 24px 0 22px; background: var(--red); }
.hero-title { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.2vw, 58px); font-weight: 400; letter-spacing: -.035em; line-height: .98; text-wrap: balance; }
.hero-card > p { max-width: 440px; margin: 21px 0 0; color: #fff; font-size: 15px; line-height: 1.65; }
.primary-cta { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; margin-top: 28px; border-radius: 999px; padding: 14px 24px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background-color .2s ease, transform .2s ease; }
.primary-cta:hover { background: var(--red-deep); transform: translateY(-2px); }
.scroll-cue { position: absolute; bottom: 25px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 9px; transform: translateX(-50%); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 1px; height: 26px; background: rgba(255,255,255,.8); }

.contact-section { padding: clamp(94px, 10vw, 150px) clamp(22px, 6vw, 94px) clamp(84px, 9vw, 132px); background: var(--soft); }
.contact-heading { max-width: 920px; margin: 0 auto 66px; text-align: center; }
.eyebrow { width: fit-content; margin: 0 auto 21px; border-radius: 999px; padding: 5px 12px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 82px); font-weight: 400; letter-spacing: -.04em; line-height: .98; text-wrap: balance; }
.contact-heading > p:last-child { max-width: 680px; margin: 26px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact-form { position: relative; max-width: 1120px; margin: 0 auto; padding: 46px 0 38px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 42px; }
.field { display: flex; flex-direction: column; gap: 11px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: #444; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.field label b { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #c8c8c8; border-radius: 0; outline: 0; padding: 13px 2px 15px; background: transparent; color: var(--ink); font-size: 15px; transition: border-color .2s ease; }
.field select { cursor: pointer; }
.field textarea { min-height: 112px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9b9b9b; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.form-footer { display: flex; flex-direction: column; gap: 28px; align-items: stretch; margin-top: 38px; }
.consent { display: grid; grid-template-columns: 19px 1fr; gap: 13px; align-items: start; color: #626262; cursor: pointer; font-size: 11px; line-height: 1.65; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--red); }
.form-action { display: flex; width: min(100%, 320px); flex-direction: column; align-items: stretch; align-self: center; gap: 13px; }
.form-action button { min-height: 50px; border: 0; border-radius: 999px; padding: 14px 24px; background: var(--red); color: #fff; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: background-color .2s ease, transform .2s ease; }
.form-action button:hover { background: var(--red-deep); transform: translateY(0); }
.form-action button:disabled { cursor: wait; opacity: .62; transform: none; }
.form-message { min-height: 36px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.form-message.success { color: #52754e; }
.form-message.error { color: var(--red); }
.success-panel { display: flex; min-height: 460px; flex-direction: column; align-items: center; justify-content: center; padding: 54px 24px; text-align: center; outline: none; }
.success-icon { display: grid; width: 64px; height: 64px; margin-bottom: 24px; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-size: 28px; line-height: 1; }
.success-panel .eyebrow { margin-bottom: 22px; }
.success-panel h3 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.success-panel > p:not(.eyebrow) { max-width: 610px; margin: 24px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.success-panel button { min-height: 48px; margin-top: 30px; border: 1px solid var(--red); border-radius: 999px; padding: 13px 24px; background: transparent; color: var(--red); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background-color .2s ease, color .2s ease; }
.success-panel button:hover { background: var(--red); color: #fff; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { display: flex; min-height: 112px; align-items: center; justify-content: space-between; gap: 34px; border-top: 1px solid #e8e8e8; padding: 28px clamp(22px, 5vw, 80px); background: #fff; }
.site-footer img { display: block; width: clamp(140px, 15vw, 210px); height: auto; }
.site-footer small { color: #777; font-size: 11px; }
.whatsapp-float { position: fixed; z-index: 70; right: 24px; bottom: 80px; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; border-radius: 999px; padding: 13px 18px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; transition: background-color .2s ease, transform .2s ease; }
.whatsapp-float:hover { background: var(--red-deep); transform: translateY(-2px); }
.whatsapp-float svg { width: 21px; height: 21px; fill: currentColor; }
.header-cta:focus-visible, .primary-cta:focus-visible, .scroll-cue:focus-visible, .form-action button:focus-visible, .success-panel button:focus-visible, .whatsapp-float:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 17px; }
  .header-brand { width: 126px; }
  .header-cta { min-height: 38px; padding: 9px 12px; font-size: 9px; letter-spacing: .07em; }
  .hero-card { margin-top: 38px; padding: 30px 24px 34px; }
  .hero-logo { width: 200px; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .hero-card > p { font-size: 14px; }
  .hero-video { object-position: 52% center; }
  .scroll-cue { display: none; }
  .contact-section { padding: 88px 20px 72px; }
  .contact-heading { margin-bottom: 48px; }
  .contact-heading h2 { font-size: clamp(46px, 13vw, 64px); }
  .form-grid { grid-template-columns: 1fr; gap: 28px; }
  .field-wide { grid-column: auto; }
  .form-action { width: 100%; }
  .contact-form { padding-top: 36px; }
  .site-footer { min-height: 150px; flex-direction: column; justify-content: center; gap: 18px; text-align: center; }
  .site-footer img { width: 165px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; min-height: 0; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg { width: 23px; height: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
