html {
  min-width: 320px;
  background: var(--color-olive-deep);
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--color-olive-deep);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(116, 128, 89, 0.34), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(81, 93, 60, 0.28), transparent 38%),
    var(--color-olive-deep);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

[v-cloak] {
  display: none;
}

.site-shell {
  position: relative;
  width: 100%;
  max-width: var(--page-max-width);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-cream);
}

.section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--section-gap) var(--page-padding);
  overflow: hidden;
  isolation: isolate;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 em,
h2 em,
h3 em,
h4 em {
  font-style: italic;
  font-weight: 400;
}

p {
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-olive);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-number {
  display: block;
  margin-bottom: 28px;
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(34px, 9vw, 58px);
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: 620px;
  font-size: clamp(2.75rem, 11vw, 5.4rem);
  line-height: 0.88;
}

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

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

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: var(--color-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.editorial-rule {
  width: 100%;
  height: 1px;
  background: var(--color-line);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:not(:disabled),
a[href] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

::selection {
  background: var(--color-olive);
  color: var(--color-ivory);
}
