/* Home page — specific styles */

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(208, 101, 58, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(43, 122, 122, 0.08), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 560px; }
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.hero__lead {
  font-size: 1.22rem;
  color: var(--ink-2);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--terracotta);
  margin-right: 10px;
  vertical-align: 2px;
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
.hero__trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.hero__trust li {
  display: flex; align-items: center; gap: 8px;
}
.hero__trust svg {
  width: 18px; height: 18px;
  color: var(--sage-dark);
  flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  justify-self: center;
  width: 100%;
}
.hero__portrait {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #E8D5C4, #C9A88A 60%, #8F6F54);
  box-shadow: 0 20px 60px rgba(42, 38, 32, 0.15);
  overflow: hidden;
}
.hero__portrait-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.15), transparent 50%),
    linear-gradient(160deg, transparent 40%, rgba(42, 122, 122, 0.15));
}
.hero__portrait-inner::after {
  content: '';
  position: absolute;
  left: 20%; right: 20%;
  top: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 111, 84, 0.4) 40%, transparent 70%);
}
.hero__breathe {
  position: absolute;
  inset: -6%;
  width: calc(100% + 12%);
  height: calc(100% + 12%);
  animation: rotate 60s linear infinite;
}
.hero__ring { transform-origin: center; }
.hero__ring--1 { animation: breathe 6s ease-in-out infinite; }
.hero__ring--2 { animation: breathe 6s ease-in-out infinite 1s; }
.hero__ring--3 { animation: breathe 6s ease-in-out infinite 2s; }
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.hero__word {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--teal-dark);
  opacity: 0.12;
  font-weight: 300;
  pointer-events: none;
}
.hero__word--yu { top: 4%; left: -4%; }
.hero__word--tori { bottom: 4%; right: -4%; }
.hero__caption {
  position: absolute;
  bottom: -12px;
  right: -16px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  line-height: 1.5;
  border: 1px solid var(--line);
  max-width: 200px;
}
.hero__caption strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  display: inline-block;
  margin-right: 6px;
}
.hero__caption span { color: var(--teal); font-size: 1rem; }
.hero__caption em { color: var(--muted); font-style: italic; }

.hero__bottom-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero__bottom-wave svg { width: 100%; height: 60px; display: block; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
}

/* ===== SECTION HEAD ===== */
.section-head { max-width: 720px; }
.section-head.text-center { margin: 0 auto; }

/* ===== HERKENBAAR ===== */
.herkenbaar {
  background:
    linear-gradient(to bottom, var(--cream-2) 0%, var(--cream) 100%);
  position: relative;
}
.herkenbaar__grid {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.herkenbaar__grid li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px 22px 56px;
  position: relative;
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.herkenbaar__grid li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quote-mark {
  position: absolute;
  left: 20px; top: 8px;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.5;
}
.herkenbaar__cta {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
}
.herkenbaar__cta p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 auto 20px;
  max-width: 520px;
}

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

/* ===== ABOUT PREVIEW ===== */
.about-preview__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-preview__portrait {
  margin: 0;
  text-align: center;
}
.about-preview__img-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: visible;
}
.placeholder-portrait {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(42, 38, 32, 0.12);
  position: relative;
}
.placeholder-portrait::before {
  content: 'Foto Tess';
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.about-preview__badge {
  position: absolute;
  bottom: 8%; right: -2%;
  background: var(--paper);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.about-preview__badge .logo__dots {
  width: 22px;
}
.about-preview__badge .logo__dots span {
  width: 8px; height: 8px;
}
.about-preview__portrait figcaption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}
.about-preview__content h2 {
  margin-bottom: 1.25rem;
}
.about-preview__content h2 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.about-preview__quote {
  margin: 2rem 0;
  padding: 20px 24px;
  border-left: 3px solid var(--terracotta);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-preview__quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.about-preview__quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .about-preview__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview__img-wrap { max-width: 280px; }
}

/* ===== APPROACH ===== */
.approach__steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: approach;
}
.approach__steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.approach__steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.approach__steps li:nth-child(1) { border-top: 4px solid var(--terracotta); }
.approach__steps li:nth-child(2) { border-top: 4px solid var(--teal); }
.approach__steps li:nth-child(3) { border-top: 4px solid var(--sage); }
.approach__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--muted);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}
.approach__steps h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-weight: 450;
}
.approach__steps p {
  color: var(--ink-2);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

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

/* ===== PARTNERS ===== */
.partners__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}
.partners__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}
.partner-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  padding: 10px 20px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  text-align: center;
}

@media (max-width: 620px) {
  .partners__list { flex-direction: column; align-items: stretch; gap: 10px; }
  .partner-logo {
    white-space: normal;
    font-size: 0.92rem;
    padding: 12px 18px;
    text-align: center;
  }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background:
    radial-gradient(ellipse at top right, rgba(208, 101, 58, 0.3), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(127, 165, 148, 0.3), transparent 50%),
    var(--teal-dark);
  color: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.final-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
