@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ─── Variables ──────────────────────────────── */
:root {
  --cream:      #F8F5F0;
  --white:      #FFFFFF;
  --ink:        #0F0F0F;
  --ink-60:     rgba(15,15,15,0.60);
  --ink-40:     rgba(15,15,15,0.40);
  --pink:       #D08CA0;
  --pink-light: rgba(208,140,160,0.15);
  --mint:       #7DCFB6;
  --terracotta: #B58B7E;
  --sage:       #7FAE92;
  --line:       rgba(15,15,15,0.10);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.09);
  --shadow-lg:  0 24px 56px rgba(0,0,0,0.12);
  --r-sm:  0.75rem;
  --r-md:  1.25rem;
  --r-lg:  1.75rem;
  --r-xl:  2.5rem;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --px:    clamp(1.25rem, 5vw, 4rem);
}

/* ─── Skip link ──────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ink); color: var(--cream);
  padding: 0.5rem 1rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 0.875rem; font-weight: 600; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Keyframes ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* ─── Scroll reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.from-left  { transform: translateX(-26px); }
.reveal.from-right { transform: translateX(26px); }
.reveal.scale      { transform: scale(0.96); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }
.reveal-d6 { transition-delay: 0.42s; }

/* ─── Progress bar ───────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--terracotta));
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─── Back to top ────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  cursor: pointer;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--terracotta); transform: translateY(-3px); }
#back-to-top svg { width: 17px; height: 17px; }

/* ─── Layout ─────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--px);
}
.section    { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ─── Typography ─────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-60);
}
.divider {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 0.85rem 0 2rem;
}
.h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.06;
}
.h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
}
.h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 700; line-height: 1.25; }
.text-center { text-align: center; }
.muted { color: var(--ink-60); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer; white-space: nowrap; border: none;
}
.btn:hover   { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active  { transform: translateY(0); }
.btn-dark    { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #222; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-cream   { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #ede9e3; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* ─── Header ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,240,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.07); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1.25rem;
}
.wordmark {
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
  flex-shrink: 0; transition: opacity 0.2s;
}
.wordmark:hover { opacity: 0.65; }
.header-rule { border: none; border-top: 1px dashed var(--line); }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.75rem); }
.nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 0.25rem 0;
  transition: opacity 0.2s;
}
.nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--ink);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { font-weight: 600; }

/* Language select */
.lang-select {
  font-family: inherit; font-size: 0.78rem; font-weight: 500;
  border: 1.5px solid var(--line); border-radius: 8px;
  padding: 0.35rem 0.65rem;
  background: transparent; color: var(--ink);
  cursor: pointer; transition: border-color 0.2s; flex-shrink: 0;
}
.lang-select:hover { border-color: var(--ink); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 68px 0 0 0;
  background: var(--cream); z-index: 99;
  padding: 2rem var(--px);
  flex-direction: column; gap: 0;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; transform: none; }
.mobile-nav a {
  font-size: 1.5rem; font-weight: 700;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
  display: block; transition: opacity 0.2s;
}
.mobile-nav a:hover { opacity: 0.5; }
.mobile-nav a.active { color: var(--terracotta); }

@media (max-width: 768px) {
  .nav, .lang-select { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ─── Hero ───────────────────────────────────── */
.hero-section { padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 5vw, 4.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Hero text entrance */
.hero-badge    { animation: fadeUp 0.6s var(--ease) 0.05s both; }
.hero-name     { animation: fadeUp 0.65s var(--ease) 0.15s both; }
.hero-sub      { animation: fadeUp 0.65s var(--ease) 0.28s both; }
.hero-cta      { animation: fadeUp 0.65s var(--ease) 0.38s both; }
.hero-photo-col{ animation: fadeIn 0.8s var(--ease) 0.1s both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--pink-light);
  border: 1px solid rgba(208,140,160,0.3);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero-name {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.93;
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: var(--ink-60); font-size: clamp(1rem, 1.5vw, 1.1rem);
  max-width: 28rem; line-height: 1.7; margin-bottom: 2.25rem;
}
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Hero photo */
.hero-photo-col   { position: relative; }
.hero-photo-frame { position: relative; }
.hero-photo-frame { position: relative; }
.hero-photo-wrap {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid rgba(15,15,15,0.07);
  box-shadow: var(--shadow-lg); aspect-ratio: 3/4;
  animation: float 7s ease-in-out infinite;
}
.hero-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.6s var(--ease);
}
.hero-photo-wrap:hover img { transform: scale(1.03); }
.hero-socials {
  position: absolute; right: -1.25rem; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.45rem;
  z-index: 2;
}
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); border: 1px solid rgba(15,15,15,0.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.social-btn:hover { transform: translateX(-3px); background: white; box-shadow: var(--shadow-md); }
.social-btn svg { width: 14px; height: 14px; }
.hero-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 500;
  box-shadow: var(--shadow-sm); margin-top: 1.25rem;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; animation: pulse-dot 2.5s infinite;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-sub  { max-width: 100%; }
  .hero-cta  { justify-content: center; }
  .hero-status { margin: 1.25rem auto 0; }
  .hero-photo-col { max-width: 340px; margin: 0 auto; }
  .hero-socials { right: -0.5rem; top: 50%; }
}
@media (max-width: 480px) {
  .hero-name { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-photo-col { max-width: 280px; }
}

/* ─── Testimonial cards ──────────────────────── */
/* Hero pair */
.testimonials-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .testimonials-pair { grid-template-columns: 1fr; } }

/* All tcards */
.tcard {
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard--mint       { background: var(--mint); }
.tcard--terracotta { background: var(--terracotta); }
.tcard--pink       { background: var(--pink); }
.tcard--sage       { background: var(--sage); }
.tcard-name  { font-size: 1rem; font-weight: 700; }
.tcard-role  { font-size: 0.78rem; color: rgba(15,15,15,0.55); margin-top: 0.15rem; }
.tcard-rule  { border: none; border-top: 1px dashed rgba(15,15,15,0.2); }
.tcard-quote { font-size: 0.875rem; line-height: 1.75; color: rgba(15,15,15,0.78); }

/* ─── Two-column layout ──────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.two-col.align-start { align-items: start; }
.img-rounded {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(15,15,15,0.07);
  box-shadow: var(--shadow-md); aspect-ratio: 4/3;
}
.img-rounded.tall { aspect-ratio: 3/4; }
.img-rounded img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.img-rounded:hover img { transform: scale(1.04); }
.about-text p {
  color: var(--ink-60); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8;
}
.about-text p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.25rem; }
  .two-col .img-rounded { max-width: 500px; }
}

/* ─── Stats ──────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-pill {
  border-radius: 999px;
  padding: clamp(1.25rem, 3vw, 1.75rem) 2rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.15rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.stat-pill:hover { transform: scale(1.04) translateY(-3px); box-shadow: var(--shadow-md); }
.stat-pill--pink       { background: var(--pink); }
.stat-pill--sage       { background: var(--sage); }
.stat-pill--terracotta { background: var(--terracotta); }
.stat-value { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: rgba(15,15,15,0.65); }

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .stat-pill { border-radius: var(--r-md); flex-direction: row; justify-content: center; gap: 1rem; }
}

/* ─── Highlights ─────────────────────────────── */
.highlights-callout {
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600;
  line-height: 1.65; margin-bottom: 1.75rem;
}
.bullet-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.25rem; }
.bullet-list li {
  display: flex; gap: 0.85rem; color: var(--ink-60);
  font-size: 0.93rem; line-height: 1.65; align-items: flex-start;
}
.bullet-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta);
  margin-top: 0.58rem; flex-shrink: 0;
}

/* ─── Services Accordion ─────────────────────── */
.accordion { border-top: 1px dashed var(--line); }
.accordion-item { border-bottom: 1px dashed var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) 0;
  text-align: left; cursor: pointer;
}
.accordion-trigger:hover .accordion-title { opacity: 0.65; }
.accordion-title { font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 700; transition: opacity 0.2s; }
.accordion-sub   { font-size: 0.82rem; color: var(--ink-60); margin-top: 0.3rem; }
.accordion-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1.5px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--ink);
}
.accordion-icon svg { width: 14px; height: 14px; }
.accordion-item.open .accordion-icon {
  transform: rotate(45deg); background: var(--ink);
  border-color: var(--ink); color: var(--cream);
}
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body p {
  color: var(--ink-60); margin-bottom: 1rem; line-height: 1.75; padding-bottom: 0;
}
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding-bottom: 1.75rem; }
.check-list li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--ink-60); align-items: flex-start; }
.check-list svg { width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0; }

@media (max-width: 560px) { .check-list { grid-template-columns: 1fr; } }

/* ─── Process Steps ──────────────────────────── */
.process-stack { display: flex; flex-direction: column; gap: 0; }
.process-card {
  display: flex; border-radius: var(--r-lg); overflow: hidden;
  margin-top: -1.5rem; position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, z-index 0s;
}
.process-card:first-child { margin-top: 0; }
.process-card:hover { transform: translateY(-4px) scale(1.006); box-shadow: var(--shadow-md); z-index: 2; }
.process-tab {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(15,15,15,0.4); width: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem 0;
}
.process-content { flex: 1; padding: clamp(1.5rem, 3vw, 2.25rem); border-left: 1px solid rgba(15,15,15,0.07); }
.process-num   { font-size: 2.5rem; font-weight: 800; color: rgba(15,15,15,0.10); line-height: 1; margin-bottom: 0.2rem; }
.process-title { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; margin-bottom: 0.5rem; }
.process-body  { font-size: 0.9rem; color: rgba(15,15,15,0.65); max-width: 520px; line-height: 1.7; }
.bg-sage       { background: var(--sage); }
.bg-pink       { background: var(--pink); }
.bg-terracotta { background: var(--terracotta); }
.bg-mint       { background: var(--mint); }

@media (max-width: 560px) {
  .process-tab { display: none; }
  .process-card { margin-top: -0.85rem; }
  .process-content { border-left: none; }
}

/* ─── Portfolio ──────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 0.45rem 1.1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 500;
  border: 1.5px solid var(--line);
  background: transparent; color: var(--ink);
  cursor: pointer; transition: all 0.2s var(--ease);
}
.filter-tab:hover, .filter-tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.p-card { display: flex; flex-direction: column; gap: 0.75rem; }
.ipad-bezel {
  background: var(--ink); border-radius: var(--r-lg);
  padding: clamp(0.5rem, 1.5vw, 0.85rem);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.p-card:hover .ipad-bezel { transform: translateY(-7px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.ipad-screen { border-radius: calc(var(--r-lg) - 0.5rem); overflow: hidden; aspect-ratio: 3/4; }
.ipad-screen img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.p-card:hover .ipad-screen img { transform: scale(1.05); }
.ipad-home { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.14); margin: 0.5rem auto 0; width: 34%; }
.p-meta   { display: flex; justify-content: space-between; font-size: 0.71rem; color: var(--ink-60); }
.p-status { background: rgba(15,15,15,0.07); border-radius: 999px; padding: 0.1rem 0.65rem; }
.p-title  { font-weight: 700; font-size: 0.875rem; line-height: 1.45; }
.p-desc   { font-size: 0.78rem; color: var(--ink-60); line-height: 1.55; }

@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .portfolio-grid { grid-template-columns: 1fr; } }

/* ─── Testimonial Slider ─────────────────────── */
.slider-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
/* both class names supported */
.slider-controls,
.slider-controls-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.85rem;
}
.chevron-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink); cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.chevron-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.08); }
.chevron-btn svg { width: 14px; height: 14px; }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(15,15,15,0.2);
  transition: all 0.25s var(--ease); cursor: pointer; border: none;
}
.slider-dot.active { background: var(--ink); width: 18px; }
.slider-img {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid rgba(15,15,15,0.07); box-shadow: var(--shadow-lg);
}
.slider-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

@media (max-width: 768px) {
  .slider-layout { grid-template-columns: 1fr; }
  .slider-img { display: none; }
}

/* ─── Blog ───────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.blog-card {
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform 0.25s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card:hover .blog-title { text-decoration: underline; text-underline-offset: 3px; }
.blog-img { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-sm); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-meta  { font-size: 0.76rem; color: var(--ink-60); display: flex; gap: 1rem; }
.blog-title { font-weight: 700; font-size: 0.93rem; line-height: 1.5; }

@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ────────────────────────────────────── */
.faq-list { border-top: 1px dashed var(--line); margin-bottom: 2.5rem; }
.faq-item { border-bottom: 1px dashed var(--line); }
.faq-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.2rem 0; text-align: left;
  font-weight: 600; font-size: clamp(0.9rem, 1.8vw, 1rem);
  cursor: pointer; transition: opacity 0.2s; color: var(--ink);
}
.faq-trigger:hover { opacity: 0.65; }
.faq-trigger svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--ink-60);
  transition: transform 0.3s var(--ease), color 0.2s;
}
.faq-item.open .faq-trigger svg { transform: rotate(90deg); color: var(--ink); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s var(--ease);
  color: var(--ink-60); font-size: 0.95rem; line-height: 1.8;
}
.faq-item.open .faq-body { max-height: 280px; padding-bottom: 1.35rem; }

/* ─── Pricing ────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; max-width: 780px; margin: 0 auto;
}
.pricing-card {
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--cream { background: var(--white); border: 1.5px solid rgba(15,15,15,0.10); }
.pricing-card--terracotta { background: var(--terracotta); }
.pricing-badge { display: inline-block; border-radius: 999px; padding: 0.3rem 0.9rem; font-size: 0.78rem; font-weight: 600; }
.pricing-badge--pink  { background: rgba(208,140,160,0.18); }
.pricing-badge--cream { background: rgba(248,245,240,0.28); }
.pricing-tagline { font-size: 0.82rem; color: var(--ink-60); margin: 0.25rem 0; }
.pricing-price  { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; letter-spacing: -0.02em; }
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--ink-60); }
.pricing-list { display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.pricing-list li { display: flex; gap: 0.6rem; font-size: 0.875rem; color: rgba(15,15,15,0.75); align-items: flex-start; }
.pricing-list svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }

@media (max-width: 580px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ─── Contact form ───────────────────────────── */
.form-card {
  background: var(--terracotta);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-input, .form-textarea {
  width: 100%; background: rgba(248,245,240,0.96);
  border: 1.5px solid transparent; border-radius: var(--r-sm);
  padding: 0.875rem 1.1rem; font-family: inherit;
  font-size: 0.9rem; color: var(--ink); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(15,15,15,0.3);
  box-shadow: 0 0 0 3px rgba(15,15,15,0.07);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(15,15,15,0.4); }
.form-submit {
  width: 100%; margin-top: 1rem; background: var(--cream); color: var(--ink);
  border: none; border-radius: 999px; padding: 1rem;
  font-family: inherit; font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #ede9e3; }
.success-msg { text-align: center; padding: 3rem 1rem; }
.success-msg h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; }
.success-msg p  { color: rgba(15,15,15,0.65); }

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Newsletter ─────────────────────────────── */
.newsletter-block {
  background: var(--mint);
  padding: clamp(4rem, 8vw, 6.5rem) var(--px);
  text-align: center;
}
.newsletter-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.newsletter-sub   { color: rgba(15,15,15,0.65); max-width: 380px; margin: 0 auto 2rem; line-height: 1.7; }
.newsletter-form {
  display: flex; align-items: center;
  background: var(--cream); border-radius: 999px;
  max-width: 360px; margin: 0 auto; overflow: hidden;
  padding: 6px 6px 6px 1.35rem; box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s;
}
.newsletter-form:focus-within { box-shadow: 0 6px 28px rgba(0,0,0,0.14); }
.newsletter-input {
  flex: 1; border: none; background: transparent;
  font-family: inherit; font-size: 0.875rem; color: var(--ink); outline: none; min-width: 0;
}
.newsletter-input::placeholder { color: rgba(15,15,15,0.45); }
.newsletter-btn {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--cream); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.newsletter-btn:hover { background: var(--terracotta); transform: scale(1.08); }
.newsletter-btn svg { width: 15px; height: 15px; }

/* ─── Footer ─────────────────────────────────── */
.site-footer { background: var(--cream); padding: clamp(3rem, 6vw, 5rem) var(--px) 2rem; }
.footer-card {
  border: 1.5px solid rgba(15,15,15,0.09); border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem); max-width: 1240px; margin: 0 auto;
}
.footer-wordmark { text-align: center; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 2.5rem; }
.footer-cols     { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 280px; margin: 0 auto 2.5rem; text-align: center; }
.footer-col-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 1rem; display: block; }
.footer-col li  { margin-bottom: 0.65rem; }
.footer-col a   { font-size: 0.85rem; color: rgba(15,15,15,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom  {
  border-top: 1px dashed var(--line); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.76rem; color: var(--ink-60);
}

/* ─── Blog post page ─────────────────────────── */
.post-hero { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/7; margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-body     { max-width: 680px; margin: 0 auto; }
.post-body p   { margin-bottom: 1.6rem; color: rgba(15,15,15,0.75); line-height: 1.85; font-size: 1.02rem; }
.post-body h2  { font-size: 1.25rem; font-weight: 700; margin: 2.25rem 0 0.85rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--ink-60); margin-bottom: 2.5rem;
  transition: color 0.2s, gap 0.2s;
}
.back-link:hover { color: var(--ink); gap: 0.75rem; }
.back-link svg { width: 14px; height: 14px; }

/* ─── Services page ──────────────────────────── */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px dashed var(--line);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block.flip .service-img  { order: 2; }
.service-block.flip .service-text { order: 1; }
.service-img { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(15,15,15,0.07); box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.service-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease); }
.service-img:hover img { transform: scale(1.04); }
.service-tagline      { font-style: italic; color: var(--ink-60); margin: 0.4rem 0 1rem; font-size: 0.95rem; }
.service-intro        { color: var(--ink-60); margin-bottom: 1.5rem; line-height: 1.75; }
.service-includes-label { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.service-includes     { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.25rem; }
.service-includes li  { display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--ink-60); align-items: flex-start; }
.service-includes svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.service-best-for     { font-size: 0.83rem; color: var(--ink-60); }

@media (max-width: 768px) {
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.flip .service-img,
  .service-block.flip .service-text { order: unset; }
}

/* ─── Services quick nav ─────────────────────── */
.services-quicknav {
  background: rgba(15,15,15,0.03);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 0.85rem var(--px);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.services-nav-links {
  display: flex; gap: clamp(1rem, 3vw, 2rem);
  max-width: 1240px; margin: 0 auto;
  white-space: nowrap;
}
.snav-link {
  font-size: 0.8rem; font-weight: 600; color: var(--ink-60);
  padding: 0.25rem 0; position: relative;
  transition: color 0.2s; flex-shrink: 0;
}
.snav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--pink);
  transition: width 0.25s var(--ease);
}
.snav-link:hover { color: var(--ink); }
.snav-link:hover::after { width: 100%; }

/* ─── Service block CTA ──────────────────────── */
.service-cta { margin-top: 1.5rem; }

/* Services quick-nav */
.services-quicknav {
  padding: 1.25rem var(--px) 1.5rem;
  border-bottom: 1px dashed var(--line);
}
.services-nav-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  max-width: 1240px; margin: 0 auto;
}
.snav-link {
  padding: 0.4rem 1.1rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 500;
  border: 1.5px solid var(--line);
  color: var(--ink); background: transparent;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.snav-link:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Service block CTA */
.service-cta { margin-top: 1.75rem; }

/* Book editing "What it looks like" block */
.service-process-look {
  background: rgba(15,15,15,0.04);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
}
.service-process-list {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-top: 0.6rem;
}
.service-process-list li {
  display: flex; gap: 0.6rem; font-size: 0.875rem;
  color: var(--ink-60); align-items: flex-start;
}
.service-process-list li::before {
  content: '→'; color: var(--terracotta);
  flex-shrink: 0; font-weight: 700; font-size: 0.85rem;
}

/* ─── Contact page ───────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact-photo  { border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(15,15,15,0.07); box-shadow: var(--shadow-lg); aspect-ratio: 3/4; margin-bottom: 2rem; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.contact-details   { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail    { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; }
.contact-detail a  { color: var(--ink-60); transition: color 0.2s; }
.contact-detail a:hover { color: var(--ink); }
.contact-icon { font-size: 1.1rem; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-photo  { max-width: 320px; }
}

/* ─── Page hero ──────────────────────────────── */
.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0 1.5rem; }
.page-hero h1  { margin-bottom: 0.75rem; }

/* ─── Closing block ──────────────────────────── */
.closing-block {
  background: rgba(15,15,15,0.035);
  padding: clamp(4rem, 8vw, 6.5rem) var(--px);
  text-align: center;
}
.closing-block p { color: var(--ink-60); max-width: 600px; margin: 0 auto 0.75rem; line-height: 1.8; }
.closing-block .sub { font-size: 0.9rem; }

/* ─── Portfolio modal ────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--cream); border-radius: var(--r-xl);
  max-width: 780px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.open .modal-card { transform: none; }
.modal-img {
  width: 100%; aspect-ratio: 16/7; object-fit: cover;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.modal-info { padding: clamp(1.75rem, 4vw, 2.5rem); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  color: var(--ink); z-index: 2;
}
.modal-close:hover { background: var(--ink); color: var(--cream); transform: scale(1.08); }
.modal-close svg { width: 16px; height: 16px; }
.modal-category {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60); margin-bottom: 0.5rem; display: block;
}
.modal-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.2;
}
.modal-description { color: var(--ink-60); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.modal-meta-item {
  background: rgba(15,15,15,0.06); border-radius: var(--r-sm);
  padding: 0.5rem 1rem;
}
.modal-meta-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-60); display: block;
}
.modal-meta-value { font-size: 0.85rem; font-weight: 600; margin-top: 0.15rem; }

/* ─── Portfolio view hint ────────────────────── */
.p-view-hint {
  font-size: 0.78rem; font-weight: 600; color: var(--ink-60);
  transition: color 0.2s;
}
.p-card-link:hover .p-view-hint { color: var(--ink); }

/* ─── Publications grid ──────────────────────── */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.pub-item {
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.pub-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(15,15,15,0.2); }
.pub-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.pub-name { font-weight: 700; font-size: 0.93rem; margin-bottom: 0.3rem; }
.pub-role { font-size: 0.78rem; color: var(--ink-60); margin-bottom: 0.5rem; }
.pub-desc { font-size: 0.82rem; color: var(--ink-60); line-height: 1.6; }

@media (max-width: 760px) { .pub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pub-grid { grid-template-columns: 1fr; } }

/* ─── Services process steps ─────────────────── */
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.5rem; align-items: flex-start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: ''; position: absolute;
  left: 27px; top: 54px; bottom: 0; width: 2px;
  background: var(--line);
}
.process-step:last-child::before { display: none; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-pink       { background: var(--pink); }
.step-mint       { background: var(--mint); }
.step-terracotta { background: var(--terracotta); }
.step-sage       { background: var(--sage); }
.process-step-title { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700; margin-bottom: 0.4rem; }
.process-step-body  { color: var(--ink-60); font-size: 0.9rem; line-height: 1.75; }

/* ─── Engagement tiers ───────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tier-card {
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier-card--cream { background: var(--white); border: 1.5px solid var(--line); }
.tier-card--pink  { background: var(--pink); }
.tier-card--ink   { background: var(--ink); color: var(--cream); }
.tier-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.tier-name    { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 800; letter-spacing: -0.02em; }
.tier-desc    { font-size: 0.85rem; line-height: 1.7; opacity: 0.75; }
.tier-list    { display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.tier-list li { display: flex; gap: 0.5rem; font-size: 0.85rem; align-items: flex-start; opacity: 0.85; }
.tier-list svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }

@media (max-width: 700px) { .tiers-grid { grid-template-columns: 1fr; } }
