/* Studio 21 — Warm Haven */
/* Soft apricot + olive + cream, intimate neighborhood studio */

:root {
  --accent: oklch(0.72 0.14 55);
  --accent-hover: oklch(0.64 0.12 55);
  --accent-soft: oklch(0.92 0.04 55);
  --secondary: oklch(0.55 0.10 135);
  --secondary-soft: oklch(0.90 0.03 135);
  --bg: oklch(0.98 0.004 80);
  --surface: oklch(0.96 0.006 80);
  --text: oklch(0.25 0.01 60);
  --muted: oklch(0.48 0.01 70);
  --border: oklch(0.90 0.006 80);
  --hero-bg: oklch(0.25 0.01 60);
  --hero-text: oklch(0.98 0.004 80);
  --footer-bg: oklch(0.20 0.008 60);
  --footer-text: oklch(0.78 0.008 70);
  --card-bg: oklch(0.99 0.002 80);
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.04);
}
@supports not (color: oklch(0 0 0)) {
  :root {
    --accent: #e8a860;
    --accent-hover: #d49545;
    --accent-soft: #faf0e0;
    --secondary: #6a9e6e;
    --secondary-soft: #e2f0e4;
    --bg: #faf9f5;
    --surface: #f6f5f0;
    --text: #3e3a35;
    --muted: #7a7670;
    --border: #e8e5de;
    --hero-bg: #3e3a35;
    --hero-text: #faf9f5;
    --footer-bg: #33302c;
    --footer-text: #c4c0b8;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul { padding-left: 1.1rem; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* Typography */
h1, h2 {
  font-family: 'Nunito', -apple-system, sans-serif;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Nunito', -apple-system, sans-serif;
  line-height: 1.35;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hero-text);
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.98 0.004 80 / 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 66px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.8rem; flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; min-width: 0; }
.brand__title {
  font-weight: 800; font-size: 0.95rem; letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand__subtitle { font-size: 0.75rem; color: var(--muted); }

.nav { display: none; gap: 26px; align-items: center; }
.nav a { font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav__cta {
  padding: 8px 20px; background: var(--accent); color: #fff !important;
  border-radius: 999px; font-weight: 700; transition: background 0.2s;
}
.nav__cta:hover { background: var(--accent-hover); }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  padding: 52px 0 60px;
  background: var(--hero-bg);
  color: var(--hero-text);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, oklch(0.45 0.12 55 / 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, oklch(0.45 0.10 135 / 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; gap: 36px; align-items: start;
}
.hero__content { display: grid; gap: 20px; }
.hero h1 { color: var(--hero-text); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 56ch; line-height: 1.8; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-pill {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; font-weight: 600; color: var(--hero-text);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  font-size: 0.9rem; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 24px rgba(232,168,96,0.3);
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--secondary {
  background: rgba(255,255,255,0.1); color: var(--hero-text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 26px;
  display: grid; gap: 18px;
}
.hero-card__label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 600;
}
.hero-card__phone { font-size: 1.45rem; font-weight: 800; }
.hero-card__phone a { color: var(--hero-text); }
.hero-card__list { display: grid; gap: 12px; }
.hero-card__item { display: grid; gap: 2px; }
.hero-card__item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-card__item strong { font-size: 0.92rem; font-weight: 600; }

/* Sections */
.section { padding: 68px 0; }
.section--alt { background: var(--surface); }
.section-head { display: grid; gap: 14px; margin-bottom: 36px; max-width: 660px; }
.section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

/* Decorative dot */
.section-head::after {
  content: '';
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  margin-top: 8px;
}

/* Approach */
.approach-grid { display: grid; gap: 20px; }
.approach-step {
  padding: 28px 26px; background: var(--card-bg);
  border-radius: var(--radius);
  display: grid; gap: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.approach-step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.95rem;
}
.approach-step h3 { margin: 0; }
.approach-step p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

/* Services */
.services-list { display: grid; gap: 12px; }
.service-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.service-dot {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
}
/* Alternate colors for service icons */
.service-item:nth-child(odd) .service-dot {
  background: var(--accent-soft); color: var(--accent);
}
.service-item:nth-child(even) .service-dot {
  background: var(--secondary-soft); color: var(--secondary);
}
.service-item h3 { margin: 0 0 4px; font-size: 1.02rem; }
.service-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* About */
.about-grid { display: grid; gap: 32px; align-items: center; }
.about-text { display: grid; gap: 16px; }
.about-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.about-highlights { list-style: none; padding: 0; display: grid; gap: 10px; }
.about-highlights li {
  position: relative; padding-left: 26px; font-size: 0.93rem; line-height: 1.65;
}
.about-highlights li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}
.about-accent {
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  border-radius: 20px; padding: 36px 30px;
  display: grid; gap: 14px;
}
.about-accent blockquote {
  font-size: 1.05rem;
  font-style: italic; line-height: 1.7;
  color: var(--text);
}
.about-accent cite { font-size: 0.82rem; font-style: normal; color: var(--muted); letter-spacing: 0.04em; }

/* Contact */
.contact-grid { display: grid; gap: 32px; }
.contact-info { display: grid; gap: 16px; }
.contact-card {
  padding: 22px 24px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.contact-card h3 {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px;
}
.contact-card p, .contact-card a { font-size: 0.95rem; }
.contact-card a { color: var(--accent); font-weight: 700; }
.contact-cta { display: grid; gap: 16px; }
.contact-cta p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

/* Footer */
.footer {
  background: var(--footer-bg); color: var(--footer-text);
  padding: 44px 0 30px;
}
.footer__grid { display: grid; gap: 28px; margin-bottom: 28px; }
.footer-card h3 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px; color: rgba(255,255,255,0.6);
}
.footer-card p, .footer-card li { font-size: 0.88rem; color: var(--footer-text); }
.footer-card ul { list-style: none; padding: 0; display: grid; gap: 4px; }
.footer-card a { color: var(--hero-text); font-weight: 600; }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px; font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (min-width: 760px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .hero { padding: 68px 0 76px; }
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .hero { padding: 84px 0 92px; }
  .services-list { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 84px 0; }
}
nav.is-open { display: flex !important; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg, #0d1117); padding: 16px; gap: 16px; z-index: 100; border-bottom: 1px solid var(--border, #21262d); }
