/* ============================================================
   GIOVANNA COSTA PHOTOGRAPHY — Portfolio
   ============================================================ */

/* ── Fonts (loaded via <link> in HTML) ────────────────────── */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --ff-serif: 'Cormorant Garamond', 'Georgia', serif;
  --ff-sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --c-bg:     #FAFAF8;
  --c-text:   #1C1C18;
  --c-muted:  #7A7A72;
  --c-border: #E4E4DE;
  --c-accent: #C9A96E;

  --nav-h:  72px;
  --wrap:   1320px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Focus-visible (keyboard navigation) ─────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 1px;
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Utilities ────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav__logo {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav__logo em { font-style: italic; font-weight: 400; }
.nav__logo:hover { opacity: 0.6; }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.5; }

.nav__links .nav__wa {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, opacity 0.2s;
}
.nav__links .nav__wa svg { width: 15px; height: 15px; }
.nav__links .nav__wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  opacity: 1;
}

/* Language switcher */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__lang a { opacity: 0.4; transition: opacity 0.2s; }
.nav__lang a:hover { opacity: 0.85; }
.nav__lang a[aria-current="true"] { opacity: 1; }
.nav__lang-sep { opacity: 0.18; user-select: none; }

/* Light variant (on dark hero before scroll) */
.nav--light .nav__logo,
.nav--light .nav__links a,
.nav--light .nav__hamburger span {
  color: rgba(255,255,255,0.9);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile overlay menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-style: italic;
  transition: opacity 0.2s;
}
.nav__mobile a:hover { opacity: 0.5; }

.nav__mobile-close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px;
}

.nav__mobile-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans) !important;
  font-size: 0.9rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px !important;
  border: 1px solid var(--c-border);
  margin-top: 1rem;
}
.nav__mobile-wa svg { width: 17px; height: 17px; }

.nav__mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;
}
.nav__mobile-lang a {
  font-family: var(--ff-sans) !important;
  font-size: 0.82rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.nav__mobile-lang a:hover,
.nav__mobile-lang a[aria-current="true"] { opacity: 1; }
.nav__mobile-lang span { opacity: 0.2; font-family: var(--ff-sans); font-size: 0.8rem; font-style: normal; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   HOME — EDITORIAL HERO
   ══════════════════════════════════════════════════════════════ */

.hero-editorial {
  min-height: 100svh;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-editorial__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(64px, 10vh, 120px);
  align-items: center;
}

@media (min-width: 860px) {
  .hero-editorial__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 100px);
    min-height: calc(100svh - var(--nav-h));
    padding-top: clamp(40px, 6vh, 80px);
    padding-bottom: clamp(40px, 6vh, 80px);
  }
}

.hero-editorial__copy {
  position: relative;
  z-index: 2;
}

.hero-editorial__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
}

.hero-editorial__title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3.8rem, 8.5vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.hero-editorial__title em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-editorial__subtitle {
  font-weight: 300;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  letter-spacing: 0.03em;
  color: var(--c-muted);
  margin-top: 32px;
  max-width: 40ch;
  line-height: 1.85;
}

.hero-editorial__scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0.45;
}
.hero-editorial__scroll-line {
  width: 36px;
  height: 1px;
  background: currentColor;
}

/* Right column: photo collage */
.hero-editorial__collage {
  position: relative;
  height: clamp(440px, 68vh, 760px);
}

.hero-collage__card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(28, 28, 24, 0.10);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 10s ease;
}

/* Card A — tall portrait, right-center */
.hero-collage__card--a {
  top: 0;
  right: 0;
  width: 56%;
  height: 82%;
  z-index: 3;
}
.hero-collage__card--a img { object-position: center 20%; }

/* Card B — landscape, bottom-left */
.hero-collage__card--b {
  bottom: 0;
  left: 0;
  width: 48%;
  height: 50%;
  z-index: 4;
}
.hero-collage__card--b img { object-position: center center; }

/* Card C — small accent, top-left */
.hero-collage__card--c {
  top: 6%;
  left: 6%;
  width: 36%;
  height: 40%;
  z-index: 2;
  filter: brightness(0.88);
}
.hero-collage__card--c img { object-position: center 40%; }

/* Decorative accent square */
.hero-collage__accent {
  position: absolute;
  bottom: 6%;
  right: 4%;
  width: 80px;
  height: 80px;
  border: 1px solid var(--c-accent);
  opacity: 0.25;
  z-index: 1;
}

/* Parallax lift on hover */
.hero-editorial__collage:hover .hero-collage__card--a { transform: translateY(-4px); }
.hero-editorial__collage:hover .hero-collage__card--b { transform: translate(4px, 4px); }
.hero-editorial__collage:hover .hero-collage__card--c { transform: translate(-4px, -4px); }

@media (max-width: 860px) {
  .hero-editorial__collage { height: clamp(320px, 55vw, 440px); }
  .hero-collage__card--a { width: 58%; height: 80%; }
  .hero-collage__card--b { width: 50%; height: 52%; }
  .hero-collage__card--c { width: 38%; height: 42%; }
}

/* ══════════════════════════════════════════════════════════════
   HOME — VERTICAL SERIES STACK
   ══════════════════════════════════════════════════════════════ */

.series-stack {
  overflow: hidden;
}

.series-row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(300px, 38vh, 460px);
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--c-border);
  cursor: pointer;
}

@media (min-width: 700px) {
  .series-row { grid-template-columns: 55% 45%; }
  .series-row--img-right { grid-template-columns: 45% 55%; }
}

.series-row__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 42vw, 460px);
}
@media (min-width: 700px) {
  .series-row__media { min-height: 0; }
}

.series-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.88);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
}
.series-row:hover .series-row__media img {
  transform: scale(1.04);
  filter: brightness(0.76);
}

.series-row__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(28, 28, 24, 0.08) 0%,
    transparent 60%);
  transition: opacity 0.5s;
}
.series-row:hover .series-row__media-overlay { opacity: 0; }

.series-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 80px);
  background: var(--c-bg);
  transition: background 0.4s;
}
.series-row:hover .series-row__body { background: #F4F0EA; }

.series-row__num {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 400;
  margin-bottom: 20px;
}

.series-row__title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--c-text);
}
.series-row__title em { font-style: italic; }

.series-row__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.82;
  max-width: 36ch;
  margin-bottom: 40px;
}

.series-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-text);
  opacity: 0.55;
  transition: opacity 0.3s, gap 0.4s;
}
.series-row:hover .series-row__cta { opacity: 1; gap: 20px; }

.series-row__cta-line {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}
.series-row:hover .series-row__cta-line { width: 52px; }

/* Mobile: stack media above body for img-right rows */
@media (max-width: 699px) {
  .series-row--img-right { display: flex; flex-direction: column-reverse; }
}

/* Desktop: series rows fill viewport height — slide-like layout */
@media (min-width: 700px) {
  .series-row {
    height: clamp(520px, 85vh, 860px);
    grid-template-rows: 1fr;
    min-height: 0;
    overflow: hidden;
  }
  .series-row__media { min-height: 0; }
  .series-row__body {
    min-height: 0;
    padding: clamp(32px, 4vw, 64px) clamp(28px, 5vw, 80px);
  }
  .series-row__title { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 16px; }
  .series-row__desc { margin-bottom: 28px; }
}

/* ── About Section ────────────────────────────────────────── */
.about-section {
  padding: clamp(80px, 11vw, 180px) 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 860px) {
  .about-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.about-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 22px;
}

.about-heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.about-heading em { font-style: italic; }

.about-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-muted);
}
.about-text + .about-text { margin-top: 16px; }

.about-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px;
}
.about-links a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.about-links a:hover { opacity: 0.55; }
.about-links svg { width: 18px; height: 18px; flex-shrink: 0; }

.about-img {
  position: relative;
  overflow: hidden;
}
.about-img--portrait { aspect-ratio: 3/4; }
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Page Hero (category pages) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  max-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: clamp(48px, 6vh, 96px);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.04) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0;
  transition: opacity 0.2s;
}
.page-hero__back:hover { opacity: 1; }
.page-hero__back-line {
  width: 24px;
  height: 1px;
  background: currentColor;
}
.page-hero__eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  background: rgba(250, 246, 240, 0.95);
  color: var(--c-muted);
  padding: 0.4em 0.6em;
  vertical-align: middle;
}
.page-hero__title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.page-hero__title em { font-style: italic; }
.page-hero__subtitle {
  font-weight: 300;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  margin-top: 0;
  max-width: 54ch;
  line-height: 1.95;
}

/* ── Inline highlight — wraps tightly per text line ─────── */
.hero-hl {
  display: inline;
  background: rgba(250, 246, 240, 0.95);
  color: var(--c-text);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.08em 0.36em;
  border-radius: 1px;
}
.page-hero__subtitle .hero-hl {
  background: rgba(250, 246, 240, 0.88);
  color: var(--c-text);
  padding: 0.16em 0.42em;
}

/* ── Page-hero scroll arrow ────────────────────────────────── */
.hero-scroll-arrow {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  padding: 8px;
  animation: arrowBounce 2.2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.hero-scroll-arrow svg { width: 26px; height: 26px; display: block; }
.hero-scroll-arrow:hover { color: #fff; }
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-section {
  padding: clamp(64px, 9vw, 140px) 0;
}
.gallery-intro {
  max-width: 62ch;
  margin-bottom: clamp(52px, 7vw, 110px);
}
.gallery-intro__text {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.62;
  color: var(--c-text);
}
.gallery-intro__text em { font-style: italic; }

/* CSS masonry columns */
.gallery-grid {
  columns: 1;
  column-gap: 10px;
}
@media (min-width: 580px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  background: var(--c-border);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease,
              opacity 0.6s ease;
  filter: brightness(0.96);
}
.gallery-item img.lazy { opacity: 0; }
.gallery-item img.loaded { opacity: 1; }
.gallery-item:hover img {
  transform: scale(1.025);
  filter: brightness(0.86);
}

/* Mobile gallery overflow — hidden items + reveal button */
.gallery-item--hidden { display: none !important; }
.gallery-more-btn {
  display: block;
  margin: 36px auto 0;
  padding: 12px 36px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--c-text);
  color: var(--c-text);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.gallery-more-btn:hover { background: var(--c-text); color: #fff; border-color: var(--c-text); }

/* ── BCN Lens Feature (portraits page) ───────────────────── */
.bcn-section {
  padding: clamp(72px, 9vw, 140px) 0;
  background: #F3EDE4;
}
.bcn-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
@media (min-width: 860px) {
  .bcn-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.bcn-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.bcn-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: 22px;
}
.bcn-title em { font-style: italic; }
.bcn-text {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--c-muted);
  max-width: 50ch;
  margin-bottom: 36px;
}
.bcn-photo {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.bcn-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  padding: clamp(80px, 11vw, 180px) 0;
  background: var(--c-text);
  color: #fff;
  text-align: center;
}
.cta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 28px;
}
.cta-heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 52px;
}
.cta-heading em { font-style: italic; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.25s, transform 0.22s;
}
.btn:hover { opacity: 0.78; transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn--wa    { background: #25D366; color: #fff; }
.btn--accent { background: var(--c-accent); color: #fff; }
.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn--outline-dark {
  border: 1px solid var(--c-text);
  color: var(--c-text);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: clamp(52px, 7vw, 100px) 0 clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--c-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.footer__logo em { font-style: italic; }

.footer__tagline {
  font-size: 0.84rem;
  color: var(--c-muted);
  font-weight: 300;
  max-width: 34ch;
  line-height: 1.75;
}

.footer__col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.footer__col-links li { margin-bottom: 10px; }
.footer__col-links a {
  font-size: 0.86rem;
  color: var(--c-muted);
  font-weight: 300;
  transition: color 0.2s;
}
.footer__col-links a:hover { color: var(--c-text); }

.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--c-muted);
  font-weight: 300;
}

/* ── WhatsApp FAB ─────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 150;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.38);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.wa-fab svg { width: 27px; height: 27px; }

/* ── Fade-in animation ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* stagger siblings */
.fade-in:nth-child(1) { transition-delay: 0.00s; }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.08s; }
.fade-in:nth-child(5) { transition-delay: 0.16s; }
.fade-in:nth-child(6) { transition-delay: 0.24s; }

/* ── Scenery subdued note ─────────────────────────────────── */
.scenery-note {
  margin-bottom: clamp(52px, 7vw, 100px);
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}
.scenery-note p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  color: var(--c-muted);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.72;
}
