/* ===========================
   CORPORATEYOGI — STYLESHEET
   =========================== */

:root {
  /* CorporateYogi — Breath Palette
     Soft warm white · pale sand · gentle terracotta
     Like a calm room. Like an exhale. */
  --forest: #2E2820;
  --forest-light: #3D3530;
  --sage: #9B4A2E;
  --sage-light: #B56448;
  --linen: #F5F2ED;
  --sand: #EDE8DF;
  --sand-light: #F5F2ED;
  --ivory: #F5F2ED;
  --ivory-dark: #EDE8DF;
  --charcoal: #2E2820;
  --text: #2E2820;
  --text-muted: #8A8078;
  --white: #FDFCFA;
  --terra: #9B4A2E;
  --terra-light: #B56448;
  --terra-pale: #FBF0EB;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1160px;
  --radius: 4px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===========================
   CONTAINER & LAYOUT
   =========================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-alt { background: #F7F7F7; }
.section-dark { background: #111111; color: #FFFFFF; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}

.section-dark .section-title { color: var(--linen); }

/* ===========================
   NAVIGATION
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(245, 241, 235, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--terra-light) !important; }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--terra);
  color: var(--linen);
  border-color: var(--terra);
}

.btn-primary:hover {
  background: var(--terra-light);
  border-color: var(--terra-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}

.btn-ghost:hover {
  background: var(--terra);
  color: var(--linen);
}

.btn-ghost-light {
  background: transparent;
  color: var(--linen);
  border-color: rgba(248,244,240,0.5);
}

.btn-ghost-light:hover {
  background: rgba(248,244,240,0.1);
  border-color: var(--linen);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}

.btn-outline:hover {
  background: var(--terra);
  color: var(--linen);
  border-color: var(--terra);
}

.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.82rem; }

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(122,166,143,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196,168,130,0.1) 0%, transparent 50%),
    var(--ivory);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: var(--forest);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.06;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}

.hero-headline em {
  color: var(--forest);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===========================
   STRIP
   =========================== */

.strip {
  background: #111111;
  padding: 2.5rem 0;
}

.strip-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.strip-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--linen);
  line-height: 1;
}

.strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.strip-div {
  width: 1px;
  height: 40px;
  background: rgba(232,223,208,0.2);
}

/* ===========================
   INTRO
   =========================== */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
  padding-bottom: 110%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest);
}

.intro-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
}

/* Lotus SVG decoration */
.lotus { position: relative; width: 120px; height: 120px; }
.petal {
  position: absolute;
  width: 40px;
  height: 70px;
  background: rgba(232,223,208,0.15);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  left: 50%;
  top: 50%;
  transform-origin: 50% 100%;
  margin-left: -20px;
  margin-top: -70px;
}
.p1 { transform: rotate(0deg); }
.p2 { transform: rotate(60deg); }
.p3 { transform: rotate(120deg); }
.p4 { transform: rotate(180deg); }
.p5 { transform: rotate(240deg); }
.p6 { transform: rotate(300deg); }
.lotus-center {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(232,223,208,0.3);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.intro-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--sand);
  background: var(--ivory-dark);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.intro-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.intro-text .section-title { margin-bottom: 1.5rem; }

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.intro-text .btn { margin-top: 1rem; }

/* ===========================
   SERVICES
   =========================== */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(45,74,62,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--forest);
  color: var(--linen);
  border-color: transparent;
}

.service-card.featured::before { background: var(--sand); }

.featured-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(196,168,130,0.2);
  color: var(--sand-light);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--forest);
}

.service-card.featured .service-icon {
  background: rgba(232,223,208,0.1);
  color: var(--linen);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-card.featured h3 { color: var(--linen); }

.service-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-card.featured p { color: rgba(232,223,208,0.75); }

.service-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.service-price span { font-size: 0.9rem; font-weight: 300; color: var(--text-muted); }
.service-card.featured .service-price { color: var(--linen); }
.service-card.featured .service-price span { color: rgba(232,223,208,0.6); }

.service-link {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--sage);
  font-weight: 500;
  transition: color 0.2s;
}

.service-link:hover { color: var(--forest); }
.service-card.featured .service-link { color: var(--sand-light); }

.services-cta { text-align: center; margin-top: 3rem; }

/* ===========================
   PROCESS
   =========================== */

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.process-line {
  width: 60px;
  height: 1px;
  background: var(--sage-light);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   TESTIMONIAL FEATURE
   =========================== */

.testimonial-feature-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tf-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--sage);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  display: block;
}

.tf-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--linen);
  margin-bottom: 2rem;
}

.tf-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tf-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
}

.tf-name {
  font-weight: 500;
  color: var(--linen);
  font-size: 0.95rem;
}

.tf-role {
  font-size: 0.78rem;
  color: var(--sage-light);
  letter-spacing: 0.04em;
}

/* ===========================
   SHOP PREVIEW
   =========================== */

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease);
}

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

.shop-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-img-1 {
  background: linear-gradient(135deg, var(--forest) 0%, #4A7060 100%);
}

.shop-img-2 {
  background: linear-gradient(135deg, var(--sand) 0%, #A08060 100%);
}

.shop-info { padding: 1.75rem 2rem; }

.shop-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.shop-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.coming-soon-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ivory-dark);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

/* ===========================
   CTA BANNER
   =========================== */

.cta-banner {
  background: var(--terra);
  padding: 5rem 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: #111111;
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(232,223,208,0.5);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--linen); }

.footer-links h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(232,223,208,0.6);
  transition: color 0.2s;
}

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

.footer-contact h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 1.25rem;
}

.footer-contact p, .footer-contact a {
  font-size: 0.85rem;
  color: rgba(232,223,208,0.6);
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--linen); }

.footer-bottom {
  border-top: 1px solid rgba(232,223,208,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(232,223,208,0.4); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(232,223,208,0.4);
  transition: color 0.2s;
}

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

/* ===========================
   NEWSLETTER SECTION
   =========================== */

.newsletter-section {
  background: var(--ivory-dark);
  padding: 6rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

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

.newsletter-perks li {
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .newsletter-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

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

.page-header {
  background: var(--forest);
  padding: 8rem 0 5rem;
  text-align: center;
}

.page-header .section-eyebrow { color: var(--sage-light); }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--linen);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1rem;
  color: rgba(232,223,208,0.7);
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   FORM STYLES
   =========================== */

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,166,143,0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  background: rgba(122,166,143,0.1);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--forest);
  margin-top: 1rem;
  display: none;
}

/* ===========================
   TESTIMONIALS PAGE
   =========================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.8;
  color: var(--sage-light);
  margin-bottom: 1rem;
  display: block;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.t-name { font-weight: 500; font-size: 0.9rem; color: var(--charcoal); }
.t-role { font-size: 0.78rem; color: var(--text-muted); }

/* ===========================
   BLOG
   =========================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease);
}

.blog-card:hover { transform: translateY(-3px); }

.blog-img {
  height: 200px;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-body { padding: 1.5rem; }

.blog-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.blog-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-line { width: 1px; height: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(245,241,235,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-headline { font-size: clamp(2.8rem, 10vw, 5rem); }
  .strip-div { display: none; }
  .strip-items { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .service-card { padding: 1.75rem 1.5rem; }
}
