/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:       #fdfaf7;
  --c-surface:  #f4f0eb;
  --c-mint:     #e4f2ec;
  --c-blue:     #e3eef8;
  --c-lavender: #ece8f5;
  --c-green:    #4a9e7f;
  --c-teal:     #3a8faa;
  --c-purple:   #7c6db5;
  --c-dark:     #1e1e1e;
  --c-mid:      #555;
  --c-muted:    #888;
  --c-white:    #fff;

  --f-serif: 'Fraunces', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;

  --radius-card: 24px;
  --radius-btn:  50px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);
}

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

body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(253,250,247,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--c-dark);
}
.nav__cta {
  padding: 9px 24px;
  background: var(--c-green);
  color: var(--c-white);
  text-decoration: none;
  border-radius: var(--radius-btn);
  font-size: .9rem;
  font-weight: 500;
  transition: background .25s, transform .2s;
}
.nav__cta:hover { background: #3a8060; transform: translateY(-1px); }

/* ── LABELS ── */
.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 12px;
}
.label--center { display: block; text-align: center; }

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 40px;
  color: var(--c-dark);
  text-align: center;
}
.section-title--left { text-align: left; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .25s;
  cursor: pointer;
}
.btn--primary {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(74,158,127,.35);
}
.btn--primary:hover {
  background: #3a8060;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,158,127,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid rgba(30,30,30,.2);
}
.btn--ghost:hover {
  border-color: var(--c-dark);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--c-bg);
}
.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
  pointer-events: none;
}
.hero__bg-circle--1 {
  width: 560px; height: 560px;
  background: var(--c-mint);
  top: -140px; right: -80px;
}
.hero__bg-circle--2 {
  width: 400px; height: 400px;
  background: var(--c-lavender);
  bottom: -100px; left: -80px;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.hero__content { max-width: 520px; }
.hero__eyebrow {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--c-dark);
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-green);
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--c-mid);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}
.hero__avatar {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-teal) 50%, var(--c-purple) 100%);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__badge {
  position: absolute;
  background: var(--c-white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero__badge--1 { top: 8px;  right: 0;   animation-delay: 0s; }
.hero__badge--2 { bottom: 40px; left: 0;  animation-delay: 1.3s; }
.hero__badge--3 { bottom: 0; right: 20px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── ABOUT ── */
.about {
  padding: 96px 0;
  background: var(--c-white);
}
.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.about__photo-wrap {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter .4s ease;
}
.about__img:hover { filter: grayscale(0%); }
.about__right { display: flex; flex-direction: column; gap: 40px; }
.about__text p {
  color: var(--c-mid);
  font-weight: 300;
  margin-bottom: 18px;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s, box-shadow .25s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat__num {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1;
}
.stat__label {
  font-size: .85rem;
  color: var(--c-muted);
  font-weight: 400;
}

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--c-surface);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ── CARDS ── */
.card {
  border-radius: var(--radius-card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card--mint     { background: var(--c-mint); }
.card--blue     { background: var(--c-blue); }
.card--lavender { background: var(--c-lavender); }

.card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 600;
  opacity: .08;
  line-height: 1;
}
.card__icon { font-size: 2rem; line-height: 1; }
.card__title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.2;
}
.card__text {
  font-size: .95rem;
  color: var(--c-mid);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}
.card__link {
  display: inline-block;
  color: var(--c-purple);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: color .2s, transform .2s;
  align-self: flex-start;
}
.card__link:hover { color: #5a4e95; transform: translateX(4px); }

/* ── CONTACT ── */
.contact {
  padding: 96px 0;
  background: var(--c-white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact__text p {
  color: var(--c-mid);
  font-weight: 300;
  margin-bottom: 0;
}
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--c-surface);
  border-radius: 20px;
  text-decoration: none;
  color: var(--c-dark);
  transition: transform .25s, box-shadow .25s, background .25s;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateX(6px);
  background: var(--c-mint);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-card strong {
  font-weight: 500;
  font-size: 1rem;
}
.contact-card span {
  font-size: .85rem;
  color: var(--c-muted);
}

/* ── FOOTER ── */
.footer {
  padding: 28px 0;
  background: var(--c-dark);
  color: #666;
  font-size: .85rem;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .about__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__photo-wrap { position: static; max-width: 320px; margin: 0 auto; }
  .hero__visual { display: none; }
  .hero { padding: 100px 0 64px; }
  .about, .services, .contact { padding: 64px 0; }
  .footer .container { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
}
