/* NADIA OSEI — Warm Editorial Legacy */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
  --terra:      #8B3A2A;
  --terra-deep: #5C2218;
  --terra-light:#C4614D;
  --sand:       #F2EAD8;
  --sand-dark:  #E5D9C0;
  --ink:        #1C1410;
  --gold:       #C09A3A;
  --gold-light: #D4B460;
  --warm-grey:  #7A6E62;
  --cream:      #FAF6EE;

  --display: 'Playfair Display', Georgia, serif;
  --body:    'Jost', sans-serif;
  --italic:  'Cormorant', Georgia, serif;
  --max-w:   1160px;
  --trans:   0.4s ease;
}

body { background: var(--cream); color: var(--ink); font-family: var(--body); }
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section { padding: 120px 0; }

.label {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 1.2rem;
}

.section__heading {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.section__heading em { font-style: italic; color: var(--terra); }

.body-text { font-size: 0.95rem; line-height: 1.85; color: var(--warm-grey); font-weight: 300; max-width: 520px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  display: inline-block;
  transition: all var(--trans);
}
.btn--terra { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.btn--terra:hover { background: var(--terra-deep); border-color: var(--terra-deep); }
.btn--ghost { background: transparent; color: rgba(250,246,238,0.7); border-color: rgba(250,246,238,0.3); }
.btn--ghost:hover { border-color: rgba(250,246,238,0.8); color: var(--cream); }
.btn--outline { background: transparent; color: var(--terra); border-color: rgba(139,58,42,0.3); width: 100%; text-align: center; }
.btn--outline:hover { border-color: var(--terra); background: rgba(139,58,42,0.05); }
.btn--full { width: 100%; text-align: center; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 5%;
  transition: background var(--trans), padding var(--trans);
}
.nav.scrolled { background: rgba(250,246,238,0.97); padding: 1rem 5%; box-shadow: 0 1px 20px rgba(28,20,16,0.07); }
.nav.dark-mode { /* for hero scroll */ }

.nav__logo { font-family: var(--display); font-size: 1.35rem; font-weight: 400; color: var(--cream); transition: color var(--trans); letter-spacing: 0.02em; }
.nav.scrolled .nav__logo { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,238,0.7); transition: color var(--trans); }
.nav.scrolled .nav__links a { color: var(--warm-grey); }
.nav__links a:hover { color: var(--gold-light) !important; }
.nav__apply { border: 1px solid rgba(192,154,58,0.5) !important; padding: 0.5rem 1.3rem; color: var(--gold-light) !important; }
.nav.scrolled .nav__apply { border-color: rgba(139,58,42,0.4) !important; color: var(--terra) !important; }
.nav__apply:hover { background: var(--terra) !important; color: var(--cream) !important; border-color: var(--terra) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all var(--trans); }
.nav.scrolled .nav__toggle span { background: var(--ink); }

/* HERO — full bleed portrait */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__portrait {
  position: absolute;
  inset: 0;
  background: var(--terra-deep);
}
.hero__portrait-inner {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, #3d1a10 0%, #6b2a18 35%, #8b3a2a 65%, #5c2218 100%);
}
/* Fabric/texture suggestion */
.hero__portrait-inner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0px, transparent 2px, transparent 8px, rgba(0,0,0,0.03) 10px);
  mix-blend-mode: multiply;
}
/* Photo label */
.hero__portrait::before {
  content: 'Portrait Photo';
  position: absolute;
  bottom: 3rem; right: 5%;
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  z-index: 2;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(28,20,16,0.85) 0%,
    rgba(28,20,16,0.6) 40%,
    rgba(28,20,16,0.15) 70%,
    transparent 100%
  );
  z-index: 1;
}
/* Bottom fade */
.hero__overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
}

.hero__content {
  position: relative; z-index: 2;
  width: 90%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem 0 7rem;
}

.hero__eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.8rem;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.hero__heading-line {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  display: block;
}
.hero__heading-italic {
  font-style: italic;
  color: var(--gold-light);
}
.hero__heading-accent {
  color: var(--terra-light);
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242,234,216,0.7);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.8rem;
}

.hero__ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero__edition {
  position: absolute;
  bottom: 2.5rem; right: 5%;
  z-index: 3;
  display: flex;
  gap: 0.8rem;
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,234,216,0.3);
}

/* QUOTE STRIP */
.quote-strip {
  background: var(--terra);
  padding: 2.2rem 0;
}
.quote-strip__inner {
  width: 90%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 1.2rem;
}
.quote-strip__mark {
  font-family: var(--display);
  font-size: 4rem;
  color: rgba(250,246,238,0.25);
  line-height: 0.7;
  font-style: italic;
}
.quote-strip__inner p {
  font-family: var(--italic);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
}

/* ABOUT */
.about { background: var(--sand); }
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 7rem; align-items: start; }
.about__left .body-text + .body-text { margin-top: 1.2rem; }
.about__credentials {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(28,20,16,0.1);
}
.about__cred-num { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--terra); line-height: 1; }
.about__cred-label { font-size: 0.7rem; color: var(--warm-grey); margin-top: 0.3rem; font-weight: 300; }
.about__image-wrap { position: relative; }
.about__image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--terra-deep) 0%, var(--terra) 50%, var(--terra-light) 100%);
  position: relative;
}
.about__image::before { content: 'Photo'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.15); }
.about__image-caption {
  background: var(--gold);
  padding: 1.8rem 2rem;
}
.about__image-caption p {
  font-family: var(--italic);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
}

/* METHOD */
.method { background: var(--cream); }
.method__intro { margin-bottom: 5rem; }
.method__items { max-width: 680px; }
.method__item { display: grid; grid-template-columns: 40px 1fr; gap: 2rem; margin-bottom: 0; }
.method__item-marker { display: flex; flex-direction: column; align-items: center; padding-top: 0.4rem; }
.method__item-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.method__item-line { width: 1px; flex: 1; background: rgba(139,58,42,0.2); min-height: 60px; }
.method__item:last-child .method__item-line { display: none; }
.method__item-body { padding-bottom: 3rem; }
.method__item-body h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 0.8rem; }
.method__item-body p { font-size: 0.9rem; line-height: 1.85; color: var(--warm-grey); font-weight: 300; }

/* OFFER */
.offer { background: var(--ink); }
.offer .label { color: var(--gold-light); }
.offer .section__heading { color: var(--sand); }
.offer .section__heading em { color: var(--terra-light); }
.offer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); margin-top: 4rem; }
.offer__card {
  background: #221812;
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative;
  transition: background var(--trans);
}
.offer__card:hover { background: #2a1e16; }
.offer__card--featured { background: #2a1e16; border: 1px solid rgba(192,154,58,0.25); margin: -1px; z-index: 1; }
.offer__card-accent { width: 36px; height: 2px; background: var(--warm-grey); }
.offer__card-accent--gold { background: var(--gold); }
.offer__tier { font-family: var(--body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.offer__card h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 400; color: var(--sand); }
.offer__price { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--cream); }
.offer__price span { font-size: 1rem; color: rgba(242,234,216,0.35); font-family: var(--body); font-weight: 300; }
.offer__desc { font-size: 0.87rem; line-height: 1.75; color: rgba(242,234,216,0.45); font-weight: 300; flex: 1; }
.offer__includes { display: flex; flex-direction: column; gap: 0.75rem; }
.offer__includes li { font-size: 0.8rem; color: rgba(242,234,216,0.5); font-weight: 300; padding-left: 1.2rem; position: relative; }
.offer__includes li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 1px; background: var(--gold); }

/* WORDS */
.words { background: var(--sand-dark); }
.words__grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; margin-top: 4rem; }
.words__card { background: var(--cream); padding: 3rem; border-bottom: 3px solid var(--terra); }
.words__card--large { grid-column: 1 / -1; }
.words__quote { font-family: var(--italic); font-size: 1.1rem; font-style: italic; line-height: 1.75; color: var(--ink); font-weight: 300; margin-bottom: 2rem; }
.words__card--large .words__quote { font-size: 1.25rem; }
.words__author { display: flex; align-items: center; gap: 1rem; }
.words__avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.words__avatar--1 { background: linear-gradient(135deg, var(--terra-deep), var(--terra)); }
.words__avatar--2 { background: linear-gradient(135deg, #3d2a1a, var(--terra-light)); }
.words__avatar--3 { background: linear-gradient(135deg, #2a1a0a, var(--gold)); }
.words__name { font-size: 0.88rem; font-weight: 500; color: var(--ink); }
.words__role { font-size: 0.72rem; color: var(--warm-grey); margin-top: 0.2rem; }

/* APPLY */
.apply { background: var(--cream); }
.apply__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 8rem; align-items: start; }
.apply__note { margin-top: 2rem; padding: 1.5rem; background: var(--sand); border-left: 3px solid var(--terra); }
.apply__note p { font-size: 0.82rem; color: var(--warm-grey); line-height: 1.65; font-style: italic; }

form { display: flex; flex-direction: column; gap: 1.5rem; }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__group label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-grey); }
.form__group input, .form__group select, .form__group textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(28,20,16,0.15);
  color: var(--ink); font-family: var(--body); font-size: 0.92rem; font-weight: 300;
  padding: 0.75rem 0; outline: none; transition: border-color var(--trans);
  border-radius: 0; -webkit-appearance: none; width: 100%;
}
.form__group input::placeholder, .form__group textarea::placeholder { color: rgba(122,110,98,0.4); }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-bottom-color: var(--terra); }
.form__group textarea { resize: vertical; }
.form__group select option { background: var(--cream); }
.form__note { font-size: 0.7rem; color: var(--warm-grey); text-align: center; margin-top: 0.2rem; opacity: 0.6; }

.form__success { display: none; padding: 3rem 0; }
.form__success.visible { display: block; }
.form__success-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.form__success h3 { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem; }
.form__success p { font-size: 0.9rem; color: var(--warm-grey); }

/* FOOTER */
.footer { background: var(--terra-deep); padding: 5rem 0 3rem; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer__name { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--cream); }
.footer__sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,234,216,0.4); }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer__nav a { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,234,216,0.3); transition: color var(--trans); }
.footer__nav a:hover { color: var(--gold-light); }
.footer__quote { font-family: var(--italic); font-size: 1rem; font-style: italic; color: rgba(242,234,216,0.25); max-width: 420px; line-height: 1.6; padding-top: 1.5rem; border-top: 1px solid rgba(242,234,216,0.08); width: 100%; }
.footer__legal { font-size: 0.62rem; color: rgba(242,234,216,0.15); letter-spacing: 0.05em; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__right { max-width: 480px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav__links { position: fixed; top: 0; right: -100%; width: 72%; max-width: 300px; height: 100vh; background: rgba(250,246,238,0.98); flex-direction: column; justify-content: center; gap: 2.5rem; padding: 2rem; transition: right var(--trans); border-left: 1px solid rgba(28,20,16,0.08); }
  .nav.scrolled .nav__links a { color: var(--warm-grey); }
  .nav__links.open { right: 0; }
  .nav__toggle { display: flex; }
  .hero__heading-line { font-size: clamp(2.8rem, 11vw, 5rem); }
  .offer__grid { grid-template-columns: 1fr; }
  .offer__card--featured { margin: 0; }
  .words__grid { grid-template-columns: 1fr; }
  .words__card--large { grid-column: auto; }
  .apply__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__credentials { flex-wrap: wrap; gap: 1.5rem; }
}
