:root {
  --ivory: #f8f4ec;
  --paper: #fffdf8;
  --sand: #e8dccb;
  --stone: #b5aa9d;
  --taupe: #75695d;
  --umber: #5c4a3f;
  --ink: #29231f;
  --soft-line: rgba(92, 74, 63, 0.18);
  --shadow: 0 26px 80px rgba(61, 48, 39, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(248, 244, 236, 0.96)),
    var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(92, 74, 63, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 74, 63, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}

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

main section {
  scroll-margin-top: 110px;
}

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

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

strong {
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: clamp(78px, 9vw, 108px);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.3rem;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.hero {
  display: grid;
  gap: 42px;
  min-height: auto;
  padding-top: 54px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 100%;
  text-align: center;
}

.eyebrow,
.section-kicker {
  color: var(--taupe);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  color: var(--umber);
  font-size: clamp(2.25rem, 5.4vw, 4.85rem);
  letter-spacing: 0;
}

h1 sup {
  margin-left: 0.06em;
  font-size: 0.2em;
  letter-spacing: 0;
  vertical-align: super;
}

h2 {
  color: var(--umber);
  font-size: clamp(1.85rem, 5.4vw, 3.85rem);
  line-height: 1.04;
}

h3 {
  color: var(--umber);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.hero-lede {
  max-width: 100%;
  margin-top: 26px;
  color: var(--taupe);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.75;
  text-align: center;
}

.hero-lines {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--taupe);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.55;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 26px;
  border: 1px solid var(--umber);
  background: var(--umber);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: transparent;
  color: var(--umber);
  transform: translateY(-2px);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(92, 74, 63, 0.14);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}

.intro {
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  text-align: center;
}

.intro h2 {
  margin-top: 18px;
}

.intro-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--taupe);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.split {
  display: grid;
  gap: 34px;
  border-bottom: 1px solid var(--soft-line);
}

.section-text {
  display: grid;
  gap: 22px;
  color: var(--taupe);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.section-text p:not(.quiet-emphasis) {
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
}

.section-text-center {
  max-width: 740px;
  margin: 28px auto 0;
  text-align: center;
}

.section-text-center p:not(.quiet-emphasis) {
  text-align: center;
  text-align-last: center;
}

.quiet-emphasis {
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
  color: var(--umber);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  line-height: 1.15;
}

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

.section-heading-center {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 16px;
}

.section-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(92, 74, 63, 0.14);
  background: rgba(255, 253, 248, 0.46);
  box-shadow: var(--shadow);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-image {
  margin-top: 0;
}

.location-image img {
  aspect-ratio: 4 / 5;
}

.media-layout,
.receive-intro {
  display: grid;
  gap: 36px;
}

.portrait-image img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.map-image img {
  aspect-ratio: 16 / 10;
}

.method-visual {
  padding-top: 0;
  padding-bottom: 0;
}

.wide-image img {
  aspect-ratio: 16 / 8;
}

.workshop {
  border-bottom: 1px solid var(--soft-line);
}

.workshop-layout {
  display: grid;
  gap: 36px;
  margin-top: 42px;
}

.workshop-lede {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--taupe);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.offer-panel {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--soft-line);
  background: rgba(255, 253, 248, 0.74);
}

.method-offer {
  margin-top: 42px;
}

.offer-details {
  display: grid;
  gap: 8px;
  color: var(--taupe);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.offer-details strong,
.offer-price {
  color: var(--umber);
  font-weight: 600;
}

.offer-price {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--soft-line);
  color: var(--taupe);
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 28px;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--umber);
  font-weight: 600;
}

.offer-panel .button {
  justify-self: start;
  margin-top: 0;
}

.step-grid,
.receive-grid {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  background: var(--soft-line);
  border: 1px solid var(--soft-line);
}

.step-card,
.receive-grid article {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.72);
}

.step-card span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.step-card p,
.receive-grid p {
  margin-top: 18px;
  color: var(--taupe);
}

.list-section {
  border-bottom: 1px solid var(--soft-line);
}

.refined-list {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--soft-line);
}

.refined-list p {
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
  color: var(--taupe);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.receive-grid article {
  min-height: 220px;
}

.questions {
  border-top: 1px solid var(--soft-line);
  text-align: center;
}

.questions h2 {
  margin-top: 16px;
}

.question-stack {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  line-height: 1.12;
}

.registration {
  padding-bottom: 96px;
}

.registration-inner {
  display: grid;
  gap: 30px;
  padding: 34px;
  background: var(--umber);
  color: var(--paper);
}

.registration-inner .section-kicker,
.registration-inner h2 {
  color: var(--paper);
}

.registration-details {
  display: grid;
  gap: 6px;
  color: rgba(255, 253, 248, 0.78);
}

.registration-details .offer-price {
  color: var(--paper);
}

.registration-list {
  border-top-color: rgba(255, 253, 248, 0.24);
  color: rgba(255, 253, 248, 0.82);
}

.registration-list li::before {
  color: var(--paper);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--umber);
}

.button-light:hover {
  background: transparent;
  color: var(--paper);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--soft-line);
  color: var(--taupe);
  font-size: 0.86rem;
}

.site-footer img {
  width: clamp(108px, 13vw, 150px);
  height: auto;
}

@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }

  .section-shell {
    width: min(1180px, calc(100% - 56px));
    padding: 100px 0;
  }

  .narrow {
    width: min(860px, calc(100% - 56px));
  }

  .hero {
    gap: 56px;
    padding-top: 62px;
  }

  .hero-media img {
    aspect-ratio: 2 / 1;
  }

  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr);
    gap: 70px;
    align-items: start;
  }

  .media-layout,
  .receive-intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    align-items: start;
    gap: 70px;
  }

  .media-layout {
    margin-top: 44px;
  }

  .workshop-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 0.86fr);
    align-items: start;
    gap: 70px;
    margin-top: 52px;
  }

  .media-layout .refined-list {
    margin-top: 0;
  }

  .workshop-layout .section-text,
  .media-layout .refined-list {
    min-height: 580px;
  }

  .location-image img,
  .portrait-image img {
    height: 580px;
    aspect-ratio: auto;
  }

  .step-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .step-card {
    grid-column: span 3;
  }

  .step-card:nth-child(5) {
    grid-column: 2 / span 4;
  }

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

  .registration-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    align-items: start;
    padding: 54px;
  }

  .registration-inner .button {
    justify-self: start;
    margin-top: 0;
  }

  .registration-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 12px;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .section-shell {
    padding: 126px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .step-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .step-card,
  .step-card:nth-child(5) {
    grid-column: auto;
  }

  .receive-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 430px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .section-shell,
  .narrow {
    width: min(100% - 24px, 1180px);
  }

  .button {
    width: 100%;
  }

  .step-card,
  .receive-grid article {
    padding: 24px;
  }

  .registration-inner {
    padding: 28px 22px;
  }
}
