/* =========================================================
   Direction A — EDITORIAL LUXURY · refinements (primary)
   Loaded after styles.css, only on home-a / index.html
   Focus: emotional warmth · photography · storytelling · type
   ========================================================= */

/* ---- Two-tone system: white base + single beige second colour ---- */
body { --ivory: #FFFFFF; --ivory-2: #F0E7DA; }
.ph { background-color: #E9E1D3; }

/* ---- Heading italic accents (warmth) ---- */
.section-head h2 em { font-style: italic; color: var(--taupe); font-weight: 500; }

/* =========================================================
   COVER NAV + HERO  (editorial article-cover, like reference)
   ========================================================= */
.nav--cover { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.nav--cover .nav__brand {
  justify-self: center; white-space: nowrap;
  font-family: var(--latin); font-weight: 500; font-size: clamp(16px, 1.9vw, 25px);
  letter-spacing: 0.36em; text-transform: uppercase;
}
.footer__brand { font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.nav--cover .nav__right { justify-self: end; display: flex; align-items: center; gap: 18px; }
.nav--cover .nav__burger {
  justify-self: start; display: flex; flex-direction: column; gap: 5px;
  width: 26px; padding: 6px 0; background: none; border: 0; cursor: pointer; color: inherit;
  position: relative; z-index: 80;
}
.nav--cover .nav__burger span { display: block; width: 100%; height: 1.5px; background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .3s var(--ease); }
.nav__search { background: none; border: 0; color: inherit; cursor: pointer; font-size: 19px; line-height: 1; padding: 0; }

/* left drawer menu (small panel) */
.nav__menu {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 60;
  width: min(360px, 86vw);
  background: #FFFFFF; color: var(--charcoal);
  padding: clamp(22px,2.4vw,34px) clamp(26px,2.6vw,40px) 40px;
  display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform .55s var(--ease);
  pointer-events: none; overflow-y: auto;
  box-shadow: 0 0 70px rgba(28,24,20,.14);
}
.nav__menu.open { transform: translateX(0); pointer-events: auto; }

.menu__close { align-self: flex-start; background: none; border: 0; cursor: pointer; color: var(--charcoal); padding: 0; margin-bottom: clamp(20px,2.4vw,34px); line-height: 0; }
.menu__close:hover { color: var(--taupe); }

.menu__group { display: flex; flex-direction: column; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.menu__group:last-child { border-bottom: 0; }

.nav__menu a, .menu__acc {
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--charcoal); background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color .3s var(--ease);
}
.nav__menu a:hover, .menu__acc:hover { color: var(--taupe); }
.menu__acc .chev { font-size: 14px; transition: transform .3s var(--ease); opacity: .55; }
.menu__acc.open .chev { transform: rotate(180deg); }

.menu__sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.menu__sub.open { grid-template-rows: 1fr; }
.menu__sub-in { overflow: hidden; display: flex; flex-direction: column; gap: 13px; }
.menu__sub.open .menu__sub-in { padding-top: 15px; }
.menu__sub a { font-size: 11px; letter-spacing: .16em; color: var(--charcoal-70); }

/* backdrop dims the rest of the page */
.menu__backdrop {
  position: fixed; inset: 0; z-index: 55; background: rgba(28,24,20,.22);
  opacity: 0; pointer-events: none; transition: opacity .5s var(--ease);
}
.nav__menu.open ~ .menu__backdrop { opacity: 1; pointer-events: auto; }

/* hide top burger while drawer open */
.nav--cover:has(.nav__menu.open) .nav__burger { opacity: 0; pointer-events: none; }

/* vertical social pictograms — right edge */
.hero__social {
  position: absolute; right: clamp(14px, 2.4vw, 40px); top: 50%; transform: translateY(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.hero__social a { color: rgba(250,248,244,.82); transition: color .3s var(--ease), transform .3s var(--ease); display: inline-flex; }
.hero__social a:hover { color: var(--ivory); transform: translateY(-2px); }
.hero__social svg { width: 19px; height: 19px; display: block; }

/* hero cover text — lower-left */
.hero--cover .hero__inner { padding-bottom: clamp(64px, 12vh, 130px); max-width: none; margin: 0; }
.hero__cover { max-width: 820px; }
.hero__script {
  display: block; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 5.5vw, 92px); line-height: 1.0; color: var(--ivory);
  text-shadow: 0 2px 34px rgba(0,0,0,.22);
}
.hero__cover-title {
  font-family: var(--serif); font-weight: 500; color: var(--ivory);
  font-size: clamp(13px, 1.4vw, 18px); letter-spacing: 0.22em; margin: 12px 0 0;
}
.hero__read {
  display: inline-flex; align-items: center; gap: 18px; margin-top: clamp(26px, 3vw, 42px);
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ivory);
}
.hero__read .line { width: 60px; height: 1px; background: var(--ivory); display: inline-block; transition: width .4s var(--ease); }
.hero__read:hover .line { width: 92px; }

@media (max-width: 600px) {
  .nav--cover .nav__right .lang { display: none; }
  .hero__social { gap: 16px; right: 12px; }
}

/* image-slot fills its placeholder frame */
.slot-fill { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero .slot-fill { z-index: 0; }

/* =========================================================
   PERSONAL INTRO  (storytelling + photography + warmth)
   ========================================================= */
.intro { padding-block: clamp(72px, 11vw, 150px); }
.intro__grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 96px); align-items: stretch;
}
.intro__img { position: relative; display: flex; flex-direction: column; }
.intro__img .ph { flex: 1 1 auto; min-height: 0; }

/* ---- Full-bleed split: photo fills the entire left side ---- */
.intro--split { padding-block: clamp(44px, 6vw, 88px) 0; }
.intro--split .intro__grid {
  grid-template-columns: 1fr 1fr; gap: 0;
  align-items: start;
}
.intro--split .intro__img { display: block; margin: 0; }
.intro--split .intro__img .ph { position: relative; inset: auto; flex: none; height: auto; aspect-ratio: 3 / 4; }
.intro--split .intro__body { align-self: center; }
.intro--split .intro__img figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; margin: 0;
  background: rgba(20,18,16,.55); color: #fff; padding: 6px 12px; border-radius: 2px;
  backdrop-filter: blur(2px);
}
.intro--split .intro__body {
  align-self: center; max-width: 58ch;
  padding: clamp(48px,7vw,110px) var(--gutter) clamp(48px,7vw,110px) clamp(36px,5vw,90px);
}
.intro__img figcaption {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: var(--charcoal-45); margin-top: 14px;
}
.intro__body { max-width: 56ch; }
.intro__body .eyebrow { margin-bottom: 26px; }
.intro__lead {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.2vw, 30px); line-height: 1.42; letter-spacing: -0.01em;
  color: var(--charcoal); margin: 0 0 24px;
}
.intro__body p:not(.intro__lead) { color: var(--charcoal-70); font-size: 17px; margin: 0 0 28px; }
.intro__sign {
  font-family: var(--latin); font-style: italic; font-weight: 600;
  font-size: 30px; color: var(--charcoal); margin-top: 8px;
}
.intro__actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: 6px; }

/* =========================================================
   FULL-BLEED PULL-QUOTE BAND  (cinematic photography moment)
   ========================================================= */
.quote-band {
  position: relative; min-height: min(78vh, 760px);
  display: grid; place-items: center; color: var(--ivory);
  margin-block: clamp(20px, 4vw, 56px);
}
.quote-band .ph { position: absolute; inset: 0; }
.quote-band__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,24,20,.52), rgba(28,24,20,.40));
}
.quote-band__inner { position: relative; z-index: 2; text-align: center; padding-block: 90px; }
.quote-band .mark { font-family: var(--latin); font-size: 64px; line-height: 0; color: var(--beige); opacity: .85; display: block; margin-bottom: 18px; }
.quote-band blockquote {
  margin: 0 auto; max-width: 18ch;
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(30px, 4.4vw, 60px); line-height: 1.22; letter-spacing: -0.01em;
}
.quote-band cite {
  display: block; margin-top: 34px; font-style: normal;
  font-family: var(--mono); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(250,248,244,.78);
}

@media (max-width: 880px) {
  .intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .intro__img { max-width: 440px; }
  .intro__img .ph { flex: none; aspect-ratio: 4 / 5; }
  .intro--split .intro__grid { grid-template-columns: 1fr; min-height: 0; }
  .intro--split .intro__img { max-width: none; }
  .intro--split .intro__img .ph { position: relative; aspect-ratio: 4 / 4.4; }
  .intro--split .intro__body { padding: clamp(32px,8vw,56px) var(--gutter); max-width: none; }
}

html, body { overflow-x: clip; }

/* =========================================================
   FOLLOW STRIP + INSTAGRAM GRID
   ========================================================= */
.follow { background: var(--ivory-2); }
.follow__inner {
  display: flex; align-items: center; gap: clamp(16px, 2.6vw, 36px);
  padding-block: clamp(40px, 5.5vw, 74px);
}
.follow__script {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(30px, 4.6vw, 58px); line-height: 1; color: var(--charcoal);
}
.follow__handle {
  font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 2.3vw, 28px);
  letter-spacing: 0.05em; color: var(--charcoal); white-space: nowrap;
  border-bottom: 1px solid transparent; transition: border-color .4s var(--ease);
}
.follow__handle:hover { border-color: var(--taupe); }
.follow__line { flex: 1; height: 1px; background: var(--charcoal); opacity: .45; }

.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--ivory-2); align-items: start; }
.ig { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; }
.ig .ph { position: absolute; inset: 0; overflow: hidden; transition: transform .7s var(--ease); }
.ig .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ig::after {
  content: ""; position: absolute; inset: 0; background: rgba(28,24,20,.28);
  opacity: 0; transition: opacity .4s var(--ease);
}
.ig:hover .ph { transform: scale(1.055); }
.ig:hover::after { opacity: 1; }
.ig__tag {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ivory); opacity: 0; transition: opacity .4s var(--ease);
}
.ig:hover .ig__tag { opacity: 1; }

/* =========================================================
   FOOTER override — light for this direction
   ========================================================= */
.footer { background: var(--ivory-2); color: var(--charcoal); }
.footer a { color: var(--charcoal-70); }
.footer a:hover { color: var(--taupe); }
.footer__brand { color: var(--charcoal); }
.footer__brand + p { color: var(--charcoal-70); }
.footer__col h5 { color: var(--charcoal-45); }
.footer__top { border-bottom-color: var(--line); }
.footer__bottom .copy { color: var(--charcoal-45); }

@media (max-width: 880px) {
  .ig-grid { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 62%; overflow-x: auto; scroll-snap-type: x mandatory; }
  .ig { scroll-snap-align: start; }
}
