/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #3D2B3A;
  background: #FAF7F5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, dl { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ── Palette ──────────────────────────────────────── */
:root {
  --plum:    #7B3F5B;
  --plum-lt: #A8607A;
  --plum-dk: #5C2D44;
  --amber:   #F5C77E;
  --amber-dk:#D4A04A;
  --cream:   #FAF7F5;
  --blush:   #FDF0EC;
  --lavender:#F3ECF5;
  --peach:   #FDF3EC;
  --text:    #3D2B3A;
  --text-lt: #7A6272;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(123,63,91,.08);
  --shadow-lg: 0 12px 48px rgba(123,63,91,.12);
}

/* ── Layout ───────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  border-radius: 50px; transition: all .25s ease;
  white-space: nowrap;
}
.btn--amber {
  background: var(--amber); color: var(--plum-dk);
  box-shadow: 0 4px 16px rgba(245,199,126,.4);
}
.btn--amber:hover { background: var(--amber-dk); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,199,126,.5); }
.btn--ghost {
  background: rgba(255,255,255,.18); color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.32); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--plum);
  border: 1.5px solid var(--plum-lt);
}
.btn--outline:hover { background: var(--plum); color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 9px 20px; font-size: .875rem; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding: 15px 24px; font-size: 1rem; }

/* ── Section tags / titles ────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--plum-lt); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--plum); margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-lt); max-width: 580px;
}
.section-header { margin-bottom: 56px; }
.section-header--centered { text-align: center; }
.section-header--centered .section-desc { margin: 0 auto; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,245,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,63,91,.08);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(123,63,91,.1); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 1.05rem; color: var(--plum);
}
.nav__logo-icon { color: var(--plum); flex-shrink: 0; }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__menu a { font-size: .925rem; font-weight: 500; color: var(--text-lt); transition: color .2s; }
.nav__menu a:hover { color: var(--plum); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--plum); border-radius: 2px; transition: all .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(145deg, #FDF0EC 0%, #F3ECF5 35%, #EDE4F7 65%, #E8D8F0 100%);
  padding: 120px 0 80px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 600px 600px at 75% 20%, rgba(245,199,126,.25) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 10% 80%, rgba(168,96,122,.18) 0%, transparent 70%);
}
.hero__content { position: relative; text-align: center; max-width: 780px; }
.hero__tag {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--plum-lt); background: rgba(123,63,91,.08);
  padding: 7px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--plum-dk); margin-bottom: 22px;
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-lt); max-width: 560px; margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  font-size: .875rem; font-weight: 500; color: var(--text-lt);
}
.hero__trust-item { display: flex; align-items: center; gap: 7px; }
.hero__trust-item svg { color: var(--plum-lt); }
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }

/* ── SERVICES ─────────────────────────────────────── */
.services { padding: 100px 0; background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(123,63,91,.05);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--lavender); color: var(--plum);
}
.card__title {
  font-size: 1.2rem; color: var(--plum); margin-bottom: 10px;
}
.card__body { font-size: .95rem; color: var(--text-lt); line-height: 1.7; }

/* ── ABOUT ────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--blush); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about__image-wrap { position: relative; }
.about__image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%; height: 480px; object-fit: cover;
}
.about__image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--amber); border-radius: var(--radius);
  opacity: .35; z-index: -1;
}
.about__body { color: var(--text-lt); margin-bottom: 18px; font-size: 1rem; line-height: 1.75; }
.about__stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.stat__number { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--plum); }
.stat__label { font-size: .85rem; color: var(--text-lt); }

/* ── WHY US ───────────────────────────────────────── */
.why { padding: 100px 0; background: var(--cream); }
.why__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}
.why__item {
  background: #fff; border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(123,63,91,.05);
  transition: transform .3s ease;
}
.why__item:hover { transform: translateY(-4px); }
.why__item-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  display: flex; align-items: center; justify-content: center;
  color: var(--plum); margin-bottom: 20px;
}
.why__item-title { font-size: 1.1rem; color: var(--plum); margin-bottom: 10px; }
.why__item-desc { font-size: .925rem; color: var(--text-lt); line-height: 1.7; }

/* ── CONTACT ──────────────────────────────────────── */
.contact { padding: 100px 0; background: linear-gradient(160deg, var(--lavender) 0%, var(--blush) 100%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__desc { color: var(--text-lt); margin-bottom: 32px; font-size: 1.02rem; line-height: 1.7; }
.contact__details { margin-bottom: 32px; }
.contact__detail { display: flex; gap: 14px; margin-bottom: 20px; }
.contact__detail dt {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--plum); font-size: .95rem; white-space: nowrap;
}
.contact__detail dd { color: var(--text-lt); padding-left: 34px; line-height: 1.6; }
.contact__detail a { color: var(--plum-lt); transition: color .2s; }
.contact__detail a:hover { color: var(--plum); }
.contact__form-wrap {
  background: #fff; border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}
.contact__form-title { font-size: 1.35rem; color: var(--plum); margin-bottom: 24px; }
.form__group { margin-bottom: 18px; }
.form__label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form__input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(123,63,91,.15); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--text);
  background: var(--cream); transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form__input:focus { outline: none; border-color: var(--plum-lt); box-shadow: 0 0 0 3px rgba(123,63,91,.1); }
.form__select { cursor: pointer; }
.form__textarea { resize: vertical; min-height: 100px; }
.form__note { font-size: .8rem; color: var(--text-lt); margin-top: 12px; text-align: center; }
.form__success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 10px;
  background: #E8F5E9; color: #2E7D32; font-weight: 500; font-size: .95rem;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--plum-dk); color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer__inner { display: flex; justify-content: space-between; align-items: start; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.05rem; color: #fff; }
.footer__logo-icon { color: var(--amber); }
.footer__tagline { font-size: .9rem; margin-top: 6px; opacity: .7; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--amber); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .825rem; opacity: .6; }

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image { height: 320px; }
  .about__image-accent { width: 80px; height: 80px; bottom: -12px; right: -12px; }
}
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(250,247,245,.97); backdrop-filter: blur(16px);
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, box-shadow .3s;
    box-shadow: none;
  }
  .nav__menu.open { max-height: 400px; box-shadow: 0 8px 24px rgba(123,63,91,.1); }
  .nav__menu a { padding: 16px 24px; border-bottom: 1px solid rgba(123,63,91,.06); width: 100%; }
  .nav__menu .btn--amber { margin: 16px 24px; text-align: center; justify-content: center; }
  .hero { padding: 100px 0 80px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { gap: 16px; }
  .services, .about, .why, .contact { padding: 72px 0; }
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; }
}
