/* FemmeRevive — portfolio pass: full-bleed hero, experience treatments, restraint */
:root {
  --bg: #F9F7F2;
  --bg-soft: #faf3f0;
  --bg-card: #ffffff;
  --green: #1f3d35;
  --green-mid: #2c4a40;
  --rose: #b88185;
  --rose-soft: #f5e6e6;
  --gold: #c5a075;
  --text: #1f3d35;
  --text-muted: #5a6b64;
  --border: rgba(31, 61, 53, 0.12);
  --shadow: 0 20px 60px -20px rgba(31, 61, 53, 0.18);
  --radius: 1.25rem;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }
.container.narrow { width: min(720px, 92%); }

/* Header — transparent over hero, solid on scroll */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}
.site-header.scrolled {
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.site-header.on-hero .brand-name,
.site-header.on-hero .nav-desktop a,
.site-header.on-hero .nav-toggle span {
  color: #fff;
}
.site-header.on-hero .brand-tag { color: rgba(255,255,255,0.75); }
.site-header.on-hero .nav-desktop a:hover { color: var(--rose-soft); }
.site-header.on-hero:not(.scrolled) .btn-book {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.site-header.scrolled .brand-name,
.site-header.scrolled .nav-desktop a { color: var(--green); }
.site-header.scrolled .brand-tag { color: var(--rose); }
.site-header.scrolled .nav-toggle span { background: var(--green); }

.header-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.brand-logo-footer {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green);
  transition: color 0.2s;
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  transition: color 0.2s;
}

.nav-desktop { display: none; gap: 1.35rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-desktop a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--rose); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.header-cta { display: none; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: color 0.2s, opacity 0.2s;
}
.social-icon:hover { color: var(--rose); }
.site-header.on-hero:not(.scrolled) .header-ig {
  color: #fff;
}
.site-header.on-hero:not(.scrolled) .header-ig:hover {
  color: var(--rose-soft);
}
.nav-toggle {
  width: 2.4rem; height: 2.4rem;
  border: none; background: transparent;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%;
  background: var(--green);
  transition: background 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 4% 1.1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.7rem 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn-book {
  margin-top: 0.65rem;
  text-align: center;
  border: none;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .brand { gap: 0.9rem; }
  .brand-logo {
    width: 3.5rem;
    height: 3.5rem;
  }
  .brand-name { font-size: 1.25rem; }
  .brand-tag { font-size: 0.7rem; letter-spacing: 0.14em; }
  .header-inner { padding: 1rem 0; }
}

/* Buttons */
.btn-primary, .btn-book, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary, .btn-book {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}
.btn-primary:hover, .btn-book:hover { background: var(--green-mid); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.link-explore {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 0.12rem;
}
.link-explore.light {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.5);
}

/* Media fallbacks */
.media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #efeae4, #e5dfd8);
  color: #a89f94;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
}

/* ========== FULL-BLEED HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a2e28;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-fallback {
  background: linear-gradient(160deg, #2c4a40, #1f3d35);
  color: rgba(255,255,255,0.35);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 28, 24, 0.45) 0%, rgba(15, 28, 24, 0.25) 40%, rgba(15, 28, 24, 0.75) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 8rem 0 5rem;
  max-width: 36rem;
}
.eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow .line { width: 1.6rem; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,0.85); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 0.75rem;
}
.title-light { color: #fff; }
.title-rose { font-style: italic; color: #e8b4b8; font-weight: 400; }

.hero-brand-line {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}
.hero-lead em { font-style: italic; color: #e8b4b8; }
.hero-body {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 28rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.15rem;
}
.hero .btn-primary {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.hero .btn-primary:hover {
  background: var(--rose-soft);
  border-color: var(--rose-soft);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1.5rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
}
.hero-scroll span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

/* Sections */
.section { padding: 5.5rem 0; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 auto 2.75rem;
  font-size: 1.02rem;
}
.section-sub.center { text-align: center; }

.brand-line {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--rose);
  letter-spacing: 0.02em;
}
.brand-band {
  padding: 4.5rem 1.5rem;
  background: var(--green);
  text-align: center;
}
.brand-band p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  color: #fff;
  letter-spacing: 0.02em;
}

/* Story */
.story { padding-top: 0; }
.story-visual {
  position: relative;
  width: 100%;
  height: min(52vw, 420px);
  min-height: 240px;
  overflow: hidden;
  background: #e8e2db;
  margin-bottom: 3rem;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.story-body {
  color: var(--text-muted);
  font-size: 1.02rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.story-body strong { color: var(--green); font-weight: 600; }

/* Signature — featured + grid */
.sig-featured {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .sig-featured {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}
.sig-featured-media {
  position: relative;
  min-height: 320px;
  background: #e8e2db;
  aspect-ratio: 4/5;
  overflow: hidden;
}
@media (min-width: 900px) {
  .sig-featured-media {
    aspect-ratio: auto;
    min-height: 420px;
    height: 100%;
  }
}
.sig-featured-media video,
.sig-featured-media .sig-video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #1a2e28;
}
.sig-featured-media .media-fallback {
  z-index: 1;
}
.sig-featured-media.has-video .media-fallback {
  display: none;
}
.sig-media {
  position: relative;
}
.sig-media video.sig-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #1a2e28;
}
.sig-media.has-video .media-fallback {
  display: none;
}
.sig-featured-copy {
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .sig-featured-copy { padding: 2.5rem 2.25rem; }
}

.sig-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 800px) {
  .sig-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.sig-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px -24px rgba(31, 61, 53, 0.2);
}
.sig-media {
  position: relative;
  aspect-ratio: 4/5;
  background: #e8e2db;
  overflow: hidden;
}
.sig-media video,
.sig-media .sig-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.sig-media .sig-img {
  position: absolute;
  inset: 0;
}
.sig-card-body {
  padding: 1.5rem 1.35rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sig-num {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.45rem;
}
.sig-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--rose-soft);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.sig-card h3,
.sig-featured-copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.sig-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  margin-bottom: 0.85rem;
}
.sig-intro {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.sig-benefits {
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sig-benefits li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 0.9rem;
  position: relative;
}
.sig-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.sig-benefits strong { color: var(--green); font-weight: 600; }
.sig-card-body .btn-outline,
.sig-card-body .btn-primary,
.sig-featured-copy .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.service-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.service-col h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.service-col li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(31, 61, 53, 0.06);
}
.service-col li:last-child { border-bottom: none; }

/* Moments / reels */
.moments { padding-bottom: 4rem; }
.reel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 4% 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reel-track::-webkit-scrollbar { height: 4px; }
.reel-track::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 999px;
}
.reel-item {
  position: relative;
  flex: 0 0 min(72vw, 260px);
  aspect-ratio: 9/16;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #e8e2db;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}
.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.reel-label {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(31, 61, 53, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-card p {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.45;
  flex: 1;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.review-tag {
  font-size: 0.75rem;
  color: var(--rose);
}

/* Philosophy */
.phil-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 800px) {
  .phil-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.phil-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid transparent;
}
.phil-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.phil-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Experience strip */
.experience {
  padding: 3rem 0;
  background: var(--bg-soft);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .exp-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.exp-item { text-align: center; padding: 0.5rem; }
.exp-icon {
  display: block;
  color: var(--rose);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.exp-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.exp-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Contact */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.contact-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  padding-top: 0.2rem;
}
.contact-row a:hover { color: var(--rose); }
.contact-cta {
  width: 100%;
  margin-top: 1.5rem;
}
.contact-brand-line { margin-top: 2rem; }

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green);
}
.footer-brand span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}
.footer-motto {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--green-mid);
  font-size: 1.05rem;
}
.footer-ig {
  color: var(--green);
}
.footer-ig:hover {
  color: var(--rose);
}
.footer-made {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.footer-made a {
  color: var(--green);
  border-bottom: 1px solid var(--rose);
}
.footer-made a:hover { color: var(--rose); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
}
