/* =============================================
   DEAF EARTH CO. — MAIN STYLESHEET
   Warm & Earthy Botanical Apothecary
   Designer: Benaiah Website Services
============================================= */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  /* Brand Colors */
  --color-terracotta: #c1602b;
  --color-terracotta-lt: #d4784a;
  --color-terracotta-dk: #9e4d20;
  --color-olive: #5c6b3a;
  --color-olive-lt: #7a8f4e;
  --color-olive-dk: #404b28;
  --color-cream: #faf4ea;
  --color-cream-dk: #f0e6d0;
  --color-cream-dkr: #e4d4b8;
  --color-soil: #2c1f0e;
  --color-soil-lt: #3e2d18;
  --color-bark: #7a5c3a;
  --color-bark-lt: #a07850;
  --color-sage: #c8d4b8;
  --color-sage-dk: #a8b898;
  --color-white: #ffffff;
  --color-text: #2c1f0e;
  --color-text-muted: #6b5740;
  --color-text-light: #faf4ea;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.4rem;
  --space-sm: 0.8rem;
  --space-md: 1.6rem;
  --space-lg: 3.2rem;
  --space-xl: 6.4rem;
  --space-2xl: 9.6rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 31, 14, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 31, 14, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 31, 14, 0.18);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -6rem;
  left: var(--space-md);
  z-index: 1000;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 500;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- TYPOGRAPHY REUSE ---- */
.section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-soil);
  margin-bottom: var(--space-md);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 1.2rem 2.8rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}

.btn--primary:hover {
  background-color: var(--color-terracotta-dk);
  border-color: var(--color-terracotta-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  background-color: var(--color-olive);
  border-color: var(--color-olive);
  color: var(--color-white);
  cursor: default;
  transform: none;
  box-shadow: none;
  opacity: 1;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.btn--outline:hover {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.btn--small {
  font-size: 1.3rem;
  padding: 0.8rem 1.6rem;
}

/* THE TACTILE FEEDBACK */
.btn--primary:active,
.btn--outline:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   HEADER / NAV
============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(44, 31, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 230, 208, 0.1);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 128rem;
  margin: 0 auto;
  padding: 1.6rem 4rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
}

.nav__logo:hover,
.nav__logo:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--color-sage);
  outline-offset: 4px;
}

.nav__toggle {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
}

.nav__bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__link {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--color-sage);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-cream);
  background-color: rgba(250, 244, 234, 0.08);
  outline: none;
}

.nav__link--cta {
  background-color: var(--color-terracotta);
  color: var(--color-white) !important;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  margin-left: var(--space-sm);
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background-color: var(--color-terracotta-lt);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--space-xl);
  padding: 14rem 4rem 6rem;
  max-width: 128rem;
  margin: 0 auto;
  position: relative;
}

.hero__visual-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 70% 40%,
      rgba(193, 96, 43, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(92, 107, 58, 0.05) 0%,
      transparent 50%
    );
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 2;
}

.hero__eyebrow {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive-lt);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.5vw, 6.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-soil);
}

.hero__heading em {
  font-style: italic;
  color: var(--color-terracotta);
}

.hero__subtext {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 52rem;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.hero__asl-cta {
  display: flex;
  align-items: center;
  text-align: left;
  gap: var(--space-md);
  background-color: var(--color-cream-dk);
  border: 1px solid var(--color-cream-dkr);
  border-radius: var(--radius-md);
  padding: 1.4rem var(--space-md);
  cursor: pointer;
  transition: all var(--transition);
  max-width: 42rem;
}

.hero__asl-cta:hover {
  border-color: var(--color-bark-lt);
  background-color: var(--color-cream-dkr);
  box-shadow: var(--shadow-sm);
}

.hero__asl-cta:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}

.hero__asl-badge {
  width: 4.4rem;
  height: 4.4rem;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.hero__asl-cta:hover .hero__asl-badge {
  transform: scale(1.05);
}

.hero__asl-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__asl-label {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-soil);
}

.hero__asl-sub {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.hero__visual-display {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__circle {
  position: absolute;
  border-radius: var(--radius-full);
}
.hero__circle--1 {
  width: 56rem;
  height: 56rem;
  background-color: var(--color-sage);
  opacity: 0.3;
  z-index: 1;
}
.hero__circle--2 {
  width: 42rem;
  height: 42rem;
  background-color: var(--color-cream-dk);
  opacity: 0.5;
  z-index: 1;
}

.hero__bottles {
  display: flex;
  align-items: flex-end;
  gap: var(--space-md);
  z-index: 2;
}

.hero__bottle {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  color: var(--color-cream);
  text-align: center;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.hero__bottle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__bottle-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  background: linear-gradient(
    to top,
    rgba(44, 31, 14, 0.85) 0%,
    rgba(44, 31, 14, 0.55) 55%,
    rgba(44, 31, 14, 0) 100%
  );
}
.hero__bottle--tall {
  height: 26rem;
  width: 10rem;
}
.hero__bottle--short {
  height: 25rem;
  width: 15rem;
}
.hero__bottle--round {
  height: 23rem;
  width: 18rem;
  border-radius: var(--radius-md);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 4rem;
  background-color: var(--color-text-muted);
}

/* ============================================
   TRUST BAR
============================================= */
.trust-bar {
  background-color: var(--color-soil);
  color: var(--color-cream);
  padding: 2.4rem 4rem;
}
.trust-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 128rem;
  margin: 0 auto;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
}
.trust-bar__divider {
  width: 1px;
  height: 2.4rem;
  background-color: rgba(250, 244, 234, 0.15);
}

/* ============================================
   ABOUT
============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 4rem;
  max-width: 128rem;
  margin: 0 auto;
  align-items: center;
}
.about__image-frame {
  background-color: var(--color-cream-dkr);
  border-radius: var(--radius-md);
  height: 45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__image-placeholder {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.6rem;
}
.about__image-icon {
  font-size: 4.8rem;
  display: block;
  margin-bottom: var(--space-sm);
}
.about__badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--color-olive);
  color: var(--color-white);
  padding: 1.6rem 2.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.about__badge-icon {
  font-size: 2.4rem;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.about__text {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* ============================================
   PRODUCTS / APOTHECARY SHOP
============================================= */
.products {
  padding: var(--space-2xl) 4rem;
  max-width: 128rem;
  margin: 0 auto;
}

.products__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.products__subtext {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  max-width: 58rem;
  margin: 0 auto;
}

.products__tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.tab__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tab__label {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 2.4rem;
  background-color: var(--color-cream-dk);
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.tab__label:hover {
  background-color: var(--color-cream-dkr);
  color: var(--color-soil);
}

.tab__input:checked + .tab__label {
  background-color: var(--color-olive);
  color: var(--color-white);
}

.tab__input:focus-visible + .tab__label {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 2px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(44, 31, 14, 0.04);
}

.product-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.product-card__visual {
  height: 24rem;
  background-color: var(--color-cream-dk);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__placeholder {
  font-size: 6.4rem;
  user-select: none;
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background-color: var(--color-terracotta);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
}

.product-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__meta {
  font-size: 1.2rem;
  color: var(--color-terracotta);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-soil);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.product-card__desc {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-cream-dk);
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-soil);
}

/* Tab filtering is handled in script.js — CSS-only sibling selectors
   can't reach .products__grid from inside the .products__tabs wrapper. */

/* ============================================
   DEAF-FIRST APPROACH
============================================= */
.deaf-first {
  padding: var(--space-2xl) 4rem;
  max-width: 128rem;
  margin: 0 auto;
}

.deaf-first__header {
  text-align: center;
  max-width: 68rem;
  margin: 0 auto var(--space-xl);
}

.deaf-first__subtext {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.deaf-first__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.deaf-feature {
  background-color: var(--color-cream-dk);
  border: 1px solid var(--color-cream-dkr);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: box-shadow var(--transition);
}

.deaf-feature:hover {
  box-shadow: var(--shadow-sm);
}

.deaf-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: var(--radius-full);
  background-color: var(--color-olive);
  font-size: 2.4rem;
  margin-bottom: var(--space-md);
}

.deaf-feature__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-soil);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.deaf-feature__desc {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS / REVIEWS
============================================= */
.testimonials {
  padding: var(--space-2xl) 4rem;
  background-color: var(--color-cream-dk);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials__subtext {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  max-width: 58rem;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 128rem;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border: 1px solid rgba(44, 31, 14, 0.02);
}

.testimonial-card__rating {
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card__author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.testimonial-card__author strong {
  font-size: 1.6rem;
  color: var(--color-soil);
}

.testimonial-card__meta {
  font-size: 1.3rem;
  color: var(--color-terracotta);
  font-weight: 500;
}

/* ============================================
   CONSULTATION FORM FIELDS
============================================= */
.consult {
  padding: var(--space-2xl) 4rem;
  max-width: 128rem;
  margin: 0 auto;
}
.consult__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}
.consult__info {
  text-align: center;
}
.consult__form {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.consult__phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.consult__form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form__label {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-soil);
}

.form__input {
  width: 100%;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-cream-dkr);
  background-color: var(--color-white);
  font-family: inherit;
  font-size: 1.5rem;
}

.form__input:focus {
  outline: 2px solid var(--color-terracotta);
  border-color: transparent;
}

.form__hint {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* ============================================
   NEWSLETTER
============================================= */
.newsletter {
  background-color: var(--color-olive);
  padding: var(--space-xl) 4rem;
}

.newsletter__inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.newsletter__subtext {
  font-size: 1.6rem;
  color: rgba(250, 244, 234, 0.8);
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  width: 100%;
  max-width: 48rem;
}

.newsletter__input {
  font-family: var(--font-body);
  font-size: 1.5rem;
  padding: 1.2rem var(--space-md);
  border-radius: var(--radius-full);
  border: 2px solid rgba(250, 244, 234, 0.3);
  background-color: rgba(250, 244, 234, 0.15);
  color: var(--color-cream);
  flex: 1;
  transition: all var(--transition);
}

.newsletter__input::placeholder {
  color: rgba(250, 244, 234, 0.5);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-cream);
  background-color: rgba(250, 244, 234, 0.25);
}

/* ============================================
   FOOTER
============================================= */
.footer {
  background-color: var(--color-soil);
  color: var(--color-cream-dk);
  padding: var(--space-xl) 4rem 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
  max-width: 128rem;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__logo-mark {
  display: block;
  width: auto;
}

.footer__tagline {
  font-size: 1.4rem;
  color: rgba(250, 244, 234, 0.5);
  font-style: italic;
}

.footer__cultural-note {
  font-size: 1.4rem;
  color: var(--color-cream-dk);
  opacity: 0.8;
  max-width: 32rem;
  line-height: 1.5;
  margin-top: var(--space-xs);
}

.footer__heading-sm {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 244, 234, 0.5);
  margin-bottom: var(--space-md);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 1.5rem;
  color: rgba(250, 244, 234, 0.7);
  transition: color var(--transition);
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--color-cream);
  outline: none;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.5rem;
  color: rgba(250, 244, 234, 0.7);
  margin-bottom: var(--space-xs);
}

.footer__contact-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-sage-dk);
}

.footer__contact-value {
  color: var(--color-cream);
  font-weight: 500;
}

/* Footer Bottom Credit Row */
.footer__bottom {
  border-top: 1px solid rgba(250, 244, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 128rem;
  margin: 0 auto;
  padding: var(--space-lg) 4rem;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-xs);
  width: 100%;
}

.footer__bottom p {
  font-size: 1.3rem;
  color: rgba(250, 244, 234, 0.35);
}

.footer__designer-link {
  color: var(--color-cream);
  font-weight: 500;
  text-decoration: underline;
}

.footer__designer-link:hover {
  color: var(--color-terracotta-lt);
}
