/* ===== BASE.CSS START: GLOBAL VARIABLES + RESET + SHARED UTILITIES ===== */

:root {
  --cream: #f6f0e3;
  --cream-soft: #fffaf1;
  --cream-deep: #e6d9c5;
  --sage: #7f8d72;
  --sage-dark: #344333;
  --sage-deep: #1f2d22;
  --forest: #122018;
  --forest-soft: #1d3024;
  --brass: #c4a36d;
  --brass-soft: #e0c99a;
  --ink: #1f241f;
  --muted: #6d746a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 25, 18, 0.28);
  --shadow-soft: 0 18px 45px rgba(22, 33, 25, 0.15);
  --line: rgba(255, 255, 255, 0.38);
  --content-width: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
}

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

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

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

.section {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 98px 0;
}

.section--tight {
  padding-top: 62px;
  padding-bottom: 62px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.section-copy {
  color: #566154;
  font-size: 1rem;
  line-height: 1.8;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

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

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(89, 108, 88, 0.16);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(250, 244, 232, 0.72)
    );
  box-shadow: var(--shadow-soft);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(115, 134, 110, 0.12);
  pointer-events: none;
}

.glass-card h3 {
  position: relative;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.glass-card p {
  position: relative;
  margin: 0;
  color: #647061;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 220ms ease;
}

.btn--dark {
  color: var(--cream-soft);
  background: var(--sage-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn--dark:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.btn--light {
  color: var(--forest);
  background: var(--cream-soft);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 31, 23, 0.18);
}

.quote-band {
  color: var(--cream-soft);
  background:
    linear-gradient(
      120deg,
      rgba(28, 49, 36, 0.98),
      rgba(47, 68, 49, 0.96)
    ),
    var(--forest);
}

.quote-band .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 12px solid rgba(255, 252, 245, 0.8);
  box-shadow: var(--shadow);
}

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

.image-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  pointer-events: none;
}

@media (max-width: 980px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    width: min(100% - 28px, var(--content-width));
    padding: 72px 0;
  }

  .image-frame {
    min-height: 380px;
  }
}

/* ===== BASE.CSS END ===== */
