/* ============================================
   Aligned with Dr. Kendra — Design System
   Warm, natural, editorial — holistic chiropractic & functional nutrition
   ============================================ */

:root {
  /* Palette: warm cream foundation with ocean blue accents + terracotta */
  --cream: #f6f1e7;
  --cream-deep: #ede4d2;
  --paper: #fbf8f1;
  --sage-50: #e2ecf0;       /* misty sea foam */
  --sage-200: #a8c4d0;      /* soft sky/sea */
  --sage-500: #5e8aa3;      /* mid ocean */
  --sage-700: #2e5d7d;      /* deep ocean */
  --sage-900: #1a3a52;      /* deep navy */
  --terracotta: #d68214;
  --terracotta-deep: #b06a0e;
  --ink: #2b2722;
  --ink-soft: #4a4339;
  --muted: #7a7166;
  --line: #d8cfbe;

  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-sans: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-script: "Caveat", cursive;

  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 30px 60px -30px rgba(60, 50, 35, 0.18);
  --shadow-lift: 0 20px 50px -20px rgba(60, 50, 35, 0.25);

  --t-fast: 0.2s ease;
  --t-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  overflow-x: hidden;
}

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

a {
  color: var(--sage-700);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--terracotta); }

/* ===== Typography ===== */

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sage-500);
}

.script {
  font-family: var(--ff-script);
  color: var(--terracotta);
  font-size: 1.3em;
  font-weight: 500;
}

/* ===== Layout helpers ===== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(64px, 9vw, 130px) 0; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 16px 30px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sage-700);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--sage-900);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-outline {
  background: transparent;
  color: var(--sage-700);
  border-color: var(--sage-500);
}

.btn-outline:hover {
  background: var(--sage-700);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--paper);
}

.btn-terracotta:hover {
  background: var(--terracotta-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn .arrow { transition: transform var(--t-base); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Nav ===== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(251, 248, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
}

.nav.scrolled {
  border-bottom-color: var(--line);
  padding: 12px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand .brand-mark {
  font-family: var(--ff-script);
  color: var(--terracotta);
  font-size: 0.8rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: var(--t-base);
}

/* ===== Hero ===== */

.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 196, 208, 0.55), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.hero-text { position: relative; z-index: 2; }

.hero-text h1 {
  margin: 28px 0 32px;
}

.hero-text h1 .accent {
  font-style: italic;
  color: var(--sage-700);
  position: relative;
  white-space: nowrap;
}

.hero-text h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: rgba(194, 114, 74, 0.25);
  z-index: -1;
}

.hero-text p {
  font-size: 1.18rem;
  margin-bottom: 40px;
  max-width: 540px;
  color: var(--ink-soft);
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 40px;
}

.hero-art-wrap img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.hero-art-wrap .hero-badge {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.5s ease;
}

.hero-image-wrap:hover img { transform: scale(1.06); }

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(251, 248, 241, 0.4);
  border-radius: calc(var(--radius-lg) - 14px);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--paper);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.hero-badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 0 0 4px rgba(94, 138, 163, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero-badge-text {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.3;
}

.hero-badge-text strong { display: block; color: var(--ink); font-size: 0.95rem; }

/* Floating leaf marks */
.leaf-mark {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
}

/* ===== Marquee strip ===== */

.marquee {
  background: var(--sage-900);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--sage-700);
  border-bottom: 1px solid var(--sage-700);
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  align-items: center;
  animation: marquee 38s linear infinite;
}

.marquee-track span {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 50px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--terracotta);
  font-size: 0.8rem;
  font-style: normal;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section heads ===== */

.section-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 { margin: 18px 0 18px; }
.section-head p { font-size: 1.1rem; }

/* ===== Approach (3 pillars) ===== */

.approach { background: var(--paper); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar {
  background: var(--cream);
  padding: 50px 36px;
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid transparent;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-200);
}

.pillar-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.pillar h3 { margin-bottom: 14px; }

/* ===== Services ===== */

.services { background: var(--cream); position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--paper);
  padding: 44px 38px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  border: 1px solid var(--line);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-500);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--sage-700);
}

.service-card h3 { margin-bottom: 14px; }

.service-card ul {
  list-style: none;
  margin-top: 18px;
}

.service-card li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 6px 0 6px 22px;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 1px;
  background: var(--terracotta);
}

/* ===== Conditions chips ===== */

.conditions {
  margin-top: 60px;
  text-align: center;
}

.conditions h4 {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  padding: 10px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: all var(--t-fast);
}

.chip:hover {
  background: var(--sage-700);
  color: var(--paper);
  border-color: var(--sage-700);
  cursor: default;
}

/* ===== About preview ===== */

.about-preview { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  aspect-ratio: 4/5;
}

.about-image-stack img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image-stack::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: var(--sage-50);
  border-radius: var(--radius);
  z-index: -1;
}

.about-quote {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ===== Testimonial ===== */

.testimonial {
  background: var(--sage-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: var(--ff-display);
  font-size: 22rem;
  color: var(--sage-700);
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
  opacity: 0.5;
}

.testimonial .container { position: relative; z-index: 2; }

.testimonial blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: var(--cream);
}

.testimonial-attribution {
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--sage-200);
}

.testimonial-attribution::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto 18px;
}

/* ===== Shop ===== */

.shop { background: var(--cream); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t-base);
  border: 1px solid var(--line);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.product-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sage-50), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image .product-emoji {
  font-size: 4rem;
  filter: saturate(0.85);
}

.product-image .product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-image .tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--terracotta);
  color: var(--paper);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.product-content { padding: 26px 28px; }

.product-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-content p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  min-height: 50px;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--ink);
}

.product-link {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== Blog preview ===== */

.blog-preview { background: var(--paper); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.post-card { cursor: pointer; }

.post-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--sage-50);
  position: relative;
}

.post-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-200), var(--cream-deep));
}

.post-image .post-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  filter: saturate(0.85);
}

.post-image .post-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-meta .dot {
  width: 4px; height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
}

.post-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}

.post-card:hover h3 { color: var(--terracotta); }

.post-card p { font-size: 0.96rem; }

/* ===== CTA strip ===== */

.cta-strip {
  background: var(--cream-deep);
  text-align: center;
  padding: 100px 0;
}

.cta-strip h2 {
  max-width: 720px;
  margin: 0 auto 24px;
}

.cta-strip h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.cta-strip p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */

.footer {
  background: var(--ink);
  color: var(--cream-deep);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.1;
}

.footer-brand-name .script {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer p {
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.95rem;
}

.footer h4 {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--terracotta); }

.socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246, 241, 231, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all var(--t-fast);
}

.social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(246, 241, 231, 0.5);
}

.footer-bottom a { color: rgba(246, 241, 231, 0.6); }

/* ===== Page header (inner pages) ===== */

.page-head {
  padding: 180px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 196, 208, 0.55), transparent 70%);
  border-radius: 50%;
}

.page-head .container { position: relative; }

.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { max-width: 800px; margin-bottom: 24px; }
.page-head p { font-size: 1.18rem; max-width: 640px; }

/* ===== About page specific ===== */

.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.bio-image {
  position: sticky;
  top: 120px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.bio-image img { width: 100%; height: 100%; object-fit: cover; }

.bio-text h2 { margin: 30px 0 18px; }
.bio-text h2:first-child { margin-top: 0; }
.bio-text p { margin-bottom: 18px; font-size: 1.05rem; line-height: 1.75; }

.credentials {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  margin-top: 40px;
}

.credentials h3 { margin-bottom: 20px; }

.credentials ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.credentials li {
  padding-left: 22px;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.credentials li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.7rem;
  top: 5px;
}

/* ===== Blog page ===== */

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
}

.blog-featured .post-image { margin-bottom: 0; }
.blog-featured h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 14px; }

/* ===== Contact ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 20px;
  background: var(--paper);
}

.contact-info-card h4 {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin-bottom: 14px;
}

.contact-info-card p {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.4;
}

.contact-info-card a { color: var(--ink); }
.contact-info-card a:hover { color: var(--terracotta); }

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t-fast);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sage-700);
}

.form-row textarea { resize: vertical; min-height: 120px; }

/* ===== Reveal animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 30px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .hero { padding-top: 130px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-badge { left: 14px; bottom: -20px; padding: 14px 18px; }
  .hero-art-wrap { padding: 0; max-width: 420px; margin: 0 auto; }
  .hero-art-wrap .hero-badge { bottom: -24px; }

  .pillars,
  .services-grid,
  .shop-grid,
  .posts-grid,
  .about-grid,
  .bio-layout,
  .blog-list,
  .contact-grid,
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .bio-image { position: static; }

  .testimonial::before { font-size: 14rem; top: 0; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .service-card,
  .pillar { padding: 32px 24px; }
}
