:root {
  --bg: #020403;
  --bg-soft: #07110d;
  --green-deep: #081b13;
  --green-velvet: #0d2419;
  --green-glow: rgba(34, 101, 63, 0.28);
  --gold: #c89a3d;
  --gold-light: #e2b45a;
  --text: #f5f2ea;
  --muted: #bbb3a7;
  --border: rgba(255, 255, 255, 0.1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 8%, rgba(43, 116, 72, 0.3), transparent 34rem),
    radial-gradient(circle at 10% 58%, rgba(200, 154, 61, 0.1), transparent 30rem),
    linear-gradient(180deg, var(--green-deep), var(--bg) 56%, var(--green-deep));
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
.brand-copy {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  width: calc(100% - 32px);
  max-width: 1120px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 180, 90, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(226, 180, 90, 0.055), transparent 24%, rgba(43, 116, 72, 0.075) 76%, rgba(226, 180, 90, 0.04)),
    rgba(9, 18, 13, 0.74);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(43, 116, 72, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 26px rgba(226, 180, 90, 0.035);
  backdrop-filter: blur(18px);
}

.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.topbar::before {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 232, 184, 0.12) 42%, transparent 62%);
  opacity: 0.65;
}

.topbar::after {
  left: 7%;
  right: 7%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 180, 90, 0.48), transparent);
  opacity: 0.7;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-seal {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: var(--text);
}

.brand-seal img {
  width: 108%;
  height: 108%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  font-size: 20px;
  line-height: 1;
}

.brand-copy small {
  margin-top: 2px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.topbar-link,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.topbar-link {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold-light), #b9842a);
  color: #0b0d0c;
  font-size: 13px;
}

.btn {
  gap: 10px;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 0.3s ease, transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 0.6;
  transform: translateX(72%);
}

.btn-primary {
  border: 1px solid rgba(255, 214, 132, 0.32);
  background: linear-gradient(135deg, var(--gold-light), #b9842a);
  color: #0b0d0c;
  box-shadow:
    0 16px 44px rgba(200, 154, 61, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -10px 18px rgba(143, 106, 37, 0.18);
}

.btn-primary:hover {
  box-shadow:
    0 20px 54px rgba(226, 180, 90, 0.36),
    0 0 0 5px rgba(226, 180, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.scroll-hero {
  height: 210vh;
  min-height: 980px;
  background: var(--bg);
}

.scroll-hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #020403;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.hero-vignette,
.hero-darken {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-vignette {
  z-index: -3;
  background:
    radial-gradient(circle at 58% 42%, transparent 0%, rgba(2, 4, 3, 0.08) 44%, rgba(2, 4, 3, 0.58) 100%),
    linear-gradient(0deg, rgba(2, 4, 3, 0.58) 0%, rgba(2, 4, 3, 0.1) 46%, rgba(2, 4, 3, 0.34) 100%);
}

.hero-darken {
  z-index: -2;
  opacity: var(--copy-progress, 1);
  background:
    radial-gradient(circle at 50% 46%, rgba(2, 4, 3, 0.34), rgba(2, 4, 3, 0.84) 72%),
    linear-gradient(90deg, rgba(2, 4, 3, 0.42), rgba(2, 4, 3, 0.24), rgba(2, 4, 3, 0.48));
}

.hero-reveal {
  width: min(1040px, calc(100% - 56px));
  margin-top: 8vh;
  text-align: center;
  opacity: var(--copy-progress, 1);
  transform: translateY(calc((1 - var(--copy-progress, 1)) * -34px));
  filter: blur(calc((1 - var(--copy-progress, 1)) * 8px));
  pointer-events: none;
}

.scroll-hero.is-copy-visible .hero-reveal {
  pointer-events: auto;
}

.eyebrow,
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(226, 180, 90, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 13, 0.58);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-reveal h1 {
  font-size: clamp(44px, 5.15vw, 82px);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.68);
}

.hero-reveal h1 span,
.section-copy h2 span {
  color: var(--gold-light);
  text-shadow: 0 0 34px rgba(226, 180, 90, 0.22);
}

.hero-lead {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(245, 242, 234, 0.76);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: balance;
}

.section-copy p strong {
  color: var(--text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.experience-section,
.form-section {
  position: relative;
  scroll-margin-top: 92px;
  padding: 112px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.experience-section {
  z-index: 2;
  margin-top: -220px;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 118px;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(43, 116, 72, 0.22), transparent 28rem),
    radial-gradient(circle at 16% 80%, rgba(226, 180, 90, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(13, 36, 25, 0.96), rgba(4, 12, 8, 0.98));
  box-shadow: 0 -28px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(226, 180, 90, 0.08);
}

.experience-section::before,
.experience-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.experience-section::before {
  z-index: -2;
  width: 126%;
  background: url("assets/casal-evento.png") 0% center / cover no-repeat;
  transform: translateX(-26%);
}

.experience-section::after {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 22%, rgba(38, 105, 67, 0.22), transparent 24rem),
    linear-gradient(90deg, rgba(5, 18, 12, 0.08) 0%, rgba(5, 18, 12, 0.46) 34%, rgba(4, 14, 9, 0.94) 64%, rgba(4, 12, 8, 0.98) 100%),
    linear-gradient(0deg, rgba(4, 12, 8, 0.88) 0%, rgba(7, 24, 16, 0.24) 42%, rgba(4, 12, 8, 0.76) 100%);
}

.split-section {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.section-copy h2,
.form-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-copy p,
.form-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-copy {
  width: min(680px, 100%);
  margin-left: auto;
  padding: 18px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  gap: 18px;
}

.feature-grid article {
  min-height: 212px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(58px, auto) 1fr;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(226, 180, 90, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 8%, rgba(226, 180, 90, 0.14), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 31, 21, 0.76);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.38),
    0 0 72px rgba(34, 101, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(226, 180, 90, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(43, 116, 72, 0.18), transparent 42%);
  opacity: 0.58;
  pointer-events: none;
}

.feature-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 180, 90, 0.26);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.46),
    0 0 86px rgba(43, 116, 72, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  padding: 10px;
  border: 1px solid rgba(226, 180, 90, 0.24);
  border-radius: 50%;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 35% 22%, rgba(226, 180, 90, 0.16), transparent 62%),
    rgba(10, 48, 29, 0.68);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-grid strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.feature-grid span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}

.form-section {
  z-index: 3;
  margin-top: -82px;
  padding-top: 158px;
  border-radius: 34px 34px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226, 180, 90, 0.1);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.045), transparent 118px),
    radial-gradient(circle at 78% 18%, rgba(43, 116, 72, 0.2), transparent 30rem),
    radial-gradient(circle at 16% 82%, rgba(226, 180, 90, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(10, 31, 21, 0.98), rgba(3, 10, 7, 1));
  box-shadow: 0 -28px 90px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 62% 42%, #000 0%, transparent 70%);
  opacity: 0.34;
}

.form-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: start;
}

.event-form {
  display: grid;
  gap: 22px;
  padding: 36px;
  border: 1px solid rgba(226, 180, 90, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 26, 17, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 80px rgba(34, 101, 63, 0.09);
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 10px;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  outline: none;
}

select {
  appearance: none;
}

option {
  background: #101712;
}

.submit-btn {
  width: 100%;
  min-height: 60px;
  white-space: normal;
  text-align: center;
}

.form-footnote {
  color: rgba(245, 242, 234, 0.55);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 44px 0 34px;
  border-top: 1px solid rgba(226, 180, 90, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 180, 90, 0.08), transparent 25rem),
    radial-gradient(circle at 82% 18%, rgba(43, 116, 72, 0.2), transparent 32rem),
    linear-gradient(180deg, rgba(6, 20, 13, 0.98), #020403);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 68%);
  opacity: 0.4;
}

.footer-inner,
.footer-legal {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner {
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 180, 90, 0.8);
  border-radius: 50%;
  object-fit: cover;
  background: var(--text);
  box-shadow: 0 0 24px rgba(226, 180, 90, 0.12);
}

.footer-copy strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.footer-copy span {
  display: block;
  margin-top: 5px;
  color: rgba(245, 242, 234, 0.58);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  color: rgba(245, 242, 234, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-legal {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 242, 234, 0.48);
  font-size: 12px;
  line-height: 1.5;
}

.privacy-page {
  min-height: 100vh;
  padding: 138px 0 86px;
  background:
    radial-gradient(circle at 78% 10%, rgba(43, 116, 72, 0.23), transparent 31rem),
    radial-gradient(circle at 16% 40%, rgba(226, 180, 90, 0.08), transparent 27rem),
    linear-gradient(180deg, var(--green-deep), var(--bg) 62%, var(--green-deep));
}

.privacy-shell {
  width: min(100%, 900px);
  max-width: 900px;
  min-width: 0;
}

.privacy-hero h1 {
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  text-wrap: balance;
}

.privacy-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(245, 242, 234, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.privacy-content {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.privacy-block {
  max-width: 100%;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(226, 180, 90, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 180, 90, 0.08), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 26, 17, 0.82);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.privacy-block h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.05;
}

.privacy-block p,
.privacy-block li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.privacy-block ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .scroll-hero {
    height: 205vh;
    min-height: 920px;
  }

  .split-section,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .form-section {
    margin-top: -56px;
    padding-top: 118px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .topbar {
    top: 12px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }

  .topbar-link {
    display: none;
  }

  .brand-copy {
    font-size: 18px;
  }

  .brand-seal {
    width: 38px;
    height: 38px;
  }

  .scroll-hero-sticky {
    min-height: 100svh;
  }

  .scroll-hero {
    height: 168vh;
    min-height: 720px;
  }

  .hero-video {
    object-position: 54% center;
  }

  .hero-reveal {
    width: calc(100% - 36px);
    margin-top: 2vh;
    text-align: left;
  }

  .hero-reveal h1 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 330px;
    margin-top: 16px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    line-height: 1.58;
    color: rgba(245, 242, 234, 0.78);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .experience-section,
  .form-section {
    padding: 76px 0;
  }

  .experience-section {
    margin-top: -170px;
    min-height: auto;
    padding-top: 92px;
    border-radius: 26px 26px 0 0;
  }

  .form-section {
    margin-top: -42px;
    padding-top: 92px;
    border-radius: 26px 26px 0 0;
  }

  .experience-section::before {
    width: 100%;
    background-position: 43% center;
    transform: none;
  }

  .experience-section::after {
    background:
      linear-gradient(90deg, rgba(2, 4, 3, 0.72) 0%, rgba(2, 4, 3, 0.56) 44%, rgba(2, 4, 3, 0.84) 100%),
      linear-gradient(0deg, rgba(2, 4, 3, 0.92) 0%, rgba(2, 4, 3, 0.3) 40%, rgba(2, 4, 3, 0.8) 100%);
  }

  .section-copy {
    margin-left: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .feature-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
    grid-template-rows: auto auto auto;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    padding: 9px;
  }

  .feature-grid strong {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 28px;
  }

  .feature-grid span {
    font-size: 14px;
  }

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

  .event-form {
    padding: 22px;
    border-radius: 24px;
  }

  .site-footer {
    padding: 34px 0 30px;
  }

  .footer-inner,
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .privacy-page {
    padding: 118px 0 64px;
  }

  .privacy-shell {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding-right: 0;
    padding-left: 0;
  }

  .privacy-hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .privacy-block {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
  }
}

@media (max-width: 370px) {
  .hero-reveal h1 {
    font-size: 32px;
  }

  .eyebrow,
  .section-subtitle {
    letter-spacing: 2.2px;
  }

  .brand-copy {
    font-size: 16px;
  }
}
