:root {
  color-scheme: dark;
  --black-coffee: #0d0907;
  --black-brown: #15100d;
  --ink: #1f1712;
  --bone: #f2eadc;
  --bone-soft: #d9cfbf;
  --muted: #a89b8b;
  --tobacco: #8a5a34;
  --olive: #303624;
  --champagne: #d2b77e;
  --oxblood: #6e1f25;
  --line: rgba(242, 234, 220, 0.14);
  --line-strong: rgba(242, 234, 220, 0.26);
  --surface: rgba(255, 249, 238, 0.045);
  --surface-strong: rgba(255, 249, 238, 0.075);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --space-page: clamp(1rem, 3.4vw, 3.75rem);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black-coffee);
  color: var(--bone);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(242, 234, 220, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 220, 0.018) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.22;
  z-index: -1;
}

body.coastal-page {
  background: #f4ebdd;
  color: #181310;
}

body.coastal-page::before {
  background-image:
    linear-gradient(rgba(199, 163, 90, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 163, 90, 0.12) 1px, transparent 1px);
  opacity: 0.28;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  outline-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4.4rem, 13vw, 10.8rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.25rem, 5.6vw, 5.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--bone-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.skip-link {
  background: var(--bone);
  color: var(--black-coffee);
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(13, 9, 7, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  left: 0;
  min-height: 78px;
  padding: 1rem var(--space-page);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  display: inline-flex;
  font-family: var(--display);
  height: 42px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 42px;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--bone);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 42px;
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(4px);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: rotate(40deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  transform: rotate(-40deg);
}

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

.hero {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  min-height: 82svh;
  overflow: hidden;
  padding: clamp(3.8rem, 7vw, 6rem) var(--space-page) clamp(2.25rem, 5vw, 4rem);
  position: relative;
}

.hero--interior {
  min-height: 68svh;
}

.hero--interior h1,
.hero--legal h1 {
  font-size: clamp(3.8rem, 9vw, 7.5rem);
}

.hero--legal {
  grid-template-columns: minmax(0, 820px);
  min-height: 52svh;
}

.hero--home {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 237, 224, 0.98), rgba(246, 237, 224, 0.92)),
    #f6ede0;
  color: #1a0f0b;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  min-height: calc(100svh - 78px);
}

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

.hero--home::before {
  border-top: 1px solid rgba(214, 181, 109, 0.64);
  bottom: clamp(1.4rem, 4vw, 3rem);
  left: var(--space-page);
  right: var(--space-page);
}

.hero--home::after {
  background: #dceae5;
  height: clamp(3rem, 8vw, 7rem);
  opacity: 0.7;
  right: 0;
  top: 0;
  width: min(28vw, 380px);
}

.hero--home h1 {
  color: #1a0f0b;
  font-size: clamp(2.85rem, 4.35vw, 4.9rem);
  max-width: 860px;
}

.hero--home .eyebrow {
  color: #73513b;
}

.hero--home .hero__subheadline {
  color: #1a0f0b;
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.5vw, 1.36rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 680px;
}

.hero--home .hero__support,
.hero--home .microcopy {
  color: #5d5047;
}

.hero--home .hero__actions {
  margin-top: 1.35rem;
}

.hero--home .button--primary {
  background: #f05f4f;
  border-color: #f05f4f;
  color: #1a0f0b;
}

.hero--home .button--primary:hover {
  background: #ff7b68;
  border-color: #ff7b68;
}

.hero--home .button--secondary {
  border-color: rgba(26, 15, 11, 0.32);
  color: #1a0f0b;
}

.hero--home .button--secondary:hover {
  background: rgba(220, 234, 229, 0.6);
  border-color: rgba(214, 181, 109, 0.9);
}

body.coastal-page main {
  background: #f4ebdd;
}

body.coastal-page .section h2,
body.coastal-page .section h3 {
  color: #181310;
}

body.coastal-page .section p {
  color: #5c5047;
}

body.coastal-page .section .eyebrow {
  color: #1f5e63;
}

body.coastal-page .info-card,
body.coastal-page .tier-card,
body.coastal-page .essay-card,
body.coastal-page .drop-card {
  background: rgba(255, 250, 242, 0.68);
  border-color: rgba(199, 163, 90, 0.42);
  box-shadow: 0 18px 50px rgba(24, 19, 16, 0.08);
}

body.coastal-page .button--primary {
  background: #e77c6a;
  border-color: #e77c6a;
  color: #181310;
}

body.coastal-page .button--primary:hover {
  background: #f09180;
  border-color: #f09180;
}

body.coastal-page .button--secondary {
  border-color: rgba(24, 19, 16, 0.26);
  color: #181310;
}

body.coastal-page .button--secondary:hover {
  background: rgba(175, 201, 199, 0.3);
  border-color: rgba(199, 163, 90, 0.7);
}

body.coastal-page .site-footer {
  background: #0d0907;
  color: var(--bone);
}

body.coastal-page .site-footer h2,
body.coastal-page .site-footer .footer-brand {
  color: var(--bone);
}

body.coastal-page .site-footer p {
  color: var(--bone-soft);
}

body.coastal-page .hero:not(.hero--home) {
  background:
    linear-gradient(120deg, rgba(244, 235, 221, 0.98) 0%, rgba(244, 235, 221, 0.94) 62%, rgba(175, 201, 199, 0.62) 100%),
    #f4ebdd;
  border-bottom: 1px solid rgba(199, 163, 90, 0.34);
  color: #181310;
}

body.coastal-page .hero:not(.hero--home) h1,
body.coastal-page .hero:not(.hero--home) .hero__subheadline {
  color: #181310;
}

body.coastal-page .hero:not(.hero--home) .hero__support,
body.coastal-page .hero:not(.hero--home) .microcopy {
  color: #5c5047;
}

body.coastal-page .hero:not(.hero--home) .eyebrow {
  color: #1f5e63;
}

body.coastal-page .hero:not(.hero--home) .hero__aperture {
  background:
    linear-gradient(135deg, rgba(175, 201, 199, 0.88), rgba(216, 194, 163, 0.56)),
    #afc9c7;
  border-color: rgba(199, 163, 90, 0.62);
  box-shadow: 0 26px 70px rgba(24, 19, 16, 0.16);
}

body.coastal-page .hero:not(.hero--home) .hero__aperture::before {
  border-color: rgba(199, 163, 90, 0.5);
}

body.coastal-page .hero:not(.hero--home) .hero__aperture span {
  background: rgba(244, 235, 221, 0.76);
  border: 1px solid rgba(199, 163, 90, 0.46);
  color: #181310;
  padding: 0.45rem 0.35rem;
}

.hero__copy {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.hero__subheadline {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.1;
  max-width: 720px;
}

.hero__support {
  max-width: 580px;
}

.hero__actions,
.section-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.microcopy {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1rem;
}

.eyebrow {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero__aperture {
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(210, 183, 126, 0.14), rgba(48, 54, 36, 0.22)),
    var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  min-height: clamp(360px, 48vw, 520px);
  padding: 1.1rem;
  position: relative;
}

.hero--interior .hero__aperture {
  min-height: clamp(320px, 36vw, 430px);
}

.hero__aperture::before {
  border: 1px solid rgba(242, 234, 220, 0.24);
  content: "";
  inset: 1rem;
  position: absolute;
}

.hero__aperture span {
  align-self: end;
  color: rgba(242, 234, 220, 0.78);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__aperture span:nth-child(2) {
  justify-self: center;
}

.hero__aperture span:nth-child(3) {
  justify-self: end;
}

.hero__aperture--image {
  aspect-ratio: 4 / 5;
  background: #f6ede0;
  border-color: rgba(214, 181, 109, 0.82);
  box-shadow: 0 26px 70px rgba(26, 15, 11, 0.18);
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: 0;
}

.hero__aperture--image::before {
  border-color: rgba(214, 181, 109, 0.55);
  inset: 0.9rem;
  z-index: 2;
}

.hero__aperture--image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero--home .hero__aperture span {
  background: rgba(246, 237, 224, 0.82);
  border: 1px solid rgba(214, 181, 109, 0.58);
  color: #1a0f0b;
  font-size: 0.68rem;
  font-weight: 700;
  left: auto;
  padding: 0.46rem 0.58rem;
  position: absolute;
  right: auto;
  top: auto;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  z-index: 3;
}

.hero--home .hero__aperture span:nth-of-type(1) {
  left: 1.45rem;
  top: 1.45rem;
}

.hero--home .hero__aperture span:nth-of-type(2) {
  bottom: 1.45rem;
  left: 1.45rem;
}

.hero--home .hero__aperture span:nth-of-type(3) {
  left: 1.45rem;
  top: 4.55rem;
}

.button {
  align-items: center;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0.86rem 1.05rem;
  position: relative;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--black-coffee);
}

.button--primary:hover {
  background: var(--champagne);
  border-color: var(--champagne);
}

.button--secondary {
  background: transparent;
  color: var(--bone);
}

.button--secondary:hover {
  background: var(--surface-strong);
  border-color: var(--champagne);
}

.section {
  margin-inline: auto;
  max-width: var(--max-width);
  padding: clamp(4.5rem, 9vw, 8rem) var(--space-page);
}

.section--narrow {
  max-width: 930px;
  text-align: center;
}

.section-heading {
  max-width: 760px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid--access,
.card-grid--benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.tier-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.info-card h3,
.tier-card h3 {
  color: var(--bone);
}

.info-card p,
.tier-card p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.brand-mantra {
  background:
    linear-gradient(135deg, rgba(175, 201, 199, 0.86), rgba(216, 194, 163, 0.52)),
    #afc9c7;
  border: 1px solid rgba(199, 163, 90, 0.55);
  border-radius: var(--radius);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.brand-mantra span {
  border-bottom: 1px solid rgba(24, 19, 16, 0.15);
  color: #181310;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  line-height: 1;
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.brand-mantra span:last-child {
  border-bottom: 0;
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.study-panel {
  background:
    linear-gradient(135deg, rgba(48, 54, 36, 0.74), rgba(31, 23, 18, 0.96)),
    var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.75rem;
  min-height: 460px;
  padding: 1.25rem;
}

.study-panel span {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--bone-soft);
  display: flex;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.study-panel span:last-child {
  border-bottom: 0;
}

body.coastal-page .study-panel {
  background:
    linear-gradient(135deg, rgba(175, 201, 199, 0.88), rgba(244, 235, 221, 0.64)),
    #afc9c7;
  border-color: rgba(199, 163, 90, 0.46);
  box-shadow: 0 20px 60px rgba(24, 19, 16, 0.08);
}

body.coastal-page .study-panel span {
  border-bottom-color: rgba(24, 19, 16, 0.16);
  color: #181310;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.gallery-card {
  align-items: end;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(13, 9, 7, 0), rgba(13, 9, 7, 0.72)),
    var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  min-height: 260px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.gallery-card::before {
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.gallery-card--1::before,
.gallery-card--4::before {
  background: linear-gradient(135deg, rgba(138, 90, 52, 0.48), rgba(13, 9, 7, 0.1));
}

.gallery-card--2::before,
.gallery-card--5::before {
  background: linear-gradient(135deg, rgba(48, 54, 36, 0.58), rgba(13, 9, 7, 0.12));
}

.gallery-card--3::before,
.gallery-card--6::before {
  background: linear-gradient(135deg, rgba(110, 31, 37, 0.45), rgba(13, 9, 7, 0.14));
}

.gallery-card span {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.5rem);
  line-height: 1;
  position: relative;
}

.gallery-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.gallery-grid--compact .gallery-card {
  min-height: 210px;
}

body.coastal-page .gallery-card {
  background:
    linear-gradient(180deg, rgba(244, 235, 221, 0), rgba(244, 235, 221, 0.55)),
    #afc9c7;
  border-color: rgba(199, 163, 90, 0.46);
  box-shadow: 0 18px 50px rgba(24, 19, 16, 0.08);
}

body.coastal-page .gallery-card--1::before,
body.coastal-page .gallery-card--4::before {
  background: linear-gradient(135deg, rgba(231, 124, 106, 0.34), rgba(244, 235, 221, 0.16));
}

body.coastal-page .gallery-card--2::before,
body.coastal-page .gallery-card--5::before {
  background: linear-gradient(135deg, rgba(175, 201, 199, 0.72), rgba(31, 94, 99, 0.18));
}

body.coastal-page .gallery-card--3::before,
body.coastal-page .gallery-card--6::before {
  background: linear-gradient(135deg, rgba(216, 194, 163, 0.66), rgba(244, 235, 221, 0.2));
}

body.coastal-page .gallery-card span {
  color: #181310;
}

.form-section {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.form-section--single {
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
}

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-shell h3 {
  margin-bottom: 1.5rem;
}

body.coastal-page .form-shell {
  background: rgba(255, 250, 242, 0.72);
  border-color: rgba(199, 163, 90, 0.42);
  box-shadow: 0 18px 50px rgba(24, 19, 16, 0.08);
}

body.coastal-page label {
  color: #181310;
}

body.coastal-page input,
body.coastal-page select,
body.coastal-page textarea {
  background: rgba(255, 250, 242, 0.92);
  border-color: rgba(199, 163, 90, 0.48);
  color: #181310;
}

body.coastal-page .form-status {
  color: #5c5047;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid__wide {
  grid-column: 1 / -1;
}

label {
  color: var(--bone);
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: rgba(13, 9, 7, 0.78);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--bone);
  min-height: 48px;
  padding: 0.85rem;
  width: 100%;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-label {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  line-height: 1.3;
  text-transform: none;
}

.checkbox-label input {
  height: 18px;
  min-height: auto;
  width: 18px;
}

.form-shell .button {
  margin-top: 1.25rem;
  width: 100%;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1rem 0 0;
  min-height: 1.4em;
}

.form-status[data-state="success"] {
  color: var(--champagne);
}

.form-status[data-state="error"] {
  color: #efb6ad;
}

.tier-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.tier-grid--home .tier-card {
  min-height: 300px;
}

.tier-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.tier-card__price {
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.coastal-page .tier-card__price {
  color: #1f5e63;
}

.drop-grid,
.essay-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.drop-card,
.essay-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 280px;
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.drop-card {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(24, 19, 16, 0), rgba(24, 19, 16, 0.12)),
    #afc9c7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.drop-card::before {
  border: 1px solid rgba(199, 163, 90, 0.48);
  content: "";
  inset: 0.8rem;
  pointer-events: none;
  position: absolute;
}

.drop-card::after {
  background: rgba(231, 124, 106, 0.34);
  content: "";
  height: 42%;
  position: absolute;
  right: -14%;
  top: 18%;
  transform: rotate(12deg);
  width: 48%;
}

.drop-card--2,
.drop-card--5 {
  background: linear-gradient(135deg, rgba(244, 235, 221, 0.75), rgba(216, 194, 163, 0.74));
}

.drop-card--3,
.drop-card--6 {
  background: linear-gradient(135deg, rgba(175, 201, 199, 0.92), rgba(31, 94, 99, 0.22));
}

.drop-card span,
.essay-card .eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drop-card span,
.drop-card h3 {
  position: relative;
  z-index: 1;
}

.drop-card h3,
.essay-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.7rem);
  margin-bottom: 0;
}

.essay-card {
  min-height: 260px;
}

.tier-card .button {
  margin-top: 1.5rem;
  width: 100%;
}

.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

body.coastal-page .faq-list {
  border-top-color: rgba(199, 163, 90, 0.42);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

body.coastal-page details {
  border-bottom-color: rgba(199, 163, 90, 0.42);
}

summary {
  color: var(--bone);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  list-style: none;
}

body.coastal-page summary {
  color: #181310;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  max-width: 760px;
  padding-top: 1rem;
}

.editorial-list {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}

body.coastal-page .editorial-list {
  border-top-color: rgba(199, 163, 90, 0.42);
}

.editorial-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

body.coastal-page .editorial-list article {
  border-bottom-color: rgba(199, 163, 90, 0.42);
}

.editorial-list span {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 1.4rem;
}

body.coastal-page .editorial-list span {
  color: #1f5e63;
}

.editorial-list h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.legal-content {
  max-width: 880px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

body.coastal-page .legal-content section {
  border-top-color: rgba(199, 163, 90, 0.42);
}

.legal-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) var(--space-page) 7rem;
}

.footer-cta {
  margin-inline: auto;
  max-width: var(--max-width);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-cta h2 {
  max-width: 780px;
}

.footer-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-inline: auto;
  max-width: var(--max-width);
  padding-top: 2rem;
}

.footer-brand {
  color: var(--bone);
  display: inline-block;
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.footer-grid nav {
  display: grid;
  gap: 0.6rem;
}

.footer-grid nav a {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid nav a:hover {
  color: var(--bone);
}

.fine-print {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 2rem auto 0;
  max-width: var(--max-width);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1120px) {
  .card-grid,
  .card-grid--five,
  .card-grid--access,
  .card-grid--benefits,
  .tier-grid,
  .drop-grid,
  .essay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(13, 9, 7, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 1rem var(--space-page) 1.4rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 0.9rem 0;
  }

  .hero,
  .hero--interior {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(4rem, 14vw, 6rem);
  }

  .hero__aperture {
    min-height: 320px;
  }

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

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

@media (max-width: 640px) {
  h1 {
    font-size: clamp(4rem, 19vw, 6.8rem);
  }

  .hero__actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .card-grid--five,
  .card-grid--access,
  .card-grid--benefits,
  .tier-grid,
  .drop-grid,
  .essay-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .tier-card {
    min-height: auto;
  }

  .gallery-card {
    min-height: 220px;
  }

  .editorial-list article {
    gap: 0.75rem;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .mobile-sticky-cta {
    background: rgba(13, 9, 7, 0.95);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 0.65rem;
    position: fixed;
    right: 0;
    z-index: 60;
  }

  .mobile-sticky-cta a {
    align-items: center;
    border: 1px solid var(--line-strong);
    color: var(--bone);
    display: flex;
    font-size: 0.72rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 44px;
    text-transform: uppercase;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--bone);
    color: var(--black-coffee);
  }
}
