/* =========================================================
   NINAKEKS PHOTOGRAPHY — Design System & Layout
   Palette: cream / sand / lavender / apricot / plum
   Type: Cormorant Garamond (Headlines) · Jost (Fließtext)
   ========================================================= */

/* ---------- Fonts (lokal, siehe assets/fonts/README) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #FBF8F2;
  --sand: #F0E6DC;
  --offwhite: #FEFDFB;
  --lavender: #C9B7E8;
  --lavender-deep: #A98FD1;
  --apricot: #F4A97F;
  --apricot-deep: #E8895A;
  --plum: #3A2C3F;
  --muted: #746B75;
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px rgba(58, 44, 63, 0.10);
  --shadow-card: 0 14px 40px rgba(58, 44, 63, 0.08);

  --container: min(1180px, calc(100% - 40px));
  --container-narrow: min(760px, calc(100% - 40px));

  --nav-height: 76px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--plum);
}
p { margin: 0 0 1em; }
a { color: inherit; }
ul { margin: 0; }
button { font-family: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 300;
  padding: 12px 20px;
  background: var(--plum);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--apricot-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.section {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0;
}
.section__inner {
  width: var(--container);
  margin: 0 auto;
}
.section__inner--narrow {
  width: var(--container-narrow);
  margin: 0 auto;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--apricot-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
h2.heading-lg {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}

/* Aura backgrounds */
.aura-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aura-bg::before,
.aura-bg::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}
.aura-bg::before {
  top: -18%;
  left: -14%;
  background: radial-gradient(circle, var(--lavender), transparent 68%);
}
.aura-bg::after {
  bottom: -20%;
  right: -12%;
  background: radial-gradient(circle, var(--apricot), transparent 68%);
}
.section > * { position: relative; z-index: 1; }
.bg-sand { background: var(--sand); }
.bg-offwhite { background: var(--offwhite); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}
.btn--primary {
  background: var(--apricot-deep);
  color: var(--white);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--lavender-deep);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  border-color: var(--lavender-deep);
  color: var(--plum);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--lavender);
  border-color: var(--lavender);
}
.btn--whatsapp {
  background: var(--white);
  color: var(--plum);
  border-color: rgba(58,44,63,0.14);
}
.btn--whatsapp:hover, .btn--whatsapp:focus-visible {
  border-color: var(--apricot-deep);
  color: var(--apricot-deep);
}
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58,44,63,0.08);
}
.nav {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--plum);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.nav__links a:hover, .nav__links a:focus-visible {
  border-color: var(--apricot-deep);
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 12px 22px; font-size: 0.92rem; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58,44,63,0.16);
  background: var(--offwhite);
  cursor: pointer;
}
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--plum);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle-bar::before { position: absolute; top: -6px; }
.nav__toggle-bar::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 20px 24px 28px;
    background: var(--offwhite);
    border-bottom: 1px solid rgba(58,44,63,0.1);
    box-shadow: var(--shadow-soft);
  }
  .nav--open .nav__links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(58,44,63,0.08);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__eyebrow {
  color: var(--apricot-deep);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  margin-bottom: 22px;
}
.hero__lede {
  font-size: 1.12rem;
  color: var(--plum);
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 8px;
}
.hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero__contact {
  margin-top: 56px;
  padding: 30px clamp(20px, 4vw, 36px);
  background: var(--offwhite);
  border: 1px solid rgba(58,44,63,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.hero__contact h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.hero__contact p { color: var(--muted); margin-bottom: 20px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; aspect-ratio: 4/3; }
  .hero__figure img { aspect-ratio: 4/3; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid rgba(58,44,63,0.08);
  border-bottom: 1px solid rgba(58,44,63,0.08);
  background: var(--sand);
  overflow: hidden;
  padding: 16px 0;
  margin-top: 56px;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--plum);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; overflow-x: auto; }
}

/* ---------- Objection / Quotes section ---------- */
.objection__intro {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.quote-rotator {
  position: relative;
  min-height: 3.6em;
  margin-bottom: 40px;
}
.quote-rotator blockquote {
  margin: 0;
  padding: 22px 28px;
  background: var(--white);
  border-left: 4px solid var(--apricot);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--plum);
}
.quote-rotator blockquote[hidden] { display: none; }

.objection__body {
  max-width: 68ch;
  font-size: 1.05rem;
}
.objection__body p { margin-bottom: 1.15em; }
.objection__body .pull {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--lavender-deep);
  margin: 1.6em 0;
  line-height: 1.3;
}

/* ---------- Experience / gallery ---------- */
.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.experience__grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.experience__grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.experience__points {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.experience__points li {
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  font-weight: 500;
}
@media (max-width: 760px) {
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Process ---------- */
.process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process__step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.process__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}
.process__step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.process__step p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }
.process__step figure { margin: 16px 0 0; border-radius: var(--radius-sm); overflow: hidden; }
.process__step img, .process__step video { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.process__cta { margin-top: 44px; text-align: center; }
@media (max-width: 960px) {
  .process__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process__list { grid-template-columns: 1fr; }
}

/* ---------- Products ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.products__grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.products__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.products__grid figcaption {
  padding: 14px 18px 18px;
  font-size: 0.92rem;
  color: var(--muted);
}
.products__note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 64ch;
}
@media (max-width: 760px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Consent placeholder cards ---------- */
.consent-card {
  padding: clamp(28px, 5vw, 46px);
  background: var(--white);
  border: 1px dashed rgba(169,143,209,0.5);
  border-radius: var(--radius-md);
  text-align: center;
}
.consent-card p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 18px;
}
.consent-card__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--lavender);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about__stats {
  display: flex;
  gap: 32px;
  margin: 26px 0;
}
.about__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--apricot-deep);
}
.about__stat span { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq__flag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 18px;
  background: var(--lavender);
  color: var(--plum);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--apricot-deep);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

/* ---------- Newsletter + Instagram ---------- */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.panel h3 { font-size: 1.6rem; }
.panel p { color: var(--muted); }
.panel__consent {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.panel__consent a { color: var(--lavender-deep); text-decoration: underline; }
@media (max-width: 860px) {
  .dual-grid { grid-template-columns: 1fr; }
}

/* ---------- Closing ---------- */
.closing {
  overflow: hidden;
}
.closing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.closing__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.closing__figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.closing__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
@media (max-width: 860px) {
  .closing__grid { grid-template-columns: 1fr; }
  .closing__figure { order: -1; aspect-ratio: 16/10; }
  .closing__figure img { aspect-ratio: 16/10; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 48px 0 36px;
  background: var(--plum);
  color: var(--sand);
}
.site-footer .section__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .wordmark { color: var(--offwhite); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links a, .footer__links button {
  background: none;
  border: none;
  color: var(--sand);
  text-decoration: none;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 4px 0;
}
.footer__links a:hover, .footer__links a:focus-visible,
.footer__links button:hover, .footer__links button:focus-visible {
  color: var(--apricot);
}
.footer__meta {
  width: 100%;
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(240,230,220,0.6);
}
