:root {
  --color-milk: #faf6f0;
  --color-mist-blue: #e6edf0;
  --color-olive: #3d3e3a;
  --color-rose: #d3a297;
  --color-forest: #29332d;
  --color-brass: #b58a55;
  --color-warm-white: #fff9f1;
  --color-border-warm: #d8d2c8;
  --color-border-cool: #c9d4d4;
  --color-muted: #666861;
  --color-overlay: rgba(41, 51, 45, 0.68);

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito Sans", Arial, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(1.75rem, 3vw, 2rem);
  --text-3xl: clamp(2.25rem, 5vw, 3rem);
  --text-display: clamp(2.25rem, 7vw, 4rem);

  --line-tight: 1.08;
  --line-heading: 1.16;
  --line-body: 1.65;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --space-10: 7rem;

  --container-max: 75rem;
  --container-padding: 1.5rem;
  --section-space: clamp(3.5rem, 8vw, 7rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.125rem;

  --shadow-soft: 0 10px 28px rgba(61, 62, 58, 0.08);
  --transition-fast: 180ms ease;
  --transition-base: 220ms ease;
  --focus-ring: 0 0 0 2px var(--color-milk), 0 0 0 5px var(--color-rose);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--color-milk);
  color: var(--color-olive);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--line-body);
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  hyphens: auto;
}

main,
header,
footer,
section,
article,
aside,
nav,
figure,
form,
fieldset {
  min-width: 0;
}

img,
picture,
svg,
video,
canvas,
audio,
iframe {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

img {
  color: transparent;
}

svg {
  fill: currentColor;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:not([class]) {
  color: var(--color-forest);
  text-decoration-color: var(--color-brass);
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:not([class]):hover {
  color: var(--color-brass);
  text-decoration-color: currentColor;
}

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

button,
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-border-warm);
  text-align: left;
  vertical-align: top;
}

th {
  font-weight: 700;
}

hr {
  height: 1px;
  margin: var(--space-6) 0;
  border: 0;
  background-color: var(--color-border-warm);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
blockquote,
figure,
table,
pre {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: var(--line-heading);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  margin-bottom: var(--space-6);
  font-size: var(--text-display);
  line-height: var(--line-tight);
}

h2 {
  margin-bottom: var(--space-5);
  font-size: var(--text-3xl);
}

h3 {
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

h5,
h6 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-5);
  line-height: var(--line-body);
}

ul,
ol {
  margin-bottom: var(--space-5);
  padding-left: 1.35em;
}

li::marker {
  color: var(--color-brass);
}

dl {
  margin-bottom: var(--space-5);
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 0 var(--space-3);
}

blockquote {
  margin-bottom: var(--space-5);
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-left: 2px solid var(--color-brass);
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.35;
}

figcaption {
  margin-top: var(--space-2);
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

small {
  font-size: var(--text-sm);
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

code,
kbd {
  padding: 0.08em 0.3em;
  border-radius: var(--radius-sm);
  background: var(--color-mist-blue);
  font-size: 0.9em;
}

pre {
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  overflow: auto;
  border: 1px solid var(--color-border-cool);
  border-radius: var(--radius-md);
  background: var(--color-mist-blue);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

::selection {
  background: var(--color-rose);
  color: var(--color-forest);
}

.container {
  width: min(100% - (var(--container-padding) * 2), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.surface-milk {
  background-color: var(--color-milk);
}

.surface-mist {
  background-color: var(--color-mist-blue);
}

.surface-forest {
  background-color: var(--color-forest);
  color: var(--color-warm-white);
}

.surface-forest :is(h1, h2, h3, h4, h5, h6) {
  color: var(--color-warm-white);
}

.surface-forest a:not([class]) {
  color: var(--color-warm-white);
  text-decoration-color: var(--color-brass);
}

.panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-xl);
  background-color: var(--color-milk);
}

.panel--mist {
  border-color: var(--color-border-cool);
  background-color: var(--color-mist-blue);
}

.panel--forest {
  border-color: rgba(181, 138, 85, 0.45);
  background-color: var(--color-forest);
  color: var(--color-warm-white);
}

.panel--forest :is(h1, h2, h3, h4, h5, h6) {
  color: var(--color-warm-white);
}

.card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-lg);
  background-color: var(--color-milk);
}

.card--elevated {
  box-shadow: var(--shadow-soft);
}

.card__body {
  min-width: 0;
  padding: var(--space-5);
}

.card__body > :last-child,
.panel > :last-child,
.stack > :last-child,
.content-group > :last-child {
  margin-bottom: 0;
}

.stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-4);
}

.stack--tight {
  gap: var(--space-2);
}

.stack--loose {
  gap: var(--space-6);
}

.content-group > * {
  min-width: 0;
}

.actions {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.actions > * {
  min-width: 0;
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background-color: var(--color-forest);
  color: var(--color-warm-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  overflow-wrap: anywhere;
}

.button:hover {
  background-color: #202821;
  color: var(--color-warm-white);
}

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

.button--secondary:hover {
  border-color: var(--color-forest);
  background-color: var(--color-mist-blue);
  color: var(--color-forest);
}

.button--rose {
  border-color: var(--color-rose);
  background-color: var(--color-rose);
  color: var(--color-forest);
}

.button--rose:hover {
  background-color: #c29186;
  border-color: #c29186;
  color: var(--color-forest);
}

.button--full {
  width: 100%;
}

.eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-brass);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.text-muted {
  color: var(--color-muted);
}

.text-brass {
  color: var(--color-brass);
}

.image-frame {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(61, 62, 58, 0.2);
  border-radius: var(--radius-lg);
  background-color: var(--color-mist-blue);
}

.image-frame img,
.image-frame picture,
.image-frame video {
  width: 100%;
  height: 100%;
}

.image-frame img,
.image-frame video {
  object-fit: cover;
}

.image-frame--landscape {
  aspect-ratio: 4 / 3;
}

.image-frame--story {
  aspect-ratio: 3 / 2;
}

.image-frame--wide {
  aspect-ratio: 16 / 9;
}

.image-frame--square {
  aspect-ratio: 1;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field label {
  color: var(--color-olive);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.4;
}

.form-field :is(input, textarea, select) {
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-md);
  background-color: var(--color-warm-white);
  color: var(--color-olive);
  line-height: 1.45;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form-field textarea {
  min-height: 8rem;
}

.form-field :is(input, textarea, select)::placeholder {
  color: #858780;
  opacity: 1;
}

.form-field :is(input, textarea, select):hover {
  border-color: var(--color-olive);
}

.form-field :is(input, textarea, select):focus {
  border-color: var(--color-forest);
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  transform: translateY(-150%);
  border-radius: var(--radius-md);
  background: var(--color-forest);
  color: var(--color-warm-white);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

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

@media (max-width: 47.99rem) {
  :root {
    --container-padding: 1rem;
  }

  body {
    font-size: 0.9375rem;
  }

  h1 {
    margin-bottom: var(--space-5);
  }

  .section {
    padding-block: clamp(3.5rem, 12vw, 4.5rem);
  }

  .card__body {
    padding: var(--space-4);
  }

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

  .actions > .button {
    width: 100%;
  }

  .image-frame--wide {
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}