/* ============================================================
   TAILORED — Main Stylesheet
   Design tokens first, components below
   ============================================================ */

/* --- Tokens --- */
:root {
  --color-bg: #F8F8FF;
  --color-dark: #2C2C2C;
  --color-greige: #CEC7BE;
  --color-gold: #D0B98C;
  --color-white: #FFFFFF;
  --color-cream: #F2EDE6;
  --color-text: #0D0D0D;
  --color-text-muted: #666666;

  --black: var(--color-text);
  --white: var(--color-bg);
  --cream: var(--color-cream);
  --stone: var(--color-greige);
  --accent: var(--color-dark);
  --gold: var(--color-gold);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: 96px 24px;
  --radius: 2px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Type scale --- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}
.subheading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-large { font-size: 1.05rem; line-height: 1.7; color: var(--color-text-muted); }
.body-small { font-size: 0.88rem; color: var(--color-text-muted); }

/* --- Layout helpers --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--dark { background: var(--accent); color: var(--color-white); }
.section--cream { background: var(--cream); }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.text-center { text-align: center; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--accent); color: var(--color-white); }
.btn--filled { background: var(--accent); color: var(--color-white); border-color: var(--accent); }
.btn--filled:hover { background: var(--black); }
.btn--white { border-color: var(--color-white); color: var(--color-white); }
.btn--white:hover { background: var(--color-white); color: var(--accent); }
.btn--gold { border-color: var(--gold); color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--accent); }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--accent); }
.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__socials { display: flex; gap: 14px; }
.nav__socials a { display: flex; align-items: center; opacity: 0.5; transition: opacity 0.2s; }
.nav__socials a:hover { opacity: 1; }
.nav__socials svg { width: 16px; height: 16px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.2s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--color-bg);
  padding: 40px 24px;
  flex-direction: column;
  gap: 32px;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.nav-open { overflow: hidden; }

/* --- Hero --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--accent);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--color-white);
  max-width: 800px;
  margin-bottom: 12px;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--stone);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__copy {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone);
  max-width: 560px;
  margin-bottom: 40px;
}

/* --- Feature strip (4 pillars) --- */
.pillars { padding: 0; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  padding: 48px 32px;
  border-left: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.pillar:first-child { border-left: none; }
.pillar:hover { background: var(--cream); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar__title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.pillar__body { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

/* --- Feature rows --- */
.feature {
  padding: 80px 24px;
}
.feature__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature__inner.reverse { direction: rtl; }
.feature__inner.reverse > * { direction: ltr; }
.feature__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}
.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature__image:hover img { transform: scale(1.03); }
.feature__text .subheading { margin-bottom: 16px; }
.feature__text .heading { margin-bottom: 20px; }
.feature__text .body-large { margin-bottom: 32px; }

/* --- Statement banner --- */
.statement {
  padding: 120px 24px;
  background: var(--black);
  text-align: center;
}
.statement__word {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.statement__sub {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 24px;
}

/* --- FAQ --- */
.faq { padding: var(--section-pad); }
.faq__header { margin-bottom: 64px; }
.faq__item {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 24px 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 24px;
}
.faq__question .icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq__answer {
  display: none;
  padding-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 760px;
}
.faq__item.open .faq__answer { display: block; }
.faq__item.open .icon { transform: rotate(45deg); }

/* --- CTA banner --- */
.cta-banner {
  padding: 96px 24px;
  background: var(--cream);
  text-align: center;
}
.cta-banner .heading { margin-bottom: 12px; }
.cta-banner .body-large { margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- App Store badge --- */
/* --- Shared page patterns --- */
.page-hero {
  padding: 160px 24px 96px;
  background: var(--accent);
  color: var(--color-white);
  text-align: center;
}
.page-hero .subheading { color: var(--gold); margin-bottom: 24px; }
.page-hero .display,
.page-hero .heading,
.page-hero__title {
  max-width: 820px;
  margin: 0 auto 24px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
}
.page-hero__body,
.page-hero .body-large {
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .subheading { margin-bottom: 12px; }
.section-header .body-large {
  max-width: 620px;
  margin: 16px auto 0;
}
.editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
}
.editorial-card {
  background: var(--color-white);
  padding: 40px 32px;
}
.editorial-card__title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold);
}
.editorial-card__body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.profile-photo {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background: transparent;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: transparent;
}
.profile-photo--simona img { object-position: center 14%; }
.profile-photo--shura img { object-position: center 22%; }

/* --- Mission page --- */
.mission-hero {
  padding: 160px 24px 96px;
  background: var(--accent);
  color: var(--color-white);
  text-align: center;
}
.mission-hero .subheading { color: var(--gold); margin-bottom: 24px; }
.mission-hero .display { max-width: 820px; margin: 0 auto 24px; }
.mission-hero .body-large { color: var(--stone); max-width: 540px; margin: 0 auto; }

.principles {
  padding: var(--section-pad);
  background: var(--cream);
}
.principle { padding: 32px 0; border-top: 1px solid rgba(0,0,0,0.1); }
.principle:first-child { border-top: none; }
.principle__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.principle__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.principle__title { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; }
.principle__body { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.7; }

.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(0,0,0,0.08); }
.approach-card {
  background: var(--color-white);
  padding: 40px 32px;
}
.approach-card__title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold);
}
.approach-card__body { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.7; }

.commitment {
  padding: var(--section-pad);
}
.commitment__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; margin-top: 56px; }
.commitment__item {}
.commitment__item-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.commitment__item-body { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

/* --- Legal pages --- */
.legal-hero {
  padding: 160px 24px 96px;
  background: var(--accent);
  color: var(--color-white);
  text-align: center;
}
.legal-hero .subheading { color: var(--gold); margin-bottom: 24px; }
.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.legal-hero__sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.legal-body {
  background: var(--color-white);
  padding: 96px 24px;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
}
.legal-updated {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text);
  margin-top: 56px;
  margin-bottom: 16px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-body p,
.legal-body li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.legal-body p { margin-bottom: 16px; }
.legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--gold); }
.legal-body strong { color: var(--color-text); font-weight: 600; }

/* --- Footer --- */
.footer {
  background: var(--accent);
  color: var(--color-white);
  padding: 64px 24px 40px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.82rem; color: var(--stone); line-height: 1.6; }
.footer__nav-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer__nav-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer__nav-links a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__nav-links a:hover { color: var(--color-white); }
.footer__socials { display: flex; gap: 16px; margin-top: 20px; }
.footer__socials a { opacity: 0.5; transition: opacity 0.2s; }
.footer__socials a:hover { opacity: 1; }
.footer__socials svg { width: 18px; height: 18px; fill: var(--color-white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  :root { --section-pad: 64px 20px; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-top: none; }
  .feature__inner, .feature__inner.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .principle__header { grid-template-columns: 1fr; gap: 8px; }
  .approach-grid, .editorial-card-grid { grid-template-columns: 1fr; }
  .commitment__grid { grid-template-columns: 1fr; }
  .nav__links, .nav__cta .btn, .nav__socials { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 600px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-top: 1px solid rgba(0,0,0,0.08); }
  .pillar:first-child { border-top: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .statement__word { font-size: clamp(3.5rem, 18vw, 8rem); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* --- App Store badge image --- */
.app-store-link { display: inline-block; }
.appstore-badge {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.appstore-badge:hover { opacity: 0.85; }

/* --- Logo images --- */
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; }
.footer__logo-img { height: 40px; width: auto; margin-bottom: 12px; }

/* --- Cookie Consent Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--accent);
  color: var(--color-white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.3s ease;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--stone);
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn--outline {
  background: transparent;
  color: var(--color-white);
}
.cookie-btn--outline:hover {
  background: rgba(255,255,255,0.1);
}
.cookie-btn--filled {
  background: var(--gold);
  color: var(--accent);
  border-color: var(--gold);
}
.cookie-btn--filled:hover {
  background: var(--stone);
  border-color: var(--stone);
}
@media (max-width: 600px) {
  #cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-left: none; border-right: none; border-bottom: none; }
  .cookie-banner__content { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* --- Social proof strip --- */
.proof-strip {
  padding: 20px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.proof-strip__text {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
@media (max-width: 600px) {
  .proof-strip__text { gap: 20px; }
}

.status-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
