:root {
  --cream: #FAF6F0;
  --dark-earth: #2C1810;
  --warm-brown: #6B4226;
  --terracotta: #C4633A;
  --sage: #7A8B6F;
  --sage-light: #A8B89C;
  --wheat: #E8D5B7;
  --petal-pink: #E8C4B8;
  --linen: #F5EDE3;
  --charcoal: #3A3A3A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark-earth);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- SITE HEADER / NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--wheat);
  padding: 0.6rem 2rem;
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

/* Desktop nav links inside the header */
.site-header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Mobile nav — hidden by default, shown when .nav-open */
.site-header-nav-mobile {
  display: none;
  padding: 0.5rem 0 0.75rem;
  border-top: 1px solid var(--wheat);
}

.site-header.nav-open .site-header-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header-nav-mobile .nav-link {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--wheat);
  width: 100%;
}

.site-header-nav-mobile .nav-link:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 1.25rem;
  }
  .site-logo {
    height: 42px;
  }
  .site-header-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* --- HERO LOGO --- */
.hero-logo {
  width: clamp(120px, 22vw, 200px);
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.15);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(165deg, var(--cream) 0%, var(--wheat) 40%, var(--petal-pink) 70%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(122, 139, 111, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 70%, rgba(196, 99, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark-earth);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--warm-brown);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-brown);
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--warm-brown);
  border-radius: 100px;
}

/* --- DIVIDER --- */
.section-divider {
  text-align: center;
  padding: 3rem 0;
  font-size: 1.5rem;
  color: var(--sage-light);
  letter-spacing: 1rem;
}

/* --- OFFERINGS --- */
.offerings {
  padding: 4rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offerings-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offerings-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-earth);
  margin-bottom: 0.75rem;
}

.offerings-header p {
  font-size: 1.1rem;
  color: var(--warm-brown);
  max-width: 500px;
  margin: 0 auto;
}

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

.offering-card {
  background: var(--linen);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.offering-card:nth-child(1)::before {
  background: var(--terracotta);
}

.offering-card:nth-child(2)::before {
  background: var(--sage);
}

.offering-card:nth-child(3)::before {
  background: var(--warm-brown);
}

.offering-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.offering-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark-earth);
  margin-bottom: 0.5rem;
}

.offering-card .subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 1rem;
}

.offering-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
}

/* --- STORY --- */
.story {
  background: var(--dark-earth);
  color: var(--cream);
  padding: 6rem 2rem;
}

.story-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.story h2 em {
  font-style: italic;
  color: var(--petal-pink);
}

.story p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--wheat);
  margin-bottom: 1.5rem;
}

.story-separator {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 2.5rem auto;
}

/* --- RHYTHM --- */
.rhythm {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.rhythm h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--dark-earth);
  margin-bottom: 3rem;
}

.rhythm-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.rhythm-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--wheat);
}

.rhythm-item:last-child {
  border-bottom: none;
}

.rhythm-season {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--terracotta);
  min-width: 90px;
  font-weight: 600;
}

.rhythm-desc {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* --- CLOSING --- */
.closing {
  background: linear-gradient(175deg, var(--wheat) 0%, var(--petal-pink) 50%, var(--cream) 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-earth);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1.1rem;
  color: var(--warm-brown);
  line-height: 1.75;
}

.closing-location {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

/* --- FOOTER --- */
footer {
  background: var(--dark-earth);
  color: var(--wheat);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

footer a {
  color: var(--petal-pink);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-tags {
    gap: 0.5rem;
  }

  .hero-tags span {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
  }

  .rhythm-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .rhythm-season {
    min-width: auto;
  }

  .story {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 4rem 1.5rem;
  }
}

/* ============================================
   NAV LINKS & TOGGLE (shared across all pages via .site-header)
   ============================================ */

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-brown);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link--active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-brown);
  border-radius: 2px;
  transition: 0.2s ease;
}

/* ============================================
   HERO CTA BUTTONS
   ============================================ */

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid var(--terracotta);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
  transform: translateY(-2px);
}

.btn-outline-hero {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--warm-brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid var(--warm-brown);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline-hero:hover {
  background: var(--warm-brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--terracotta);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid var(--terracotta);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--terracotta);
  color: var(--cream);
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--warm-brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid var(--warm-brown);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--warm-brown);
  color: var(--cream);
}

/* Offering card links */
.offering-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.offering-link:hover {
  color: var(--warm-brown);
}

/* ============================================
   PAGE HERO (inner pages — not landing)
   ============================================ */

.page-hero {
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--wheat) 60%, var(--cream) 100%);
  text-align: center;
  border-bottom: 1px solid var(--wheat);
}

.page-hero--availability {
  background: linear-gradient(160deg, var(--cream) 0%, var(--petal-pink) 50%, var(--wheat) 100%);
}

.page-hero--contact {
  background: linear-gradient(160deg, var(--wheat) 0%, var(--cream) 60%, var(--linen) 100%);
}

.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-hero-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--dark-earth);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--warm-brown);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

/* ============================================
   SHOP — CATALOG
   ============================================ */

.catalog-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-section + .catalog-section {
  border-top: 1px solid var(--wheat);
}

.catalog-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.catalog-section-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.catalog-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark-earth);
  margin-bottom: 0.2rem;
}

.catalog-section-byline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.catalog-section-desc {
  font-size: 1rem;
  color: var(--warm-brown);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Order online CTA — sourdough section */
.btn-order-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--terracotta);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: 2px solid var(--terracotta);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-order-cta:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 99, 58, 0.35);
}

/* Flowers — coming soon badge */
.coming-soon-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--sage-light);
  color: var(--dark-earth);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--linen);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.1);
}

.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark-earth);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--terracotta);
}

.product-card-avail {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

/* Color accents per category */
.catalog-section--sourdough .product-card {
  border-top: 3px solid var(--terracotta);
}

.catalog-section--flowers .product-card {
  border-top: 3px solid var(--sage);
}

.catalog-section--pottery .product-card {
  border-top: 3px solid var(--warm-brown);
}

/* Shop bottom note */
.shop-note {
  background: var(--dark-earth);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--cream);
}

.shop-note-inner {
  max-width: 580px;
  margin: 0 auto;
}

.shop-note-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.shop-note h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

.shop-note p {
  font-size: 1rem;
  color: var(--wheat);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.shop-note a {
  color: var(--petal-pink);
}

/* ============================================
   AVAILABILITY PAGE
   ============================================ */

.avail-empty {
  padding: 5rem 2rem;
  text-align: center;
}

.avail-empty-inner {
  max-width: 500px;
  margin: 0 auto;
}

.avail-empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.25rem;
}

.avail-empty h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark-earth);
  margin-bottom: 1rem;
}

.avail-empty p {
  font-size: 1rem;
  color: var(--warm-brown);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.avail-empty-hint a {
  color: var(--terracotta);
}

.avail-week {
  padding: 3rem 2rem 2rem;
}

.avail-week-inner {
  max-width: 800px;
  margin: 0 auto;
}

.avail-week-header {
  text-align: center;
  margin-bottom: 3rem;
}

.avail-week-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark-earth);
  margin-bottom: 0.75rem;
}

.avail-week-notes {
  font-size: 1.05rem;
  color: var(--warm-brown);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.avail-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.avail-category {
  background: var(--linen);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}

.avail-category--sourdough {
  border-left: 4px solid var(--terracotta);
}

.avail-category--flowers {
  border-left: 4px solid var(--sage);
}

.avail-category--pottery {
  border-left: 4px solid var(--warm-brown);
}

.avail-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.avail-category-icon {
  font-size: 1.5rem;
}

.avail-category-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark-earth);
}

.avail-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.avail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wheat);
}

.avail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.avail-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.avail-item-name {
  font-weight: 500;
  color: var(--dark-earth);
  font-size: 1rem;
}

.avail-item-qty {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  white-space: nowrap;
}

.avail-item-note {
  font-size: 0.9rem;
  color: var(--warm-brown);
  font-style: italic;
}

.avail-nothing {
  text-align: center;
  color: var(--warm-brown);
  font-size: 1rem;
  padding: 2rem 0;
}

.avail-cta {
  padding: 4rem 2rem;
  background: linear-gradient(160deg, var(--wheat) 0%, var(--cream) 100%);
  text-align: center;
}

.avail-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.avail-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark-earth);
  margin-bottom: 0.75rem;
}

.avail-cta p {
  font-size: 1rem;
  color: var(--warm-brown);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.avail-cta .btn-primary {
  margin-right: 0.75rem;
}

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

.contact-grid {
  padding: 3rem 2rem 2rem;
}

.contact-grid-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--linen);
  border-radius: 14px;
  padding: 2rem;
}

.contact-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark-earth);
  margin-bottom: 1rem;
}

.contact-card-body {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
}

.contact-card-body p {
  margin-bottom: 0.4rem;
}

.contact-card-note {
  font-size: 0.85rem;
  color: var(--warm-brown);
  margin-top: 0.75rem;
}

.contact-card-note a,
.contact-card-body a {
  color: var(--terracotta);
  text-decoration: none;
}

.contact-card-note a:hover,
.contact-card-body a:hover {
  text-decoration: underline;
}

.contact-social-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--terracotta) !important;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-list li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 1.25rem;
  position: relative;
}

.contact-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.contact-note {
  padding: 4rem 2rem;
  background: var(--dark-earth);
  text-align: center;
  color: var(--cream);
}

.contact-note-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-note p {
  font-size: 1.1rem;
  color: var(--wheat);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-note-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE FOOTER (inner pages)
   ============================================ */

.page-footer {
  background: var(--dark-earth);
  color: var(--wheat);
  padding: 3rem 2rem;
  text-align: center;
}

.page-footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.page-footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.page-footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}

.page-footer-links {
  margin-bottom: 1.25rem;
}

.page-footer-links a {
  color: var(--petal-pink);
  text-decoration: none;
  font-size: 0.875rem;
}

.page-footer-links a:hover {
  text-decoration: underline;
}

.page-footer-copy {
  font-size: 0.8rem;
  color: var(--warm-brown);
  letter-spacing: 0.05em;
}

/* ============================================
   ERROR PAGE
   ============================================ */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.error-page-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark-earth);
  margin-bottom: 1rem;
}

.error-page-inner p {
  color: var(--warm-brown);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================
   MOBILE — INNER PAGES
   ============================================ */

@media (max-width: 768px) {
  .contact-grid-inner {
    grid-template-columns: 1fr;
  }

  .catalog-section-header {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .avail-item-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .contact-note-actions {
    flex-direction: column;
    align-items: center;
  }
}