/* ================================================================
   Fanny Clauss — Home page styles (index)
   ================================================================ */

/* ═══════════════════════════════════════════════
   § 01 — HERO (cinematic, 100vh)
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 72%;
  opacity: 0;
  animation: hPhoto 5s cubic-bezier(0.16,1,0.3,1) 0s forwards;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12, 10, 8, 0.18);
  pointer-events: none; z-index: 1;
}
@keyframes hPhoto {
  0%   { opacity: 0; object-position: center 72%; }
  4%   { opacity: 1; object-position: center 70%; }
  100% { opacity: 1; object-position: center 28%; }
}

/* Bottom gradient */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,28,0.45) 0%,
    rgba(28,28,28,0.12) 30%,
    transparent 52%,
    rgba(28,28,28,0.38) 78%,
    rgba(28,28,28,0.70) 100%
  );
  pointer-events: none; z-index: 2;
}


/* "Fanny" — top left */
.hero__fanny {
  position: absolute;
  top: 8vh; left: 56px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200; font-style: italic;
  font-size: clamp(88px, 18vw, 272px);
  line-height: 0.82; color: #fff;
  letter-spacing: -0.04em;
  z-index: 4; pointer-events: none;
  opacity: 0;
  animation: hFanny 1s cubic-bezier(0.22,1,0.36,1) 0.45s forwards;
}
@keyframes hFanny {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* "Clauss" — bottom right, outline */
.hero__clauss {
  position: absolute;
  bottom: 14vh; right: 56px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200; font-style: italic;
  font-size: clamp(88px, 18vw, 272px);
  line-height: 0.82; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.55);
  letter-spacing: -0.04em;
  z-index: 4; pointer-events: none;
  opacity: 0;
  animation: hClauss 1s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
@keyframes hClauss {
  from { opacity: 0; transform: translateY(-60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Center label */
.hero__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5; text-align: center;
  pointer-events: none; opacity: 0;
  animation: hFade 0.6s ease 0.8s forwards;
}
@keyframes hFade { to { opacity: 1; } }
.hero__center-label {
  font-family: 'Lato';
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.52em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); white-space: nowrap;
}
.hero__center-dash {
  display: block; width: 20px; height: 0.5px;
  background: rgba(184,150,90,0.6); margin: 10px auto 0;
}

/* Bottom bar */
.hero__bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 5; display: flex;
  justify-content: space-between; align-items: flex-end;
  padding: 0 56px 40px; opacity: 0;
  animation: hBar 0.7s ease 0.95s forwards;
}
@keyframes hBar {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__tagline {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 300;
  font-size: 16px; color: rgba(255,255,255,0.68);
  line-height: 1.55; max-width: 280px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 5; display: flex;
  flex-direction: column; align-items: center; gap: 9px;
  pointer-events: none; opacity: 0;
  animation: hFade 0.6s ease 1.05s forwards;
}
.hero__scroll-txt {
  font-family: 'Lato'; font-size: 9px; font-weight: 700;
  letter-spacing: 0.48em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--fc-gold), transparent);
  animation: sPulse 2.2s ease-in-out 1.2s infinite;
}
@keyframes sPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.mq {
  overflow: hidden;
  border-top: 0.5px solid var(--fc-taupe);
  border-bottom: 0.5px solid var(--fc-taupe);
  padding: 18px 0;
  background: var(--fc-white);
}
.mq__track {
  display: flex; width: max-content;
  animation: mqRun 30s linear infinite;
}
.mq:hover .mq__track { animation-play-state: paused; }
@keyframes mqRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq__item {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 19px; color: var(--fc-warm-gray);
  padding: 0 44px; white-space: nowrap;
  display: flex; align-items: center; gap: 44px;
}
.mq__item::after {
  content: '·'; color: var(--fc-gold);
  font-size: 22px; font-style: normal; opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   § 02 — ABOUT
═══════════════════════════════════════════════ */
.about {
  position: relative; background: var(--fc-white);
}
.about__cols {
  display: grid; grid-template-columns: 1fr 1fr;
}
.about__left {
  padding: 96px 56px 72px 56px;
  display: flex; flex-direction: column;
  border-right: 0.5px solid var(--fc-taupe);
}
.about__label { margin-bottom: 36px; }
.about__body {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 17px; line-height: 1.9;
  color: var(--fc-warm-gray); max-width: 400px;
  margin-bottom: 36px; flex: 1;
}
.about__photo {
  width: 68%; aspect-ratio: 3/4; overflow: hidden; position: relative; margin-top: 48px;
}
.about__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 9s ease;
}
.about__photo:hover img { transform: scale(1.05); }

.about__right {
  position: relative; display: flex; align-items: center;
  padding: 56px 48px 56px 44px; overflow: hidden; min-height: 680px;
}
.about__img-main {
  width: 76%; height: 580px; overflow: hidden; position: relative; flex-shrink: 0;
}
.about__img-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 9s ease;
}
.about__img-main:hover img { transform: scale(1.04); }
.about__lumiere {
  font-family: 'Cormorant Garamond'; font-weight: 200; font-style: italic;
  font-size: clamp(52px, 5.8vw, 88px); letter-spacing: 0.1em;
  color: var(--fc-black);
  writing-mode: vertical-rl; text-orientation: mixed;
  line-height: 1; margin-left: 18px; align-self: center;
  user-select: none; flex-shrink: 0;
}

.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--fc-taupe); margin: 0 56px;
}
.about__stat {
  padding: 28px 32px; border-right: 0.5px solid var(--fc-taupe); position: relative;
}
.about__stat:last-child { border-right: none; }
.about__stat::before {
  content: ''; position: absolute; top: 0; left: 32px;
  width: 18px; height: 1.5px; background: var(--fc-gold);
}
.about__stat-n {
  display: block;
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 48px; color: var(--fc-gold); line-height: 1; margin-top: 16px;
}
.about__stat-l {
  display: block; font-family: 'Lato'; font-size: 10px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--fc-warm-gray); margin-top: 9px;
}

/* ═══════════════════════════════════════════════
   § 03 — PORTFOLIO
═══════════════════════════════════════════════ */
.portfolio {
  position: relative; background: var(--fc-white);
  padding: 100px 56px 96px;
}
.portfolio__layout {
  display: grid; grid-template-columns: 2fr 3fr; gap: 60px; margin-bottom: 6px;
}
.portfolio__text {
  display: flex; flex-direction: column; justify-content: flex-start; padding-top: 8px;
}
.portfolio__label-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.portfolio__label-line {
  display: block; width: 24px; height: 1px; background: var(--fc-gold); flex-shrink: 0;
}
.portfolio__title {
  font-family: 'Cormorant Garamond'; font-weight: 200; font-style: italic;
  font-size: clamp(52px, 7.5vw, 112px); line-height: 0.88;
  letter-spacing: -0.03em; color: var(--fc-black); margin-bottom: 36px;
}
.portfolio__title span { display: block; }
.portfolio__desc {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 16px; line-height: 1.85; color: var(--fc-warm-gray);
  max-width: 320px; margin-bottom: 36px;
}

/* Asymmetric masonry grid */
.portfolio__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5px;
}
.portfolio__col { display: flex; flex-direction: column; gap: 5px; }

.pgc { overflow: hidden; position: relative; }
.pgc img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .85s ease;
}
.pgc:hover img { transform: scale(1.05); }
.pgc__cap {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 56px 20px 20px;
  background: linear-gradient(transparent 45%, rgba(28,28,28,0.52));
  opacity: 0; transition: opacity .4s;
  font-family: 'Lato'; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  pointer-events: none;
}
.pgc:hover .pgc__cap { opacity: 1; }
.pgc--tall { aspect-ratio: 2/3; }
.pgc--land { aspect-ratio: 4/3; }
.pgc--sq   { aspect-ratio: 1/1; }

/* Bottom strip */
.portfolio__strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 5px;
}
.psc { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.psc img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .85s ease;
}
.psc:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════
   § 04 — SERVICES
═══════════════════════════════════════════════ */
.services {
  position: relative; background: var(--fc-cream);
  padding: 100px 56px 110px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.services__title {
  font-family: 'Cormorant Garamond'; font-weight: 200; font-style: italic;
  font-size: clamp(52px, 7.5vw, 112px); line-height: 0.86;
  letter-spacing: -0.03em; color: var(--fc-black); margin-bottom: 52px;
}
.services__title .amp {
  font-family: 'Dancing Script'; font-style: normal;
  color: var(--fc-gold); font-size: 0.9em; display: inline;
}
.services__photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
}
.sp { aspect-ratio: 2/3; overflow: hidden; position: relative; }
.sp img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .85s ease;
}
.sp:hover img { transform: scale(1.07); }

.services__right { padding-top: 8px; }
.services__intro {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 16.5px; line-height: 1.85; color: var(--fc-warm-gray);
  margin-bottom: 44px; max-width: 380px;
}

.svc {
  display: grid; grid-template-columns: 38px 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 0;
  border-bottom: 0.5px solid rgba(184,150,90,0.16);
  text-decoration: none; color: inherit; position: relative;
  transition: padding-left .4s ease;
}
.svc:first-of-type { border-top: 0.5px solid rgba(184,150,90,0.16); }
.svc:hover { padding-left: 10px; }
.svc__n {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 200;
  font-size: 28px; color: rgba(184,150,90,0.28); line-height: 1; transition: color .3s;
}
.svc:hover .svc__n { color: var(--fc-gold); }
.svc__cat {
  font-family: 'Lato'; font-size: 10px; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--fc-gold); opacity: 0.55; margin-bottom: 4px; transition: opacity .3s;
}
.svc:hover .svc__cat { opacity: 1; }
.svc__name {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 24px; color: var(--fc-black); transition: color .3s;
}
.svc:hover .svc__name { color: var(--fc-gold); }
.svc__p { text-align: right; flex-shrink: 0; }
.svc__pv {
  display: block; font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: 22px; color: var(--fc-black); line-height: 1;
}
.svc__pl {
  display: block; font-family: 'Lato'; font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--fc-warm-gray); margin-top: 3px;
}
.svc__arr {
  position: absolute; right: -2px; font-size: 13px; color: var(--fc-gold);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .35s ease;
}
.svc:hover .svc__arr { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════
   § 05 — TÉMOIGNAGES (carousel)
═══════════════════════════════════════════════ */
.testi {
  position: relative; background: var(--fc-black);
  padding: 96px 56px 108px; overflow: hidden;
}
.testi__top {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px;
}
.testi__title {
  font-family: 'Cormorant Garamond'; font-weight: 200; font-style: italic;
  font-size: clamp(48px, 7vw, 108px); line-height: 0.86;
  letter-spacing: -0.03em; color: #fff; display: block;
}
.testi__sub {
  font-family: 'Lato'; font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fc-gold); opacity: 0.65; display: block; margin-top: 14px;
}

.testi__nav { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tc-btn {
  width: 48px; height: 48px; background: transparent;
  border: 0.5px solid rgba(184,150,90,0.28); color: var(--fc-gold-light);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, color .3s; flex-shrink: 0;
}
.tc-btn:hover { background: var(--fc-gold); border-color: var(--fc-gold); color: #fff; }
.tc-dots { display: flex; gap: 8px; align-items: center; margin: 0 4px; }
.tc-pip {
  width: 5px; height: 5px; background: rgba(184,150,90,0.22);
  border: none; cursor: pointer; transition: background .35s ease, width .35s ease;
}
.tc-pip.tc-pip--on { background: var(--fc-gold); width: 22px; }

.testi__viewport { position: relative; min-height: 280px; }
.tc-slide { display: none; animation: tcIn .5s ease; }
.tc-slide--on { display: block; }
@keyframes tcIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tc-slide__qmark {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 96px; line-height: 1; color: var(--fc-gold);
  opacity: 0.22; display: block; margin-bottom: -20px;
  user-select: none; pointer-events: none;
}
.tc-slide__quote {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.9vw, 24px); line-height: 1.72;
  color: rgba(232,217,192,0.85); max-width: 760px; margin-bottom: 36px;
}
.tc-slide__sep { width: 40px; height: 0.5px; background: var(--fc-gold); opacity: 0.55; margin-bottom: 28px; }
.tc-slide__author { display: flex; align-items: center; gap: 16px; }
.tc-slide__av {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(184,150,90,0.1); border: 0.5px solid rgba(184,150,90,0.32);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 18px; color: var(--fc-gold); flex-shrink: 0;
}
.tc-slide__name {
  font-family: 'Lato'; font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: #fff;
}
.tc-slide__role {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 13px; color: rgba(255,255,255,0.32); margin-top: 3px;
}

/* ═══════════════════════════════════════════════
   § 06 — CONTACTS
═══════════════════════════════════════════════ */
.contacts {
  position: relative; background: var(--fc-white);
  padding: 96px 56px 108px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contacts__title {
  font-family: 'Cormorant Garamond'; font-weight: 200; font-style: italic;
  font-size: clamp(68px, 10vw, 148px); line-height: 0.3;
  letter-spacing: -0.04em; color: var(--fc-black); display: block;
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
}
.contacts__sub {
  font-family: 'Lato'; font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fc-gold); opacity: 0.65; display: block; margin-top: 16px;
}
.contacts__intro {
  font-family: 'Cormorant Garamond'; font-style: italic;
  font-size: 17px; line-height: 1.85; color: var(--fc-warm-gray);
  margin-bottom: 52px; max-width: 440px;
}
.clinks { list-style: none; }
.clink { border-bottom: 0.5px solid var(--fc-taupe); }
.clink a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-decoration: none; color: var(--fc-black);
  transition: padding-left .38s ease, color .3s;
}
.clink a:hover { padding-left: 12px; color: var(--fc-gold); }
.clink__lbl {
  display: block; font-family: 'Lato'; font-size: 10px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: inherit; opacity: 0.5; margin-bottom: 4px; transition: opacity .3s;
}
.clink a:hover .clink__lbl { opacity: 1; }
.clink__val { font-family: 'Cormorant Garamond'; font-style: italic; font-size: 22px; color: inherit; }
.clink__arr { font-size: 16px; opacity: 0.4; transition: transform .38s ease, opacity .3s, color .3s; flex-shrink: 0; }
.clink a:hover .clink__arr { opacity: 1; transform: translateX(5px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — HOME
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__fanny  { font-size: clamp(68px, 22vw, 160px); left: 28px; top: 9vh; }
  .hero__clauss { font-size: clamp(68px, 22vw, 160px); right: 28px; bottom: 15vh; }
  .hero__bar    { padding: 0 28px 32px; }
  .hero__scroll { display: none; }
  .hero__center-label { font-size: 9px; letter-spacing: 0.34em; }

  .about__cols { grid-template-columns: 1fr; }
  .about__left { padding: 72px 28px 56px; border-right: none; border-bottom: 0.5px solid var(--fc-taupe); }
  .about__right { padding: 48px 28px; min-height: 55vw; }
  .about__img-main { height: 100%; }
  .about__stats { margin: 0 28px; }

  .portfolio { padding: 80px 28px; }
  .portfolio__layout { grid-template-columns: 1fr; gap: 40px; }
  .portfolio__strip { grid-template-columns: 1fr; }

  .services { grid-template-columns: 1fr; gap: 52px; padding: 80px 28px; }

  .testi { padding: 80px 28px 96px; }
  .testi__top { flex-direction: column; align-items: flex-start; gap: 32px; }

  .contacts { grid-template-columns: 1fr; gap: 40px; padding: 80px 28px; }
  .contacts__title {
    writing-mode: horizontal-tb; transform: none; font-size: clamp(36px, 10vw, 60px); margin-bottom: 6px;
  }

  .sn { right: 20px; }
}

@media (max-width: 640px) {
  .hero__fanny  { font-size: clamp(56px, 26vw, 110px); }
  .hero__clauss { font-size: clamp(56px, 26vw, 110px); }
  .hero__tagline { display: none; }

  .about__photo { width: 90%; }
  .about__lumiere { font-size: 40px; }
  .about__stats { grid-template-columns: 1fr; }
  .about__stat { border-right: none; border-bottom: 0.5px solid var(--fc-taupe); }

  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__strip { display: none; }

  .services__photos { grid-template-columns: 1fr; }
  .sp { aspect-ratio: 16/9; }
}
