/* ====== VARIABLES — COASTAL APOTHECARY PALETTE ====== */
:root {
  --cream: #f5f0e6;
  --cream-soft: #faf6ee;
  --sand: #e8dfcf;
  --moss: #5d6b4f;
  --moss-deep: #3e4a35;
  --sage: #a4ad95;
  --clay: #b8845f;
  --clay-deep: #8a5d3e;
  --bark: #2f2820;
  --ink: #1a1612;
  --mist: #d8d1bf;
  --gold: #c9a266;

  --shadow-sm: 0 2px 12px rgba(47, 40, 32, 0.06);
  --shadow-md: 0 8px 32px rgba(47, 40, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(47, 40, 32, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --container: 1320px;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease, color 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--moss); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 300; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--moss-deep); }

p { color: #4a4138; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.7; color: #5a5044; max-width: 620px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.eyebrow.light { color: var(--sand); }

/* ====== LAYOUT ====== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; position: relative; }
@media (max-width: 1024px) { section { padding: 80px 0; } }
@media (max-width: 640px) { section { padding: 60px 0; } .container { padding: 0 22px; } }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head h2 { margin-bottom: 18px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--moss-deep);
  color: var(--cream-soft);
  box-shadow: 0 4px 20px rgba(62, 74, 53, 0.25);
}
.btn-primary:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62, 74, 53, 0.35);
}
.btn-ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--moss); border-color: var(--moss); }
.btn.large { padding: 18px 36px; font-size: 1rem; }

/* ====== HEADER ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 132, 95, 0.12);
  transition: all 0.3s ease;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}
.logo-mark {
  font-size: 1.6rem;
  color: var(--moss);
}
.logo-text em { font-style: italic; color: var(--clay); font-weight: 400; }
.nav-desktop {
  display: flex;
  gap: 36px;
}
.nav-desktop a {
  font-size: 0.92rem;
  color: var(--bark);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--moss);
  transition: width 0.3s ease;
}
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-desktop a.active { color: var(--moss-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px 32px 32px;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.4rem; }

@media (max-width: 900px) {
  .nav-desktop, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 30s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 0.4) 0%, rgba(245, 240, 230, 0.85) 70%, var(--cream) 100%),
    radial-gradient(ellipse at top right, rgba(184, 132, 95, 0.15), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-inner h1 {
  margin-bottom: 28px;
  animation: fadeUp 1s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-inner .lede {
  margin-bottom: 40px;
  animation: fadeUp 1s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 1s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 700px;
  padding-top: 32px;
  border-top: 1px solid rgba(62, 74, 53, 0.2);
  animation: fadeUp 1s 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-meta span { font-size: 0.88rem; color: var(--clay-deep); letter-spacing: 0.04em; }
@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== TRUST ====== */
.trust { padding: 60px 0; background: var(--cream-soft); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.trust-row { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay-deep); }
.trust-logos { display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; }
.trust-logos span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--moss-deep);
  opacity: 0.7;
}

/* ====== FEATURES ====== */
.features { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  border: 1px solid rgba(184, 132, 95, 0.08);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-card:hover .feature-img img { transform: scale(1.06); }
.feature-card h3 { padding: 28px 28px 10px; }
.feature-card p { padding: 0 28px 28px; color: #5a5044; }

/* ====== WHY ====== */
.why { background: var(--cream-soft); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 50px; } }
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-text h2 { margin: 18px 0 28px; }
.why-text > p { margin-bottom: 36px; font-size: 1.05rem; line-height: 1.7; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184, 132, 95, 0.15);
}
.why-list li:last-child { border-bottom: none; }
.why-list span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clay);
  font-size: 1.4rem;
  min-width: 32px;
}
.why-list strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin-bottom: 4px; color: var(--ink); }
.why-list p { font-size: 0.95rem; color: #5a5044; }

/* ====== GALLERY ====== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-grid figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.g-1 { grid-column: span 2; grid-row: span 2; }
.g-2 { grid-column: span 2; }
.g-3 { grid-column: span 1; }
.g-4 { grid-column: span 1; }
.g-5 { grid-column: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; grid-row: auto; height: 220px; }
  .g-1 { grid-column: span 2; height: 280px; }
}

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--cream-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.testimonial-grid blockquote {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 132, 95, 0.1);
  position: relative;
}
.testimonial-grid blockquote::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--clay);
  opacity: 0.25;
  line-height: 1;
}
.testimonial-grid p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--bark);
  margin-bottom: 24px;
  position: relative;
}
.testimonial-grid footer {
  font-size: 0.92rem;
  color: var(--moss-deep);
  font-weight: 500;
}
.testimonial-grid footer span { color: var(--clay-deep); font-weight: 400; }

/* ====== CTA BANNER ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--moss-deep) 0%, var(--bark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 102, 0.15), transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--cream); }
.cta-inner h2 em { color: var(--gold); }
.cta-inner p { color: var(--sand); margin-top: 14px; max-width: 480px; }
.cta-banner .btn-primary {
  background: var(--cream);
  color: var(--bark);
}
.cta-banner .btn-primary:hover {
  background: var(--gold);
  color: var(--bark);
}

/* ====== LOCATION ====== */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 40px; } }
.location h2 { margin: 18px 0 28px; }
.address-line {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 1.4;
}
.loc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.loc-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--moss-deep);
  margin-bottom: 8px;
}
.loc-meta a:hover { color: var(--moss); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.map-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ====== PAGE HERO ====== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  position: relative;
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lede { font-size: 1.15rem; }

/* ====== STORY (ABOUT) ====== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 50px; } }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { margin-bottom: 28px; }
.story-text p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.75; }

/* ====== VALUES ====== */
.values { background: var(--cream-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.values-grid article {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--moss);
}
.val-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--clay);
  margin-bottom: 20px;
}
.values-grid h3 { margin-bottom: 14px; font-family: var(--font-display); font-weight: 500; }

/* ====== MISSION ====== */
.mission { background: linear-gradient(135deg, var(--moss-deep) 0%, var(--bark) 100%); position: relative; overflow: hidden; }
.mission::before {
  content: '';
  position: absolute;
  bottom: -40%; left: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201, 162, 102, 0.1), transparent 70%);
  border-radius: 50%;
}
.mission-inner { position: relative; z-index: 2; max-width: 800px; }
.mission-inner h2 { color: var(--cream); margin-bottom: 28px; }
.mission-inner p { color: var(--sand); font-size: 1.15rem; line-height: 1.7; font-family: var(--font-display); font-style: italic; font-weight: 300; }

/* ====== TEAM ====== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.team-grid article { text-align: center; }
.team-img {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 220px;
  margin-left: auto; margin-right: auto;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-grid article:hover .team-img img { transform: scale(1.06); }
.team-grid h3 { margin-bottom: 4px; }
.team-grid p { color: var(--clay-deep); font-size: 0.92rem; letter-spacing: 0.04em; }

/* ====== MENU SECTION ====== */
.menu-section { background: var(--cream); }
.menu-block { margin-bottom: 80px; }
.menu-block:last-child { margin-bottom: 0; }
.menu-head {
  border-bottom: 1px solid rgba(184, 132, 95, 0.2);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.menu-head h2 { margin-bottom: 10px; }
.menu-head p { color: var(--clay-deep); font-style: italic; font-family: var(--font-display); }
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 60px;
}
@media (max-width: 700px) { .menu-items { grid-template-columns: 1fr; } }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(184, 132, 95, 0.2);
}
.menu-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.menu-item p { font-size: 0.93rem; color: #5a5044; line-height: 1.5; }
.price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--moss-deep);
  font-size: 1.05rem;
  white-space: nowrap;
  font-weight: 500;
}

/* ====== CONTACT ====== */
.contact-section { background: var(--cream-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }
.contact-info h2, .contact-form h2 { margin-bottom: 32px; }
.info-block { margin-bottom: 28px; }
.info-block h4 { color: var(--clay-deep); margin-bottom: 8px; }
.info-block p { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.info-block a { border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.info-block a:hover { border-color: var(--moss); }

.contact-form {
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) { .contact-form { padding: 32px 24px; } }
.contact-form label {
  display: block;
  margin-bottom: 22px;
}
.contact-form label span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream-soft);
  border: 1px solid rgba(184, 132, 95, 0.2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--bark);
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--moss);
  background: white;
  box-shadow: 0 0 0 3px rgba(93, 107, 79, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-note { margin-top: 16px; font-style: italic; color: var(--moss); font-size: 0.95rem; }

/* ====== MAP SECTION ====== */
.map-section { padding: 0 0 120px; background: var(--cream-soft); }
.map-large {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-large iframe {
  width: 100%; height: 100%;
  border: none;
  filter: sepia(15%) saturate(90%);
}

/* ====== LEGAL ====== */
.legal { background: var(--cream); }
.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--moss-deep);
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal ul {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1rem;
}
.legal ul { padding-left: 24px; list-style: disc; }
.legal a { color: var(--moss-deep); border-bottom: 1px solid var(--moss); }
.legal a:hover { color: var(--clay-deep); border-color: var(--clay); }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--bark);
  color: var(--sand);
  padding: 80px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(184, 132, 95, 0.15);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin: 12px 0 10px;
}
.footer-brand h3 em { color: var(--gold); font-style: italic; }
.footer-brand p { color: var(--mist); font-size: 0.93rem; max-width: 280px; line-height: 1.6; }
.footer-brand .logo-mark { color: var(--gold); font-size: 1.8rem; }
.site-footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul a, .site-footer address a {
  color: var(--mist);
  font-size: 0.95rem;
  font-style: normal;
}
.site-footer ul a:hover, .site-footer address a:hover { color: var(--gold); }
.site-footer address { color: var(--mist); font-style: normal; font-size: 0.95rem; line-height: 1.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--mist); font-size: 0.85rem; }
.footer-bottom p:last-child { font-style: italic; color: var(--sage); }

/* ====== SCROLL ANIMATIONS ====== */
@media (prefers-reduced-motion: no-preference) {
  .feature-card, .values-grid article, .team-grid article, .testimonial-grid blockquote {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .feature-card.in-view, .values-grid article.in-view,
  .team-grid article.in-view, .testimonial-grid blockquote.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}