/* ============================================================
   CANTINHO DO MARINHEIRO — Premium Chalet Paraty
   Design: colonial + marine, 2026 editorial
   ============================================================ */

:root {
  --navy: #0E3142;
  --navy-deep: #081F2C;
  --navy-soft: #1a3a52;
  --bordeaux: #6B3545;
  --bordeaux-soft: #8A4A5A;
  --cream: #F5EBD6;
  --cream-soft: #FAF3E4;
  --paper: #FDFBF4;
  --terracotta: #C47B5B;
  --sea: #A8C5D1;
  --gold: #C9A96E;
  --ink: #1B1F24;
  --ink-soft: #3E4752;
  --line: rgba(14, 49, 66, 0.12);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --script: 'Allura', 'Dancing Script', cursive;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1280px;
  --narrow: 900px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1.2em; color: var(--ink-soft); }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink-soft); max-width: 640px; }

.script { font-family: var(--script); font-weight: 400; font-style: italic; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--bordeaux);
}

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 2rem; }
section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-img { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse .split-img { order: 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--bordeaux);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(107, 53, 69, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(245, 235, 214, 0.5);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
}
.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(6px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.3rem 0;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(253, 251, 244, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.4s var(--ease);
  letter-spacing: 0.01em;
}
.nav.scrolled .nav-brand { color: var(--navy); }
.nav-brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.nav.scrolled .nav-brand-mark {
  background: var(--bordeaux);
}
.nav-brand-mark svg { width: 22px; height: 22px; }
.nav-brand-name { line-height: 1; display: flex; flex-direction: column; }
.nav-brand-name small {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.4rem 0;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 0.7rem 1.4rem !important;
  background: var(--bordeaux);
  color: var(--cream) !important;
  border-radius: 2px;
  letter-spacing: 0.14em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(380px, 85vw);
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem;
    transition: right 0.5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--cream) !important; font-size: 1rem; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cream); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cream); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 44, 0.35) 0%, rgba(8, 31, 44, 0.1) 30%, rgba(8, 31, 44, 0.55) 100%);
  z-index: 2;
}
.hero-media img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  max-width: 1100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.88;
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--cream);
  opacity: 0.6;
}
.hero h1 {
  color: var(--cream);
  font-weight: 300;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero h1 .script {
  display: block;
  font-size: 1.2em;
  font-weight: 400;
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: -0.15em;
}
.hero p.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: rgba(245, 235, 214, 0.92);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.hero-cta-row {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--cream);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--cream);
}
.page-hero .hero-media::before {
  background: linear-gradient(180deg, rgba(8, 31, 44, 0.5) 0%, rgba(8, 31, 44, 0.25) 50%, rgba(8, 31, 44, 0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.page-hero h1 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 1rem;
}
.page-hero .hero-eyebrow { color: var(--cream); }
.page-hero p {
  color: rgba(245,235,214,0.9);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumbs {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}
.breadcrumbs a:hover { opacity: 1; color: var(--cream); }
.breadcrumbs span { margin: 0 0.6rem; opacity: 0.5; }

/* ============================================================
   MARQUEE / SCROLLING TEXT
   ============================================================ */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 1.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,235,214,0.1);
  border-bottom: 1px solid rgba(245,235,214,0.1);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-soft);
  letter-spacing: 0.02em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / STORY
   ============================================================ */
.story {
  background: var(--paper);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.story-images {
  position: relative;
  height: 620px;
}
.story-images img {
  position: absolute;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(14,49,66,0.18);
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.story-images img:hover { transform: translateY(-6px); }
.story-img-main {
  width: 72%; height: 72%;
  top: 0; left: 0;
  z-index: 1;
}
.story-img-accent {
  width: 52%; height: 55%;
  bottom: 0; right: 0;
  z-index: 2;
  border: 8px solid var(--paper);
}
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-images { height: 480px; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-soft) 100%);
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.5;
}
.amenities-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.amenity {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.amenity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-soft) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.amenity:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(14,49,66,0.1);
  border-color: var(--navy);
}
.amenity:hover::before { opacity: 1; }
.amenity-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.4rem;
  color: var(--bordeaux);
  position: relative;
  z-index: 1;
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.amenity p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .amenity { padding: 2rem 1rem; }
}

/* ============================================================
   SUITES PREVIEW
   ============================================================ */
.suites-preview {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.suites-preview h2 { color: var(--cream); }
.suites-preview p { color: rgba(245,235,214,0.85); }
.suites-preview .eyebrow { color: var(--terracotta); }
.suites-preview .eyebrow::before { background: var(--terracotta); }
.suites-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}
.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.suite-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.suite-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.suite-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,31,44,0.2) 0%, rgba(8,31,44,0.1) 40%, rgba(8,31,44,0.9) 100%);
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}
.suite-card:hover img { transform: scale(1.08); }
.suite-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.2rem;
  z-index: 2;
  color: var(--cream);
}
.suite-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
  display: block;
}
.suite-card h3 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.suite-card p {
  color: rgba(245,235,214,0.85);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.suite-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 0.3rem;
  transition: all 0.3s var(--ease);
}
.suite-card-link:hover {
  color: var(--terracotta);
  padding-right: 0.6rem;
}
@media (max-width: 860px) {
  .suites-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.big { grid-column: span 2; }
}

/* ============================================================
   PARALLAX BANNER
   ============================================================ */
.parallax-banner {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.parallax-banner .hero-media::before {
  background: linear-gradient(180deg, rgba(8,31,44,0.45) 0%, rgba(107,53,69,0.3) 100%);
}
.parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 840px;
  padding: 0 2rem;
}
.parallax-content h2 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.parallax-content p {
  color: rgba(245,235,214,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CROSSLINKS / EXPLORE
   ============================================================ */
.explore {
  background: var(--paper);
}
.explore-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.explore-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/5;
  display: block;
}
.explore-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.explore-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,31,44,0.88) 100%);
  z-index: 1;
}
.explore-card:hover img { transform: scale(1.06); }
.explore-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
  color: var(--cream);
}
.explore-card h3 {
  color: var(--cream);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.explore-card p {
  color: rgba(245,235,214,0.88);
  font-size: 0.95rem;
  margin: 0;
}
@media (max-width: 860px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-block {
  background: var(--cream-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.quote-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--bordeaux);
  line-height: 0.3;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 2rem;
}
.quote-author {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta {
  background: var(--bordeaux);
  color: var(--cream);
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(196, 123, 91, 0.15) 0%, transparent 40%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta h2 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.cta p {
  color: rgba(245,235,214,0.9);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-brand-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand-mark svg { width: 28px; height: 28px; color: var(--cream); }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--cream);
  line-height: 1;
}
.footer-brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 5px;
}
.footer-about p {
  color: rgba(245,235,214,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer h5 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a {
  color: rgba(245,235,214,0.68);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer ul a:hover {
  color: var(--cream);
  padding-left: 6px;
}
.footer-contact-item {
  color: rgba(245,235,214,0.68);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--terracotta); flex-shrink: 0; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,235,214,0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245,235,214,0.55);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--cream); }
.footer-credit {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.footer-credit a {
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.footer-credit a:hover { border-color: var(--terracotta); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-about { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   PAGE CONTENT TYPOGRAPHY (for guide/experience pages)
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p { font-size: 1.1rem; line-height: 1.85; margin-bottom: 1.5rem; }
.prose h2 { margin: 3rem 0 1.2rem; }
.prose h3 { margin: 2rem 0 1rem; color: var(--bordeaux); font-size: 1.5rem; }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.prose ul li { margin-bottom: 0.6rem; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.prose blockquote {
  border-left: 3px solid var(--bordeaux);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
}
.prose a {
  color: var(--bordeaux);
  border-bottom: 1px solid var(--bordeaux);
  padding-bottom: 1px;
}
.prose a:hover { color: var(--navy); border-color: var(--navy); }

.content-image {
  margin: 3rem auto;
  max-width: 100%;
}
.content-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 24px 60px rgba(14,49,66,0.15);
}
.content-image figcaption {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 1rem;
  font-family: var(--serif);
}

/* ============================================================
   FEATURE LIST (suite details)
   ============================================================ */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin: 1.5rem 0 2rem;
}
.feature-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: '✦';
  color: var(--bordeaux);
  font-size: 0.8rem;
}
@media (max-width: 560px) {
  .feature-list { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.2rem;
  border-radius: 3px;
  transition: all 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14,49,66,0.12);
  border-color: var(--bordeaux);
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.review-author {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
}
.review-author small {
  display: block;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  font-weight: 400;
  font-size: 0.72rem;
}
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Book page */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}
.book-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all 0.4s var(--ease);
}
.channel:hover {
  border-color: var(--bordeaux);
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(14,49,66,0.1);
}
.channel-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 22px; height: 22px; }
.channel-info { flex: 1; }
.channel-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.channel-info p { font-size: 0.9rem; margin: 0; color: var(--ink-soft); }
.channel-arrow { color: var(--bordeaux); font-size: 1.2rem; }

@media (max-width: 860px) {
  .book-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.journal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: block;
  transition: all 0.5s var(--ease);
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(14,49,66,0.15);
}
.journal-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.journal-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.journal-card:hover .journal-card-img img { transform: scale(1.06); }
.journal-card-body { padding: 2rem; }
.journal-card-meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.8rem;
}
.journal-card h3 { font-size: 1.55rem; margin-bottom: 0.8rem; line-height: 1.2; }
.journal-card p { font-size: 0.98rem; margin: 0; }

@media (max-width: 860px) {
  .journal-grid { grid-template-columns: 1fr; }
}

/* Section header alignments */
.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 1rem; }

/* Pill links for cross-referencing */
.related {
  padding: 4rem 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
}
.related h3 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.related-card {
  padding: 2rem;
  background: var(--paper);
  border-radius: 3px;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  display: block;
}
.related-card:hover {
  border-color: var(--bordeaux);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(14,49,66,0.1);
}
.related-card .eyebrow { font-size: 0.7rem; margin-bottom: 0.8rem; }
.related-card h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--navy); }
.related-card p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }
@media (max-width: 860px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* Print / selection */
::selection { background: var(--bordeaux); color: var(--cream); }
