:root {
  --bg: #080a0a;
  --panel: #101211;
  --panel-soft: rgba(17, 19, 18, .82);
  --ink: #f2e4c8;
  --muted: rgba(242, 228, 200, .7);
  --quiet: rgba(242, 228, 200, .48);
  --gold: #c6a15b;
  --gold-2: #e2b76a;
  --rust: #8c2f1e;
  --line: rgba(198, 161, 91, .33);
  --line-soft: rgba(198, 161, 91, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; min-width: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 7%, rgba(180, 78, 29, .18), transparent 24vw),
    radial-gradient(circle at 80% 22%, rgba(198, 161, 91, .12), transparent 28vw),
    linear-gradient(140deg, #0b0d0d 0%, #080a0a 48%, #050606 100%);
}

main {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("./assets/chaconia/bg-dark-texture.webp") center / cover;
  opacity: .23;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, transparent 0 52%, rgba(0,0,0,.76) 100%);
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--gold);
  color: #080a0a;
  transform: translateY(-140%);
}

.skip:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 8, .82);
  backdrop-filter: blur(16px);
  max-width: 100vw;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 48px;
  object-fit: contain;
}

.nav,
.site-footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242, 228, 200, .86);
  min-width: 0;
}

.nav a,
.site-footer nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.site-footer nav a:hover { border-color: var(--gold); color: var(--gold-2); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-1px); }
.button--gold { background: linear-gradient(135deg, #edc77b, #b98231); color: #080a0a; border-color: transparent; }
.button--ghost { background: rgba(0,0,0,.16); color: var(--ink); }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(42px, 5vw, 78px) clamp(18px, 5vw, 76px) 44px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.hero__content { max-width: 620px; }
.hero__content,
.hero__art { min-width: 0; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  color: #f7ead1;
}

h1 {
  max-width: 690px;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: .96;
}

h3 {
  font-size: 23px;
  line-height: 1.05;
}

.lead {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions,
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-line {
  display: grid;
  gap: 5px;
  margin-top: 34px;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  color: var(--muted);
}

.event-line span,
.season-card span {
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.event-line strong {
  color: #fff0d0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.event-line em {
  font-style: normal;
  font-size: 13px;
}

.hero__art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero__photo {
  width: min(560px, 92%);
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 40px 110px rgba(0,0,0,.65);
}

.hero__floral {
  position: absolute;
  right: -5%;
  bottom: -8%;
  width: min(315px, 46vw);
  opacity: .96;
  filter: drop-shadow(0 28px 55px rgba(0,0,0,.72));
}

.signal-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(14, 15, 14, .72);
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.signal-bar span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.section {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line-soft);
  width: 100%;
  max-width: 100vw;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p:not(.eyebrow),
.feature-card p,
.split__copy p,
.details-card p,
.about__copy p,
.reserve__copy p,
.contact__details p,
.footer__story p {
  color: var(--muted);
  line-height: 1.72;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: 24px;
  align-items: stretch;
}

.feature-card,
.curate-card,
.details-card,
.season-card,
.experience-card,
.sponsor-card,
.founder-card,
.contact-form,
.signup-form {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17,18,17,.92), rgba(7,8,8,.88));
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.feature-card {
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card--image { padding: 0; overflow: hidden; min-height: 370px; }
.feature-card--image img { width: 100%; height: 100%; object-fit: cover; }

.meta-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.meta-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.text-link {
  margin-top: 22px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.curate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.curate-card {
  min-height: 245px;
  padding: 24px 20px;
  text-align: center;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 22px;
}

.curate-card p,
.experience-card p,
.sponsor-card li,
.season-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split__copy { max-width: 650px; }
.split__copy .button { margin-top: 28px; }

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.check-grid span {
  padding: 14px 14px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.split__media {
  position: relative;
  border: 1px solid var(--line);
  min-height: 470px;
  overflow: hidden;
}

.split__media img,
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-panel {
  background: linear-gradient(180deg, rgba(14,15,14,.72), rgba(7,8,8,.84));
}

.event-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}

.event-layout__main,
.event-layout__photo,
.details-card {
  min-height: 250px;
}

.event-layout__main {
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid var(--line);
  background: rgba(8,9,9,.56);
}

.event-layout__photo {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.event-layout__photo img { width: 100%; height: 100%; object-fit: cover; }

.details-card {
  padding: 28px;
}

.mini-photo {
  width: 100%;
  max-height: 170px;
  margin-top: 18px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.season-card {
  min-height: 210px;
  padding: 22px;
}

.season-card h3 { margin-top: 14px; }
.season-card a { color: var(--gold-2); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.gallery-section {
  background: radial-gradient(circle at 85% 40%, rgba(147, 50, 24, .16), transparent 28vw);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  overflow: hidden;
}

.experience-card img {
  aspect-ratio: 4 / 3;
}

.experience-card h3,
.experience-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.experience-card h3 { margin-top: 18px; }
.experience-card p { padding-bottom: 22px; }

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
}

.sponsor-card strong {
  display: block;
  margin: 15px 0 22px;
  color: #fff1d2;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.sponsor-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding-left: 18px;
}

.sponsor-card .button {
  margin-top: auto;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding-top: clamp(62px, 7vw, 98px);
  padding-bottom: clamp(62px, 7vw, 98px);
  background:
    radial-gradient(circle at 20% 36%, rgba(226,183,106,.12), transparent 26vw),
    radial-gradient(circle at 84% 68%, rgba(140,47,30,.12), transparent 25vw),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 48%, rgba(0,0,0,.1));
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 740px;
}

.about__copy h2 {
  max-width: 650px;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: .9;
}

.about__copy p {
  max-width: 660px;
  margin: 18px 0 0;
}

.about__lead {
  color: #f4dfb9 !important;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16 !important;
}

.about__meaning {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about__meaning div {
  display: grid;
  grid-template-columns: minmax(105px, .32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}

.about__meaning div:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.about__meaning span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: .95;
}

.about__meaning p {
  margin: 0;
}

.about__statement {
  max-width: 590px !important;
  color: rgba(242, 228, 200, .82) !important;
  font-style: italic;
}

.about__identity {
  position: relative;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  gap: 16px;
}

.about__mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(226,183,106,.3);
  background:
    radial-gradient(circle at 50% 42%, rgba(226,183,106,.16), transparent 48%),
    linear-gradient(145deg, rgba(18,18,15,.86), rgba(5,6,6,.48));
  box-shadow: inset 0 0 0 1px rgba(226,183,106,.09), 0 34px 100px rgba(0,0,0,.28);
}

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

.about__mark::before {
  inset: 18px;
  border: 1px solid rgba(226,183,106,.14);
}

.about__mark::after {
  width: min(340px, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(226,183,106,.12);
  background: radial-gradient(circle, rgba(226,183,106,.08), transparent 62%);
}

.about__mark img {
  position: relative;
  z-index: 1;
  width: min(380px, 78%);
  filter: drop-shadow(0 32px 70px rgba(0,0,0,.75));
}

.about__mark span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 165px) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 0;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(20,19,15,.94), rgba(7,8,8,.88)),
    radial-gradient(circle at 0% 0%, rgba(226,183,106,.14), transparent 22vw);
}

.founder-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 170px;
  aspect-ratio: 1;
  background: url("./assets/chaconia/floral-icon-transparent.png") center / contain no-repeat;
  opacity: .16;
  pointer-events: none;
}

.founder-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.founder-card > div {
  position: relative;
  z-index: 1;
}

.founder-card span {
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.founder-card p { margin: 8px 0 0; font-size: 14px; }

.reserve {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 300px;
  padding-top: clamp(36px, 5vw, 62px);
  padding-bottom: clamp(36px, 5vw, 62px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 35%, rgba(226, 183, 106, .24), transparent 34vw),
    linear-gradient(115deg, rgba(8,10,10,.94), rgba(27,16,7,.86) 52%, rgba(8,10,10,.96)),
    url("./assets/chaconia/floral-ornament-card.webp") right bottom / 360px auto no-repeat;
}

.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.12), rgba(0,0,0,.64)),
    radial-gradient(circle at 75% 45%, rgba(140,47,30,.14), transparent 30vw);
  pointer-events: none;
}

.reserve__glitter {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .96;
  pointer-events: none;
}

.reserve__copy,
.signup-form {
  position: relative;
  z-index: 2;
}

.reserve .reveal {
  opacity: 1;
  transform: none;
}

.reserve__copy {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(226, 183, 106, .32);
  background: rgba(7, 8, 8, .72);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.reserve__copy h2 {
  white-space: nowrap;
  font-size: clamp(34px, 4vw, 58px);
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(226, 183, 106, .32);
  background: rgba(7, 8, 8, .78);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.signup-form label {
  display: block;
}

.signup-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.signup-form input {
  display: block;
  height: 46px;
  padding: 0 12px;
  border-color: rgba(226, 183, 106, .38);
  background: rgba(0,0,0,.32);
}

.signup-form input::placeholder {
  color: rgba(242, 228, 200, .42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signup-form .button {
  grid-column: 2;
  justify-self: end;
  min-width: 142px;
  min-height: 42px;
  height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.signup-form .form-status {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(0,0,0,.22);
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact__details dl {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact__details div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

dt {
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3vw, 36px);
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 76px) 34px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  background:
    radial-gradient(circle at 18% 10%, rgba(226, 183, 106, .16), transparent 24vw),
    radial-gradient(circle at 78% 42%, rgba(140, 47, 30, .18), transparent 30vw),
    linear-gradient(142deg, #050606 0%, #0d0e0d 46%, #050606 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5), rgba(0,0,0,.86)),
    url("./assets/chaconia/bg-dark-texture.webp") center / cover;
  opacity: .72;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226,183,106,.74), transparent);
}

.footer__mark {
  position: absolute;
  right: clamp(-150px, -9vw, -60px);
  top: 38px;
  z-index: -1;
  width: min(760px, 58vw);
  opacity: .2;
  pointer-events: none;
}

.footer__mark img {
  width: 100%;
  filter: drop-shadow(0 60px 110px rgba(0,0,0,.72));
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(290px, .82fr) minmax(360px, .62fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.footer__story {
  max-width: 690px;
}

.footer__story .brand {
  margin-bottom: clamp(30px, 5vw, 58px);
}

.footer__story h2 {
  max-width: 660px;
  font-size: clamp(48px, 6.8vw, 94px);
  line-height: .86;
}

.footer__story p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 16px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226,183,106,.48);
  color: var(--gold-2);
  background: rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer__socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(226,183,106,.86);
  background: rgba(226,183,106,.08);
}

.footer__socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.footer__socials path {
  fill: currentColor;
  stroke: none;
}

.footer__inquiry {
  position: relative;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(226, 183, 106, .42);
  background:
    linear-gradient(145deg, rgba(20,19,15,.92), rgba(7,8,8,.76)),
    radial-gradient(circle at 12% 0%, rgba(226,183,106,.18), transparent 18vw);
  box-shadow: 0 42px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(16px);
}

.footer__inquiry::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226,183,106,.14);
  pointer-events: none;
}

.footer__inquiry-head {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.footer__inquiry-head span {
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer__inquiry-head h3 {
  font-size: clamp(25px, 2.8vw, 38px);
}

.footer-form {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-form textarea {
  min-height: 126px;
  resize: vertical;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
  border-color: rgba(226,183,106,.24);
  background: rgba(0,0,0,.28);
}

.footer-form button {
  justify-self: start;
  margin-top: 4px;
}

.footer__directory {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 46px);
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.footer__contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 46px);
  margin: 0;
}

.footer__contact-list div {
  display: grid;
  gap: 4px;
}

.footer__contact-list a {
  color: var(--muted);
}

.site-footer .footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(242, 228, 200, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer .footer__nav a {
  color: var(--gold-2);
}

.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
}

.footer__legal p {
  margin: 0;
  color: rgba(242,228,200,.4);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer__links a,
.site-footer .footer__nav a {
  color: var(--gold-2);
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.legal-shell .brand {
  margin-bottom: 28px;
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(17,18,17,.94), rgba(7,8,8,.9)),
    url("./assets/chaconia/floral-corner-transparent.png") right bottom / min(360px, 48vw) auto no-repeat;
  box-shadow: 0 40px 110px rgba(0,0,0,.34);
}

.legal-card h1 {
  font-size: clamp(46px, 7vw, 78px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(25px, 3vw, 36px);
}

.legal-card p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.72;
}

.legal-card .button {
  margin-top: 24px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.image-dim-tooltip {
  position: fixed;
  z-index: 1000;
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 9px 11px;
  border: 1px solid rgba(226, 183, 106, .72);
  border-radius: 3px;
  background: rgba(6, 7, 7, .92);
  box-shadow: 0 14px 38px rgba(0,0,0,.42);
  color: #f7ead1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate3d(14px, 14px, 0);
  transition: opacity .12s ease;
}

.image-dim-tooltip span {
  color: rgba(242, 228, 200, .66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: none;
}

.image-dim-tooltip.is-visible {
  opacity: 1;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .hero,
  .intro-grid,
  .split,
  .about,
  .reserve,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero__art { min-height: 500px; }
  .curate-grid,
  .season-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-layout,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner,
  .footer__directory {
    grid-template-columns: 1fr;
  }
  .site-footer .footer__nav,
  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
  .about__identity {
    grid-template-rows: auto;
  }
  .about__mark {
    min-height: 340px;
  }
  .about__meaning div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 14px;
  }
  .brand span {
    font-size: 17px;
  }
  .site-header > .button { display: none; }
  .site-header .nav { display: none; }
  .site-footer {
    padding-top: 48px;
  }
  .footer-form__grid {
    grid-template-columns: 1fr;
  }
  .footer__story h2 {
    font-size: clamp(35px, 12vw, 54px);
  }
  .footer__mark {
    right: -110px;
    top: 72px;
    width: 420px;
    opacity: .16;
  }
  .hero {
    display: block;
    min-height: auto;
    padding: 48px 18px 34px;
    width: 100%;
    max-width: 100%;
  }
  .hero__content {
    width: 100%;
    max-width: 100%;
  }
  .lead {
    width: 100%;
    max-width: 330px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.8vw, 46px);
    line-height: .94;
    overflow-wrap: anywhere;
  }
  .hero__actions,
  .event-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }
  .hero__actions .button,
  .event-actions .button {
    width: 100%;
  }
  .event-line {
    max-width: 330px;
  }
  .event-line strong {
    font-size: 20px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  .hero__art {
    min-height: 360px;
    margin-top: 34px;
    width: 100%;
    overflow: hidden;
  }
  .hero__photo {
    width: 100%;
    aspect-ratio: 1 / 1.04;
  }
  .hero__floral {
    right: -46px;
    bottom: -36px;
    width: 220px;
  }
  .curate-grid,
  .season-grid,
  .experience-grid,
  .check-grid,
  .signup-form {
    grid-template-columns: 1fr;
  }
  .signup-form .button {
    grid-column: 1;
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }
  .founder-card {
    grid-template-columns: 1fr;
  }
  .founder-card img {
    max-width: 220px;
  }
  .signal-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-content: stretch;
    padding: 18px;
    letter-spacing: .08em;
  }
  .signal-bar span {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }
  .signal-bar span::after {
    display: none !important;
  }
  .section {
    padding: 56px 16px;
  }
}

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