/* ══════════════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════════════ */
:root {
  --cream:        #f7f3ec;
  --cream-dark:   #ede7da;
  --page-bg:      #ece0c8;
  --page-bg-rgb:  236, 224, 200;
  --sage:         #7a9e7e;
  --sage-dark:    #5a7a5e;
  --sage-light:   #a8c5aa;
  --sage-glow:    rgba(122,158,126,0.15);
  --terra:        #b87c5a;
  --terra-light:  rgba(184,124,90,0.12);
  --bark:         #3d3228;
  --bark-mid:     #5c4d40;
  --text-primary: #2e2318;
  --text-secondary:#6b5c4e;
  --text-muted:   #9c8878;
  --border:       rgba(122,158,126,0.25);
  --border-dark:  rgba(122,158,126,0.45);
  --header-height:120px;
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--page-bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle linen texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ══════════════════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════════════════ */
.page { display: flex; min-height: 100vh; flex-direction: column; position: relative; z-index: 1; animation: pageIn 0.5s ease; }
@keyframes pageIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 300;
  height: var(--header-height);
  background: rgba(var(--page-bg-rgb), 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 48px;
  gap: 36px;
}

/* Brand wordmark on the left */
.logo-area {
  flex-shrink: 0;
  display: flex; align-items: center;
  height: 100%;
}
.logo-area a { text-decoration: none; color: inherit; display: flex; align-items: center; height: 100%; }
.brand-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.02em;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-wordmark em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 500;
}

/* 3-line tagline to the right of the wordmark */
.header-tagline {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.tag-line {
  font-family: 'Cormorant Garamond', serif;
  color: var(--bark);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag-line.tag-strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Menu toggle (always visible, on the right) */
.nav-toggle {
  margin-left: auto;
  background: none; border: 1px solid var(--border-dark);
  color: var(--bark); font-size: 22px;
  cursor: pointer; flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.nav-toggle:hover { background: var(--sage-glow); border-color: var(--sage); }

/* Dropdown nav (opens from the menu icon) */
nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  right: 24px;
  min-width: 220px;
  background: rgba(var(--page-bg-rgb), 0.98);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(61,50,40,0.12);
  flex-direction: column;
  padding: 10px 0;
  z-index: 299;
  backdrop-filter: blur(12px);
}
nav.open { display: flex; }
nav a {
  padding: 10px 22px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
nav a:hover { color: var(--bark); background: var(--sage-glow); }
nav a.active { color: var(--sage-dark); }
nav a.active::before {
  content: '';
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--sage);
}

/* ══════════════════════════════════════════════════
   MOBILE TAGLINE STRIP (hidden on desktop, see media query)
══════════════════════════════════════════════════ */
.mobile-tagline-strip {
  display: none;
}

/* ══════════════════════════════════════════════════
   BOTANICAL DIVIDER
══════════════════════════════════════════════════ */
.botanical-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 0 auto 40px;
  max-width: 200px;
}
.botanical-divider::before,
.botanical-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border-dark);
}
.botanical-divider span {
  color: var(--sage); font-size: 18px;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   SECTION LABEL
══════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════
   IMAGE PLACEHOLDER LABEL
══════════════════════════════════════════════════ */
.placeholder-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--text-muted);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
  z-index: 2;
}

/* ══════════════════════════════════════════════════
   PAGE: HOME — HERO (dark, like services hero)
══════════════════════════════════════════════════ */
.home-hero {
  background: var(--bark);
  padding: 80px 48px 80px;
  position: relative; overflow: hidden;
}
.home-hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.home-hero-text { min-width: 0; }
.home-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.home-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 340px;
}
.home-hero .section-label { color: var(--sage-light); }
.home-hero h1.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 26px;
}
.home-hero h1.hero-tagline em {
  font-style: italic;
  color: var(--sage-light);
}
.home-hero .hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(237,231,218,0.78);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: var(--sage);
  color: #fff; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border: none; border-radius: 3px;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(90,122,94,0.3); }

.btn-ghost {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: var(--sage-light);
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(168,197,170,0.6); border-radius: 3px;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(168,197,170,0.1); border-color: var(--sage-light); color: #fff; }

/* ══════════════════════════════════════════════════
   PAGE: HOME — CARDS SECTION (under hero)
══════════════════════════════════════════════════ */
.home-cards-section {
  position: relative;
  padding: 96px 32px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}
.home-cards-section .placeholder-tag {
  top: 18px; left: 18px;
}
.home-cards-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-cards-heading {
  text-align: center;
  margin-bottom: 56px;
}
.home-cards-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.2;
}
.home-cards-heading h2 em { font-style: italic; color: var(--sage-dark); }
.home-cards-heading p {
  margin-top: 16px;
  font-size: 15px; font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 24px 28px;
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
  min-width: 0;
}
.home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(61,50,40,0.10);
  border-color: var(--border-dark);
}
.home-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: var(--sage); line-height: 1;
  margin-bottom: 18px;
}
.home-card h3,
.contact-left .contact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: var(--bark); margin-bottom: 14px;
  line-height: 1.25;
}
.home-card p {
  font-size: 14.5px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.75;
  flex: 1;
}
.home-card-tags {
  display: flex; flex-wrap: nowrap; gap: 5px;
  margin-top: 20px;
}
.home-card-tag {
  padding: 3px 8px;
  background: var(--terra-light);
  border: 1px solid rgba(184,124,90,0.25);
  border-radius: 2px;
  font-size: 9.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--terra);
  white-space: nowrap;
  flex: 0 1 auto;
}

/* ══════════════════════════════════════════════════
   PAGE: GALLERY
══════════════════════════════════════════════════ */
.gallery-hero {
  background: var(--bark);
  padding: 64px 48px 48px;
  position: relative; overflow: hidden;
}
.gallery-hero .section-label { color: var(--sage-light); }
.gallery-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 300; color: var(--cream); line-height: 1.1;
  max-width: 760px;
}
.gallery-hero h1 em { font-style: italic; color: var(--sage-light); }
.gallery-hero p {
  font-size: 16px; font-weight: 300;
  color: rgba(237,231,218,0.7); line-height: 1.75;
  max-width: 620px; margin-top: 18px;
}

.gallery-body {
  padding: 64px 48px 80px;
  max-width: 1280px; margin: 0 auto; width: 100%;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
}
.carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--cream-dark);
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 32px 22px;
  background: linear-gradient(to top, rgba(61,50,40,0.78) 0%, rgba(61,50,40,0.45) 55%, rgba(61,50,40,0) 100%);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(247,243,236,0.92);
  border: 1px solid var(--border-dark);
  color: var(--bark);
  font-size: 24px; line-height: 1;
  cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.carousel-btn:hover {
  background: var(--sage); color: #fff; border-color: var(--sage);
}
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--sage);
  border-color: var(--sage);
  transform: scale(1.2);
}

.carousel-counter {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════
   PAGE: ABOUT
══════════════════════════════════════════════════ */
.about-hero {
  padding: 80px 48px 0;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.about-portrait {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,50,40,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.about-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; color: var(--bark); line-height: 1.1;
  margin-bottom: 8px;
}
.about-text h1 em { font-style: italic; color: var(--sage-dark); }
.about-sub {
  font-size: 13px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 28px;
}
.about-text p {
  font-size: 15.5px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.85;
  margin-bottom: 18px;
}

/* ══════════════════════════════════════════════════
   PAGE: CONTACT
══════════════════════════════════════════════════ */
.contact-wrap {
  flex: 1; padding: 80px 48px;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; color: var(--bark); line-height: 1.1;
  margin-bottom: 8px;
}
.contact-left h1 em { font-style: italic; color: var(--sage-dark); }
.contact-left p {
  font-size: 15px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.8;
  margin-top: 20px; margin-bottom: 22px;
}
.contact-areas {
  display: inline-flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px;
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  margin-top: 6px;
}
.contact-areas-icon { font-size: 18px; line-height: 1; }
.contact-areas-label { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.contact-areas-value { font-size: 14px; font-weight: 400; color: var(--bark); margin-top: 2px; letter-spacing: 0.02em; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-hint {
  font-size: 11.5px; font-weight: 300; color: var(--text-muted);
  font-style: italic; margin-top: -4px;
}
.form-input, .form-textarea, .form-select {
  background: #fff; border: 1px solid var(--border-dark);
  border-radius: 3px; padding: 11px 14px;
  color: var(--text-primary); font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 300;
  transition: var(--transition); outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.submit-btn {
  padding: 13px 32px; align-self: flex-start;
  background: var(--sage); color: #fff;
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: var(--transition);
}
.submit-btn:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,122,94,0.3); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.form-error {
  display: none;
  padding: 10px 14px;
  background: rgba(184,124,90,0.1);
  border: 1px solid rgba(184,124,90,0.35);
  border-radius: 3px;
  color: var(--terra);
  font-size: 13px;
}
.form-success {
  display: none; padding: 20px 24px; text-align: center;
  background: var(--sage-glow); border: 1px solid var(--border-dark);
  border-radius: 3px;
}
.form-success p { color: var(--sage-dark); font-size: 15px; font-weight: 400; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--bark);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  position: relative; z-index: 1;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 400;
  color: var(--cream); letter-spacing: 0.04em;
}
.footer-areas {
  font-size: 12px; color: rgba(237,231,218,0.7);
  letter-spacing: 0.06em;
}
.footer-copy { font-size: 12px; color: rgba(237,231,218,0.45); }

/* ══════════════════════════════════════════════════
   SHARED CONTACT FORM SECTION
══════════════════════════════════════════════════ */
.page-contact-strip {
  background: var(--page-bg);
  border-top: 1px solid var(--border);
  padding: 64px 48px;
}
.page-contact-strip-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.page-contact-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; color: var(--bark);
  margin-bottom: 10px;
}
.page-contact-strip p {
  font-size: 15px; font-weight: 300;
  color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   MOBILE / RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .home-cards-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-cards-inner { max-width: 720px; }
  .home-card-tags { flex-wrap: wrap; }
}

@media (max-width: 980px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 720px;
  }
  .home-hero-image { order: -1; }
  .home-hero-image img { max-width: 420px; }
}

@media (max-width: 860px) {
  :root { --header-height: 96px; }
  header { padding: 0 18px; gap: 16px; }
  .brand-wordmark { font-size: 22px; }
  .header-tagline { gap: 2px; }
  .tag-line { font-size: 13px; }
  .tag-line.tag-strong { font-size: 13px; letter-spacing: 0.04em; }

  nav { right: 12px; left: 12px; min-width: auto; }

  .home-hero { padding: 56px 24px; }
  .home-cards-section { padding: 56px 24px; }
  .home-cards-heading { margin-bottom: 36px; }

  .gallery-hero { padding: 48px 24px 36px; }
  .gallery-body { padding: 48px 24px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 20px; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }

  .about-hero { padding: 48px 24px 0; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 36px; }

  .contact-wrap { padding: 48px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .page-contact-strip { padding: 48px 24px; }
}

@media (max-width: 720px) {
  :root { --header-height: 86px; }
  header { gap: 10px; padding: 0 14px; }
  .brand-wordmark { font-size: 19px; line-height: 1.1; white-space: normal; }
  .header-tagline { display: none; }
  .nav-toggle { width: 42px; height: 42px; font-size: 20px; }

  /* Show the 3-line tagline as a small strip immediately under the header */
  .mobile-tagline-strip {
    display: block;
    list-style: none;
    margin: 0;
    padding: 12px 18px;
    background: rgba(var(--page-bg-rgb), 0.96);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 250;
  }
  .mobile-tagline-strip li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding: 2px 0;
  }
  .mobile-tagline-strip li.mobile-tag-strong {
    font-weight: 600;
    color: var(--sage-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12.5px;
  }
}
