/* ---------- Steffenie Kaae site ---------- */

:root {
  --bg: #F5EFE7;
  --bg-warm: #EFE6DA;
  --bg-card: #EAE0D2;
  --brown-deep: #6B4A35;
  --brown: #8B6248;
  --brown-soft: #A87760;
  --ink: #3A2A1F;
  --ink-muted: #6E5B4E;
  --line: #DCCFBE;
  --white: #FFFCF8;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 6px 30px -10px rgba(58,42,31,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

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

h1 { font-size: clamp(2.5rem, 5.4vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
h4 { font-size: 1.2rem; }

p { color: var(--ink); }
.muted { color: var(--ink-muted); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 231, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 207, 190, 0.5);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand .brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 500;
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  font-size: 0.92rem;
  white-space: nowrap;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--brown-deep); }
.nav a.active {
  color: var(--brown-deep);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--brown-deep);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--brown-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}
.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--brown-deep);
}
.btn-light:hover { background: var(--bg-warm); }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brown-deep);
}
.hero-lead {
  font-size: 1.13rem;
  color: var(--ink-muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-credentials {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown-soft);
  margin-top: 14px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-warm);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-deco {
  position: absolute;
  top: 30%;
  left: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(168,119,96,0.12), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ---------- Image-CTA banner ---------- */
.cta-banner {
  position: relative;
  margin: 60px auto;
  max-width: 1180px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(58,42,31,0.35), rgba(107,74,53,0.55));
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 30px;
  max-width: 720px;
}
.cta-banner-inner h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 24px;
}
.cta-banner-inner .btn-light {
  font-size: 1rem;
  padding: 17px 36px;
}

/* ---------- Section base ---------- */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-warm { background: var(--bg-warm); }
.section-brown {
  background: var(--brown-deep);
  color: var(--white);
}
.section-brown h1, .section-brown h2, .section-brown h3 { color: var(--white); }
.section-brown p { color: rgba(255,252,248,0.85); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--ink-muted); font-size: 1.08rem; }

/* ---------- Three values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value {
  text-align: center;
  padding: 20px;
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-deep);
}
.value-icon svg { width: 100%; height: 100%; }
.value h3 {
  font-style: italic;
  color: var(--brown-deep);
  margin-bottom: 14px;
}
.value p { color: var(--ink-muted); font-size: 0.98rem; }

/* ---------- Two-column features ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.duo + .duo { margin-top: 120px; }
.duo.reverse > :first-child { order: 2; }
.duo-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow-soft);
}
.duo-image img { width: 100%; height: 100%; object-fit: cover; }
.duo-content .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.duo-content h2 { margin-bottom: 24px; }
.duo-content p { margin-bottom: 18px; color: var(--ink-muted); }
.duo-content .btn { margin-top: 18px; }

/* ---------- Pricing cards ---------- */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.price-card.featured {
  background: var(--brown-deep);
  color: var(--white);
  border-color: var(--brown-deep);
}
.price-card.featured h3,
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured .price-list li { color: rgba(255,252,248,0.85); }
.price-card.featured .price-list li::before { background: var(--white); }
.price-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brown-soft);
  margin-bottom: 12px;
}
.price-card.featured .price-tag { color: rgba(255,252,248,0.7); }
.price-card h3 {
  font-style: italic;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--ink);
  margin: 18px 0 4px;
}
.price-amount small {
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-family: var(--font-sans);
}
.price-card.featured .price-amount small { color: rgba(255,252,248,0.7); }
.price-list {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  flex: 1;
}
.price-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--brown-soft);
}

/* ---------- Testimonials carousel ---------- */
.testimonials {
  position: relative;
  overflow: hidden;

}
.testimonial-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 28px;
}
.testimonial {
  flex: 0 0 calc(33.333% - 22px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--line);
}
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--brown-soft);
  margin-bottom: 14px;
  display: block;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.testimonial .who {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 500;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.testimonial-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--brown-deep);
  background: transparent;
  color: var(--brown-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.testimonial-controls button:hover {
  background: var(--brown-deep);
  color: var(--white);
}
.testimonial-controls svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-deep);
  color: rgba(255,252,248,0.88);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,252,248,0.6);
  margin-bottom: 18px;
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,252,248,0.6);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-grid a { color: rgba(255,252,248,0.88); transition: color 0.2s; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,252,248,0.15);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,252,248,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page header (subpages) ---------- */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
}
.page-header .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.page-header h1 { margin-bottom: 24px; }
.page-header .lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.13rem;
  color: var(--ink-muted);
}

/* ---------- Prose (long-form pages) ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: 56px 0 20px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 36px 0 14px; color: var(--brown-deep); font-style: italic; }
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose ul { margin: 16px 0 22px 0; padding-left: 0; list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--brown-soft);
}
.prose blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brown-deep);
  border-left: 2px solid var(--brown-soft);
  padding: 8px 0 8px 24px;
  margin: 36px 0;
  line-height: 1.4;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.contact-info p { margin-bottom: 12px; color: var(--ink-muted); }
.contact-info .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 500;
  margin: 24px 0 4px;
}
.contact-info .value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
}

form.contact-form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brown-deep);
}
.field textarea { resize: vertical; min-height: 140px; }

/* ---------- Blog list ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.blog-thumb {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-warm));
  position: relative;
  overflow: hidden;
}
.blog-thumb:empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(168,119,96,0.06) 14px, rgba(168,119,96,0.06) 15px);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card .read-more {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-deep);
  font-weight: 500;
}

/* ---------- Memberships strip ---------- */
.memberships {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.memberships .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.memberships-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-muted);
}

/* ---------- Reminder strip ---------- */
.reminder {
  text-align: center;
  padding: 90px 28px;
  background: var(--bg-warm);
}
.reminder p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--brown-deep);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.35;
}

/* ---------- Pillars list (om mig CV) ---------- */
.cv-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 30px;
}
.cv-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cv-item .yr {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown-soft);
  font-style: italic;
}
.cv-item .desc { color: var(--ink); }

/* ---------- Mobile ---------- */
@media (max-width: 1100px) {
  .brand .brand-sub { display: none; }
  .nav { gap: 18px; }
  .nav a { font-size: 0.88rem; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 16px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    min-width: 220px;
  }
  .nav.open a { padding: 12px 22px; }

  .hero { padding: 30px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 460px; margin: 0 auto; }

  .values { grid-template-columns: 1fr; gap: 20px; }
  .duo { grid-template-columns: 1fr; gap: 40px; }
  .duo.reverse > :first-child { order: 0; }
  .duo + .duo { margin-top: 80px; }
  .duo-image { max-width: 460px; margin: 0 auto; }

  .prices { grid-template-columns: 1fr; }

  .testimonial { flex: 0 0 calc(100% - 22px); }

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

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

  .blog-grid { grid-template-columns: 1fr; }

  .section { padding: 60px 0; }
  .cta-banner { height: 280px; margin: 30px 16px; }

  .cv-item { grid-template-columns: 1fr; gap: 4px; }
}
