/* Spiced Heirloom — botanical apothecary homepage */

:root {
  /* Core brand greens — keep to these two families only */
  --color-forest: #1f2a1e;
  --color-sage: #6b7b5e;
  --color-sage-light: #9dad90;

  /* Neutrals */
  --color-bg: #fbf7ed;
  --color-bg-alt: #f7f1e6;
  --color-bg-deep: var(--color-forest);
  --color-ink: var(--color-forest);
  --color-muted: var(--color-sage);
  --color-muted-light: #8a877f;
  --color-accent: var(--color-sage);
  --color-accent-soft: var(--color-sage-light);
  --color-warm: #b89559;
  --color-linen: #d7cdb6;
  --color-rose: #c99a8d;
  --color-card: #ffffff;
  --color-header-text: var(--color-bg);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(31, 42, 30, 0.1);
  --radius: 14px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-bg-deep);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  padding: 0.5rem 1rem;
  background: var(--color-bg-deep);
  color: var(--color-bg);
  font-weight: 600;
  z-index: 100;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header — same deep forest as strip & buttons, sage accent only */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-forest);
  border-bottom: 1px solid rgba(157, 173, 144, 0.25);
  box-shadow: 0 4px 20px rgba(31, 42, 30, 0.15);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-sage-light) 30%,
    var(--color-warm) 50%,
    var(--color-sage-light) 70%,
    transparent
  );
  opacity: 0.85;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-header-text);
}

.brand:hover {
  color: var(--color-header-text);
  opacity: 0.92;
}

.brand__logo {
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-header-text);
}

.brand__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(251, 247, 237, 0.78);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__list a {
  color: var(--color-header-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.92;
}

.nav__list a:hover {
  color: var(--color-sage-light);
  opacity: 1;
}

.nav__cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-sage-light);
  background: var(--color-sage);
  color: var(--color-header-text) !important;
  opacity: 1 !important;
}

.nav__cta:hover {
  background: var(--color-sage-light);
  border-color: var(--color-sage-light);
  color: var(--color-forest) !important;
}

.nav-toggle {
  display: none;
  color: var(--color-header-text);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav__list {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Hero */

.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(251, 247, 237, 0.94) 0%,
      rgba(251, 247, 237, 0.82) 42%,
      rgba(251, 247, 237, 0.55) 68%,
      rgba(251, 247, 237, 0.35) 100%
    ),
    url("bg-hero.png") center / cover no-repeat;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  min-height: min(82vh, 680px);
}

.hero__content,
.hero__panel {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--color-bg-deep);
}

.hero__lede {
  margin: 0 0 1.75rem;
  max-width: 42ch;
  color: var(--color-muted-light);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-bg-deep);
  color: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-1px);
  color: var(--color-bg);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--color-bg-deep);
  border: 1px solid rgba(31, 42, 30, 0.2);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: #fff;
  border-color: var(--color-bg-deep);
  color: var(--color-bg-deep);
}

.hero__panel {
  display: flex;
  justify-content: flex-end;
}

.hero__card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 42, 30, 0.08);
  max-width: 300px;
  transform: rotate(2deg);
  backdrop-filter: blur(8px);
}

.hero__card-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__card-label {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.hero__card-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-bg-deep);
}

.hero__card-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted-light);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 2rem;
  }

  .hero-banner__bg {
    background:
      linear-gradient(
        180deg,
        rgba(251, 247, 237, 0.92) 0%,
        rgba(251, 247, 237, 0.78) 100%
      ),
      url("bg-hero.png") center / cover no-repeat;
  }

  .hero__panel {
    justify-content: flex-start;
  }

  .hero__card {
    transform: none;
    max-width: 100%;
  }
}

/* Strip */

.strip {
  background: var(--color-bg-deep);
  color: #ebe8e0;
  padding: 2.5rem 1.5rem;
}

.strip__list {
  max-width: var(--max);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.strip__list li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.strip__icon {
  font-size: 1.1rem;
  color: var(--color-accent-soft);
  margin-bottom: 0.25rem;
}

.strip__list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.strip__list span:last-child {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .strip__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .strip__list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Showcase */

.showcase {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.showcase__intro {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.showcase__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--color-bg-deep);
}

.showcase__intro p {
  margin: 0;
  color: var(--color-muted-light);
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(31, 42, 30, 0.07);
  box-shadow: 0 8px 30px rgba(31, 42, 30, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card--featured {
  border-color: rgba(107, 123, 94, 0.35);
  box-shadow: 0 12px 40px rgba(31, 42, 30, 0.1);
}

.product-card__badge {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted-light);
}

.product-card__badge--featured {
  color: var(--color-accent);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--color-bg-deep);
}

.product-card__mood {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-warm);
}

.product-card p:last-of-type {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--color-muted-light);
}

.product-card__visual {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .showcase__grid {
    grid-template-columns: 1fr;
  }
}

/* Ritual */

.ritual {
  position: relative;
  padding: 0 0 4rem;
}

.ritual__banner {
  height: min(42vh, 360px);
  background:
    linear-gradient(rgba(31, 42, 30, 0.35), rgba(31, 42, 30, 0.35)),
    url("bg-hero.png") center / cover no-repeat;
}

.ritual__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: -3rem auto 0;
  padding: 0 1.5rem;
}

.ritual__intro {
  max-width: 52ch;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(31, 42, 30, 0.06);
  box-shadow: var(--shadow-soft);
}

.ritual__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--color-bg-deep);
}

.ritual__intro p {
  margin: 0;
  color: var(--color-muted-light);
}

.ritual__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ritual__step {
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(31, 42, 30, 0.08);
  box-shadow: 0 8px 28px rgba(31, 42, 30, 0.06);
}

.ritual__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light));
}

.ritual__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-sage-light);
  margin-bottom: 0.75rem;
}

.ritual__step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--color-bg-deep);
}

.ritual__step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted-light);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .ritual__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ritual__banner {
    height: 220px;
  }

  .ritual__inner {
    margin-top: -2rem;
  }

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

/* Ingredients */

.ingredients {
  position: relative;
  padding: 5rem 1.5rem;
  background: var(--color-bg);
  overflow: hidden;
}

.ingredients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(157, 173, 144, 0.14), transparent 55%),
    linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 28%, var(--color-bg) 100%);
  pointer-events: none;
}

.ingredients__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.ingredients__header {
  max-width: 38rem;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.ingredients__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-sage);
}

.ingredients__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-forest);
}

.ingredients__header p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-muted-light);
}

.ingredients__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ingredients__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 42, 30, 0.06);
  box-shadow: 0 6px 28px rgba(31, 42, 30, 0.045);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ingredients__item:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 123, 94, 0.22);
  box-shadow: 0 18px 48px rgba(31, 42, 30, 0.1);
}

.ingredients__visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-bottom: 1px solid rgba(31, 42, 30, 0.05);
}

.ingredients__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ingredients__item:hover .ingredients__visual img {
  transform: scale(1.04);
}

.ingredients__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.ingredients__body h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--color-forest);
}

.ingredients__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-muted-light);
}

.ingredients__promise {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 52rem;
  margin: 3rem auto 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  color: var(--color-sage);
}

.ingredients__promise::before,
.ingredients__promise::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 123, 94, 0.35) 50%,
    transparent
  );
}

@media (max-width: 960px) {
  .ingredients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .ingredients {
    padding: 4rem 1.25rem;
  }

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

  .ingredients__promise {
    flex-direction: column;
    gap: 1rem;
  }

  .ingredients__promise::before,
  .ingredients__promise::after {
    width: min(12rem, 60%);
  }
}

/* Newsletter */

.newsletter {
  padding: 0 1.5rem 4rem;
}

.newsletter__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(120deg, var(--color-forest) 0%, #2a3828 100%);
  color: #f0ebe4;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
}

.newsletter__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
}

.newsletter__inner > p {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  opacity: 0.88;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.newsletter__products {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.newsletter__products legend,
.newsletter__products-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  padding: 0;
  color: #fff;
  opacity: 1;
  width: 100%;
}

.newsletter__product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
}

.newsletter__product-option {
  position: relative;
  cursor: pointer;
  flex: 0 1 auto;
}

.newsletter__product-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.newsletter__product-option span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.newsletter__product-option input:checked + span {
  background: var(--color-accent-soft);
  color: var(--color-bg-deep);
  border-color: var(--color-accent-soft);
  font-weight: 600;
}

.newsletter__product-option input:focus-visible + span {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 2px;
}

.newsletter__product-option:hover span {
  border-color: rgba(255, 255, 255, 0.45);
}

.newsletter__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.newsletter__field label {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.newsletter__field textarea {
  width: 100%;
  min-height: 110px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
}

.newsletter__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter__field textarea:focus {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 2px;
  border-color: transparent;
}

.newsletter__field textarea:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.newsletter__hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.newsletter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

.newsletter__form input[type="email"] {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter__form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter__form input[type="email"]:focus {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 2px;
  border-color: transparent;
}

.newsletter__form input[type="email"]:disabled,
.newsletter__product-option input:disabled + span {
  opacity: 0.65;
  cursor: not-allowed;
}

.newsletter__form .btn--primary {
  background: var(--color-accent-soft);
  color: var(--color-bg-deep);
}

.newsletter__form .btn--primary:hover {
  color: var(--color-bg-deep);
}

.newsletter__form .btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.newsletter__status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  max-width: 42ch;
}

.newsletter__status--success {
  color: var(--color-accent-soft);
}

.newsletter__status--error {
  color: #e8c9c0;
}

/* Feedback */

.feedback {
  padding: 0 1.5rem 4rem;
}

.feedback__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--color-bg-alt);
  border: 1px solid rgba(31, 42, 30, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
}

.feedback__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--color-forest);
}

.feedback__inner > p {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  color: var(--color-muted-light);
  line-height: 1.6;
}

.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.feedback__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feedback__field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-forest);
}

.feedback__field input,
.feedback__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(31, 42, 30, 0.15);
  background: #fff;
  color: var(--color-ink);
  resize: vertical;
}

.feedback__field input:focus,
.feedback__field textarea:focus {
  outline: 2px solid var(--color-sage-light);
  outline-offset: 2px;
  border-color: transparent;
}

.feedback__field input::placeholder,
.feedback__field textarea::placeholder {
  color: var(--color-muted-light);
}

.feedback__form .btn--primary {
  align-self: flex-start;
  background: var(--color-forest);
  color: var(--color-bg);
}

.feedback__form .btn--primary:hover {
  color: var(--color-bg);
}

.feedback__form .btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.feedback__status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  max-width: 52ch;
}

.feedback__status--success {
  color: var(--color-sage);
}

.feedback__status--error {
  color: #a85a4a;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(31, 42, 30, 0.08);
  padding: 2rem 1.5rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--color-bg-deep);
}

.site-footer__fine {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted-light);
}
