/* ===============================
   NUTRÉA — LUXURY STYLES
   Soft light, feminine, elegant
   =============================== */

:root {
  --rose-soft: #f9e1dd;
  --rose: #c98d95;
  --rose-deep: #a86c75;
  --beige: #fff7f1;
  --beige-soft: #f7eee7;
  --grey-soft: #6e6b6f;
  --grey-light: #b3aeb1;
  --ink: #2a2a2a;
  --white: #ffffff;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px rgba(201, 141, 149, 0.18);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.05);

  --font-sans: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;

  --max-width: 1120px;
}

/* GLOBAL RESET */

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top left, #ffeae3, var(--beige));
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* LAYOUT HELPERS */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.center { text-align: center; margin-top: 2rem; }

/* NAVIGATION */

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(255, 247, 241, 0.98), rgba(255, 247, 241, 0.94));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav__logo { height: 42px; width: auto; }

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-title { font-size: 0.98rem; font-weight: 600; }

.nav__brand-sub { font-size: 0.75rem; color: var(--grey-soft); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav__menu a { position: relative; }

.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.24rem;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--rose);
  transition: width 0.2s ease;
}

.nav__menu a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  margin: 4px 0;
}

/* HERO */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.2rem 1.6rem 3.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__content { max-width: 34rem; }

.hero__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 3.2vw + 1.4rem, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
}

.hero__accent { color: var(--rose); }

.hero__text {
  font-size: 0.98rem;
  color: var(--grey-soft);
  margin-bottom: 1.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: var(--grey-soft);
  display: grid;
  gap: 0.3rem;
}

.hero__list li::before {
  content: "•";
  color: var(--rose);
  margin-right: 0.4rem;
}

/* HERO MEDIA (Image + Profile Card) */

.hero__media { justify-self: flex-end; width: 100%; }

.hero__img-wrapper {
  border-radius: 32px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #ffe1d9, #f6c8c4);
  box-shadow: var(--shadow-soft);
}

.hero__img { width: 100%; height: 100%; object-fit: cover; }

.profile-card {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 1.1rem 1.2rem 1.2rem;
}

.profile-card__name { margin: 0 0 0.25rem; font-size: 1.2rem; font-weight: 700; }

.profile-card__role { margin: 0 0 0.6rem; font-size: 0.92rem; color: var(--grey-soft); }

.profile-card__tagline {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* SECTIONS */

.section { padding: 3.2rem 0; }

.section--light {
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.section__sub {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-light);
  margin-bottom: 1.1rem;
}

.section__text {
  font-size: 0.96rem;
  color: var(--grey-soft);
  margin-bottom: 0.9rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn--rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 14px 32px rgba(168, 108, 117, 0.4);
}

.btn--rose:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(168, 108, 117, 0.5);
}

.btn--soft {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1px solid rgba(233, 203, 195, 0.8);
}

.btn--soft:hover { background: var(--white); }

.btn--block { width: 100%; }

/* CARDS */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.card--rose {
  background: linear-gradient(135deg, #ffecec, #f6dfd9);
  border-color: #f3d7d3;
}

.card__title { font-size: 1.1rem; margin: 0 0 0.5rem; font-weight: 600; }

.card__text { font-size: 0.94rem; color: var(--grey-soft); margin: 0 0 1rem; }

/* CHECKLIST */

.checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.94rem;
  color: var(--grey-soft);
}

.checks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
}

.checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.78rem;
  color: var(--rose);
}

/* FAQ */

.faq {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(245, 222, 216, 0.9);
  overflow: hidden;
}

.faq__item + .faq__item { border-top: 1px solid rgba(240, 225, 219, 0.9); }

.faq__question {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--grey-light);
}

.faq__item--open .faq__question::after { content: "–"; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 0.22s ease;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--grey-soft);
  margin: 0 0 0.9rem;
}

/* CONTACT */

.contact-links { margin-top: 1rem; }

.contact__link {
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.05rem;
  border-bottom: 1px solid rgba(201, 141, 149, 0.4);
}

/* FORM */

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 0.7rem;
}

.form label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey-light);
}

.form input,
.form select,
.form textarea {
  border-radius: 999px;
  border: 1px solid rgba(232, 214, 207, 0.9);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #fffdfb;
}

.form textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px rgba(201, 141, 149, 0.25);
}

/* FOOTER */

.footer {
  padding: 1.8rem 1.6rem 2.2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-soft);
  background: linear-gradient(to top, #fbe8e2, var(--beige));
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .nav__menu {
    position: absolute;
    inset: 52px 1.2rem auto 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    gap: 0.7rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav--open .nav__menu {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav__toggle { display: block; }

  .hero { grid-template-columns: 1fr; padding-top: 2.3rem; }
  .hero__media { order: -1; }
  .hero__img-wrapper { border-radius: 28px; }
}

@media (max-width: 640px) {
  .nav { padding-inline: 1.2rem; }
  .hero { padding-inline: 1.2rem; }
  .container { padding-inline: 1.2rem; }
}
