@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&display=swap');

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

:root {
  --ink: #1c1917;
  --ink-soft: #44403c;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --paper: #fffcf7;
  --sage: #3f5c4b;
  --sage-dark: #2d4336;
  --copper: #b45309;
  --copper-light: #d97706;
  --amber-wash: #fff7ed;
  --line: #e7e2da;
  --muted: #78716c;
  --radius-sm: 4px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(28, 25, 23, 0.06);
  --shadow-lift: 0 18px 50px rgba(45, 67, 54, 0.12);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(180, 83, 9, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(63, 92, 75, 0.06) 0%, transparent 50%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--copper);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  font-variation-settings: 'SOFT' 50;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 720px;
}

/* ========== HEADER ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--sage);
  padding: 0 28px;
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-header__logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: 50% 14px 50% 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 0 rgba(45, 67, 54, 0.25);
}

.site-header__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.site-header__brand-name span {
  color: var(--copper);
  font-weight: 600;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header__nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all var(--transition);
  text-decoration: none;
}

.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--ink);
  background: var(--cream-dark);
}

.mobile-toggle {
  display: none;
  background: var(--cream-dark);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .site-header__nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 28px 28px;
    border-bottom: 3px solid var(--sage);
    box-shadow: var(--shadow-lift);
  }
  .site-header__nav.open {
    display: flex;
  }
  .site-header__nav a {
    width: 100%;
    text-align: center;
  }
}

/* ========== HERO ========== */

.hero {
  padding: 0 28px 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, var(--cream) 0%, var(--cream) 42%, transparent 42%),
    linear-gradient(180deg, var(--amber-wash) 0%, var(--cream) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 5%;
  width: min(420px, 45vw);
  height: min(420px, 45vw);
  background: radial-gradient(circle, rgba(63, 92, 75, 0.12) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px dashed var(--copper-light);
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.hero__title span {
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 700;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 34rem;
}

.hero__price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  background: var(--ink);
  color: #fff;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
}

.hero__price-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  width: 100%;
  flex-basis: 100%;
  margin-bottom: -4px;
}

.hero__price-value {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  color: #fef3c7;
  letter-spacing: -0.03em;
}

.hero__price-currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--copper-light);
}

.hero__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: linear-gradient(160deg, var(--sage) 0%, transparent 55%);
  border-radius: 40% 60% 55% 45%;
  opacity: 0.15;
  z-index: 0;
}

.hero__image {
  max-height: 400px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(12px 28px 40px rgba(28, 25, 23, 0.18));
  animation: drift 7s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50% { transform: translate(-6px, -10px) rotate(1deg); }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 40px;
    text-align: left;
  }
  .hero__title {
    max-width: none;
  }
  .hero__image {
    max-height: 260px;
    margin: 0 auto;
  }
}

/* ========== SECTION ========== */

.section {
  padding: 88px 28px;
}

.section--light {
  background: var(--paper);
}

.section--gray {
  background: transparent;
  position: relative;
}

.section--gray::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section--blue-gradient {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__header {
  text-align: left;
  max-width: 640px;
  margin: 0 0 52px;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .section__header {
    margin-left: 0;
  }
}

/* ========== INGREDIENT CARDS ========== */

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
}

.ingredient-card {
  grid-column: span 6;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.ingredient-card:nth-child(1) {
  grid-column: span 7;
}

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

.ingredient-card:nth-child(3) {
  grid-column: span 5;
}

.ingredient-card:nth-child(4) {
  grid-column: span 7;
}

.ingredient-card:nth-child(5) {
  grid-column: span 12;
  flex-direction: row;
}

.ingredient-card:nth-child(5) .ingredient-card__image {
  width: 38%;
  min-height: 200px;
  height: auto;
}

@media (max-width: 900px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .ingredient-card,
  .ingredient-card:nth-child(n) {
    grid-column: span 1;
  }
  .ingredient-card:nth-child(5) {
    flex-direction: column;
  }
  .ingredient-card:nth-child(5) .ingredient-card__image {
    width: 100%;
    min-height: 200px;
  }
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.ingredient-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream-dark);
}

.ingredient-card__body {
  padding: 26px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ingredient-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.ingredient-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.ingredient-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: rgba(63, 92, 75, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== PRODUCT OVERVIEW ========== */

.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}

.product-overview__content {
  padding: 32px 0;
  border-left: 4px solid var(--copper);
  padding-left: 32px;
}

.product-overview__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.product-overview__content p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.product-overview__warning {
  background: var(--amber-wash);
  border: 1px solid rgba(180, 83, 9, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-style: normal;
}

.product-overview__price-box {
  background: var(--sage-dark);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.product-overview__price-box .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

.product-overview__price-box .value {
  color: #fde68a;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
}

.product-overview__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -12deg,
    var(--cream-dark),
    var(--cream-dark) 12px,
    var(--cream) 12px,
    var(--cream) 24px
  );
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  min-height: 360px;
  border: 1px solid var(--line);
}

.product-overview__image {
  max-height: 300px;
  filter: drop-shadow(8px 20px 30px rgba(28, 25, 23, 0.15));
}

@media (max-width: 768px) {
  .product-overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-overview__content {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid var(--copper);
    padding-top: 28px;
  }
  .product-overview__image-wrapper {
    min-height: 260px;
    order: -1;
  }
}

/* ========== CONTACT FORM ========== */

.contact-form-section {
  max-width: 620px;
  margin: 0 auto;
}

.contact-form {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(63, 92, 75, 0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.4);
  color: #fff;
}

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

.form-message {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}

.form-message--success {
  background: #ecfdf5;
  color: #065f46;
}

.form-message--error {
  background: #fef2f2;
  color: #991b1b;
}

/* ========== REFERENCES ========== */

.references {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  margin-top: 24px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.references__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.references__list {
  list-style: none;
  padding: 0;
  counter-reset: ref;
}

.references__list li {
  counter-increment: ref;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #a8a29e;
  font-size: 0.88rem;
  line-height: 1.65;
  display: flex;
  gap: 14px;
}

.references__list li:last-child {
  border-bottom: none;
}

.references__list li::before {
  content: counter(ref);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--copper-light);
  min-width: 28px;
  flex-shrink: 0;
  font-size: 1rem;
}

.references__list a {
  color: #fde68a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.references__list a:hover {
  color: #fff;
}

.references__note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #78716c;
  font-style: italic;
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--sage-dark);
  color: #d6d3d1;
  padding: 64px 28px 36px;
  margin-top: 0;
}

.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer__brand-name span {
  color: #fde68a;
  font-weight: 700;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: #a8a29e;
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #d6d3d1;
  font-size: 0.88rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer__links a:hover {
  color: #fde68a;
}

.footer__contact-item {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #a8a29e;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer__warning {
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--copper-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: #d6d3d1;
  line-height: 1.75;
}

.footer__warning strong {
  color: #fde68a;
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-family: var(--font-display);
}

.footer__legal {
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__legal-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.footer__legal-info {
  font-size: 0.8rem;
  line-height: 1.85;
  color: #a8a29e;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #78716c;
}

.footer__copyright {
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ========== CONTACT PAGE ========== */

.contact-hero {
  background: var(--ink);
  padding: 96px 28px 100px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--cream));
  pointer-events: none;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.contact-hero__subtitle {
  font-size: 1.05rem;
  color: #a8a29e;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 960px;
  margin: -56px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: left;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
  transition: transform var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 16px;
  background: var(--cream-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.contact-card__value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}

.contact-card__value--price {
  font-size: 1.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--copper);
}

.contact-card__hint {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

.contact-page-blurb {
  text-align: center;
}

.contact-page-blurb__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.contact-page-blurb__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
}

.section--contact-follow {
  padding-top: 88px;
}

/* ========== LEGAL PAGES ========== */

.legal-hero {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--ink) 100%);
  padding: 88px 28px 56px;
  text-align: left;
}

.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 88px;
  background: var(--paper);
  margin-top: -24px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  box-shadow: 0 -8px 40px rgba(28, 25, 23, 0.06);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--ink);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 20px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.legal-contact-box {
  background: var(--cream-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}

.legal-contact-box p {
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

body {
  min-height: 100vh;
}
