/* ============================
   Practice Presence — Styles
   Palette: Cream, Sage, Rose, Green, Charcoal, Emerald, Copper
   Fonts: Instrument Serif, Plus Jakarta Sans, Caveat
   ============================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --cream: #FEFFF5;
  --sand: #E2E1CA;
  --rose: #E0B9C5;
  --sage: #B2C7A6;
  --charcoal: #3A3936;
  --emerald: #00763e;
  --copper: #db8a52;

  /* Derived colors */
  --cream-dark: #F3F2E0;
  --sand-dark: #CDCBB2;
  --rose-light: #F2E4EA;
  --rose-dark: #C8929F;
  --sage-light: #E4EDE0;
  --sage-dark: #8FA880;
  --emerald-dark: #005C2F;
  --emerald-light: #E0F2E8;
  --copper-light: #F5E0CC;
  --copper-dark: #B06E38;
  --charcoal-light: #5E5B57;
  --charcoal-muted: #8A8680;

  /* Semantic tokens */
  --color-bg: var(--cream);
  --color-text: var(--charcoal);
  --color-text-light: var(--charcoal-light);
  --color-text-muted: var(--charcoal-muted);
  --color-primary: var(--emerald);
  --color-primary-dark: var(--emerald-dark);
  --color-accent: var(--copper);
  --color-accent-dark: var(--copper-dark);
  --color-border: var(--sand);

  /* Fonts */
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-hand: 'Kalam', cursive;

  /* Layout */
  --container: 1320px;
  --section-pad: 7rem 0;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 20px rgba(58, 57, 54, 0.06);
  --shadow-lg: 0 8px 40px rgba(58, 57, 54, 0.10);
  --transition: 0.3s ease;
}

/* --- Accessibility: Focus --- */
*:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Accessibility: Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
}

/* --- Selection color --- */
::selection {
  background: var(--rose);
  color: var(--charcoal);
}

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--emerald);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

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

.section { padding: var(--section-pad); }

/* --- Section typographic elements --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--sage); }
.section-eyebrow--accent { color: var(--copper); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 32;
}
.section-title--left { text-align: left; }

.section-sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ============================
   Handwritten annotations (Caveat) — Delight!
   ============================ */
.handwritten {
  font-family: var(--font-hand);
  color: var(--copper);
  font-size: 1.25rem;
  font-weight: 400;
  display: inline-block;
  transform: rotate(-2deg);
  opacity: 0.85;
}
.hero-annotation {
  margin-top: 1rem;
  display: block;
}
.service-annotation {
  position: absolute;
  bottom: -0.5rem;
  right: 2rem;
  font-size: 1.1rem;
  transform: rotate(-4deg);
}
.diff-annotation {
  margin-top: -0.75rem;
  margin-bottom: 2rem;
  display: block;
  transform: rotate(-1.5deg);
}
.magnet-annotation {
  margin-top: 0.75rem;
  display: block;
  font-size: 1.2rem;
  transform: rotate(-3deg);
}
.about-annotation {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  transform: rotate(-2deg);
}
.process-annotation {
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  display: block;
  font-size: 1.2rem;
  transform: rotate(-2.5deg);
}

/* ============================
   IMAGE PLACEHOLDERS
   Clear, visual, impossible to miss
   ============================ */
.placeholder {
  background: repeating-linear-gradient(
    -45deg,
    var(--cream-dark),
    var(--cream-dark) 10px,
    var(--sand) 10px,
    var(--sand) 20px
  );
  border: 3px dashed var(--copper);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  min-height: 200px;
  gap: 0.5rem;
}

.placeholder-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper-dark);
  line-height: 1.5;
  max-width: 320px;
}

.placeholder-size {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--copper);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.25rem;
}

.placeholder--tall { min-height: 400px; }
.placeholder--wide { min-height: 280px; width: 100%; }
.placeholder--inline { min-height: 260px; margin-bottom: 1.5rem; }
.placeholder--portfolio-lg { min-height: 380px; }
.placeholder--portfolio-sm { min-height: 260px; }
.placeholder--mood { min-height: 180px; }
.placeholder--shop { min-height: 240px; }
.placeholder--magnet { min-height: 340px; }
.placeholder--portrait { min-height: 460px; }
.placeholder--avatar {
  min-height: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0.25rem;
  flex-shrink: 0;
}
.placeholder--avatar .placeholder-label { font-size: 0.55rem; max-width: 50px; }
.placeholder--avatar .placeholder-size { display: none; }
.placeholder--contact { min-height: 280px; }

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 118, 62, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline--light {
  color: var(--cream);
  border-color: rgba(254, 255, 245, 0.35);
}
.btn-outline--light:hover {
  background: var(--cream);
  color: var(--charcoal);
}
.btn-accent {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}
.btn-accent:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219, 138, 82, 0.3);
}
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }
.center-cta { text-align: center; margin-top: 3rem; }

/* ============================
   Navigation
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 255, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--charcoal);
  font-weight: 600;
}
.nav-logo:hover { color: var(--charcoal); }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--emerald);
  color: var(--cream);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--emerald); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle span:nth-child(2) { margin: 6px 0; }

/* ============================
   Hero
   ============================ */
.hero {
  padding: 10rem 0 5rem;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
/* Subtle organic blob shape behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, var(--sage-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-content { max-width: 620px; }
.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 48;
}
.hero h1 em {
  font-style: italic;
  color: var(--emerald);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.hero-mosaic .placeholder--tall {
  grid-row: 1 / 3;
}

/* ============================
   Scrolling Marquee — Delight!
   ============================ */
.marquee {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 0 1.5rem;
  flex-shrink: 0;
}
.marquee-icon {
  color: var(--copper);
  flex-shrink: 0;
  opacity: 0.7;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   Tension / Problem
   ============================ */
.tension-section {
  background: var(--cream);
}
.tension-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.big-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 400;
  color: var(--emerald);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144;
}
.tension-stat p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 400px;
}
.tension-content p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}
.tension-content strong { color: var(--charcoal); }

/* ============================
   Services
   ============================ */
.services-section { background: var(--sage-light); }
.services-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  padding: 3rem;
  border-color: var(--sage);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 14px;
  color: var(--emerald);
  margin-bottom: 1rem;
}
.service-card--featured .service-icon {
  background: var(--emerald-light);
}
.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}
.service-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.service-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.service-price {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.service-timeline {
  color: var(--charcoal-muted);
  font-size: 0.95rem;
}
.services-secondary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ============================
   Portfolio
   ============================ */
.portfolio-section {
  background: var(--charcoal);
  color: var(--cream);
}
.portfolio-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(254,255,245, 0.05);
  transition: transform var(--transition);
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card--large {
  grid-row: 1 / 3;
}
.portfolio-info {
  padding: 1.5rem 2rem 2rem;
}
.portfolio-url {
  display: inline-block;
  background: rgba(254,255,245, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(254,255,245, 0.6);
  margin-bottom: 0.5rem;
}
.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.portfolio-specialty {
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.portfolio-info p:last-child {
  font-size: 0.9rem;
  color: rgba(254,255,245, 0.65);
  line-height: 1.6;
}

/* ============================
   Differentiator — Mood board
   ============================ */
.differentiator-section { background: var(--rose-light); }
.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.diff-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  padding-left: 2rem;
  position: relative;
}
.diff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 2C8 2 5.5 5 5.5 8c0 2.2 1.1 4 2.5 4.8C9.4 12 10.5 10.2 10.5 8c0-3-2.5-6-2.5-6z' stroke='%2300763e' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M8 5v8' stroke='%2300763e' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.diff-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.photo-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo-grid-mini .placeholder--mood:nth-child(2) { margin-top: 2rem; }
.photo-grid-mini .placeholder--mood:nth-child(3) { margin-top: -2rem; }

/* ============================
   Shop — Stock photo packs
   ============================ */
.shop-section { background: var(--cream); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.shop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: transform var(--transition), box-shadow var(--transition);
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.shop-info {
  padding: 1.5rem 1.5rem 2rem;
}
.shop-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.shop-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.shop-count {
  font-size: 0.8rem;
  color: var(--charcoal-muted);
  font-weight: 500;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
}
.shop-custom {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--charcoal-light);
  font-size: 0.95rem;
}
.shop-custom a { font-weight: 600; }

/* ============================
   Lead Magnet — VideoAsk
   ============================ */
.lead-magnet-section {
  background: var(--copper-light);
  position: relative;
  overflow: hidden;
}
/* Soft organic shape behind */
.lead-magnet-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, var(--rose-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.lead-magnet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.lead-magnet-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.lead-magnet-content > p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.lead-magnet-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.lead-magnet-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.lead-magnet-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--copper);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.lead-magnet-note {
  font-size: 0.8rem;
  color: var(--charcoal-muted);
  margin-top: 0.75rem;
}

/* ============================
   About
   ============================ */
.about-section { background: var(--cream); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.about-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 500;
}
.about-text p {
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-quote {
  border-left: 3px solid var(--copper);
  padding: 1.5rem;
  margin: 2rem 0;
  background: var(--copper-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}
.about-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
}

/* ============================
   Testimonials
   ============================ */
.testimonials-section { background: var(--sage-light); }
.testimonial-featured {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--sand);
}
.testimonial-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  display: block;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-card cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--emerald);
}

/* ============================
   Process
   ============================ */
.process-section { background: var(--sand); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  position: relative;
  background: var(--cream);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(178, 199, 166, 0.4);
}
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 12px;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}
.process-step .step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ============================
   Pricing
   ============================ */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--emerald);
  border-width: 2px;
  padding-top: 3.5rem;
}
.pricing-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 48;
}
.price span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--charcoal-muted);
}
.price-note {
  font-size: 0.8rem;
  color: var(--charcoal-muted);
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--sand);
  position: relative;
  padding-left: 1.5rem;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%2300763e' stroke-width='1.2'/%3E%3Cpath d='M4.5 7.2L6.2 9 9.5 5.5' stroke='%2300763e' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-features li:last-child { border: none; }

/* ============================
   FAQ
   ============================ */
.faq-section { background: var(--sage-light); }
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.2rem 0;
}
.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2300763e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ============================
   Contact / CTA
   ============================ */
.contact-section {
  background: var(--charcoal);
  color: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--cream);
}
.contact-text p {
  color: rgba(254, 255, 245, 0.75);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.contact-alt {
  font-size: 0.85rem !important;
  color: rgba(254, 255, 245, 0.45) !important;
}
.contact-alt a { color: var(--copper-light); }
.contact-alt a:hover { color: var(--copper); }

/* ============================
   Footer
   ============================ */
.footer {
  background: var(--charcoal);
  color: rgba(254, 255, 245, 0.55);
  border-top: 1px solid rgba(254, 255, 245, 0.08);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .logo-text { color: var(--cream); }
.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(254, 255, 245, 0.55);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--sage); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(254, 255, 245, 0.08);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 968px) {
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero-mosaic { max-width: 500px; }
  .tension-layout { grid-template-columns: 1fr; gap: 2rem; }
  .services-layout { grid-template-columns: 1fr; }
  .portfolio-layout { grid-template-columns: 1fr; }
  .portfolio-card--large { grid-row: auto; }
  .diff-layout { grid-template-columns: 1fr; gap: 2rem; }
  .shop-grid { grid-template-columns: 1fr; max-width: 480px; }
  .lead-magnet-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-col { max-width: 400px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .contact-ctas { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 5rem 0; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: space-between; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--sand);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { transform: translateY(0); }

  .hero { padding: 8rem 0 4rem; }
  .hero-mosaic { grid-template-columns: 1fr 1fr; }
  .hero-mosaic .placeholder--tall { grid-row: auto; min-height: 200px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  .marquee-track span { font-size: 0.85rem; }

  .process-timeline { grid-template-columns: 1fr; max-width: 400px; }
  .photo-grid-mini .placeholder--mood:nth-child(2),
  .photo-grid-mini .placeholder--mood:nth-child(3) { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --section-pad: 4rem 0; }
  .hero { padding: 7rem 0 3rem; }
  .big-number { font-size: 4rem; }
  .price { font-size: 2.2rem; }
  .hero-mosaic { grid-template-columns: 1fr; }
  .handwritten { font-size: 1.1rem; }
}

/* ============================
   Blog Post Article
   ============================ */
.blog-post-header {
  padding: 9rem 0 3rem;
  background: var(--sand);
}
.blog-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}
.blog-back:hover { color: var(--emerald); }
.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 1rem;
}
.blog-post-meta {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-post-content {
  max-width: 720px;
  padding: 3rem 0 4rem;
}
.blog-post-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}
.blog-post-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
  color: var(--charcoal);
}
.blog-post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-light);
}
.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.8;
}
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content blockquote {
  border-left: 3px solid var(--emerald);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--sage-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--charcoal);
}
.blog-post-content img {
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow);
}
.blog-post-content a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-post-content a:hover { color: var(--emerald-dark); }
.blog-post-content strong { color: var(--charcoal); }

/* ============================
   Portfolio card button spacing
   ============================ */
.portfolio-detail-btn {
  margin-top: 1rem;
}

/* ============================
   Section divider — organic leaf motif
   ============================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  color: var(--sage);
  opacity: 0.6;
}

/* ============================
   Modal / Lightbox
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(58, 57, 54, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(58, 57, 54, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--sand);
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all var(--transition);
  z-index: 1;
}
.modal-close:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.modal-body {
  padding: 2.5rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.modal-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}
.modal-content ul {
  list-style: none;
  margin: 1rem 0;
}
.modal-content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.modal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Ccircle cx='6' cy='6' r='5' stroke='%2300763e' stroke-width='1'/%3E%3Cpath d='M4 6.2L5.4 7.7 8.2 4.8' stroke='%2300763e' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.modal-content .placeholder {
  min-height: 200px;
  margin: 1.5rem 0;
}
.modal-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .modal { max-height: 90vh; }
  .modal-body { padding: 2rem 1.5rem; }
}
