/* ============================================
   La Maison du Cap — Cap Fréhel
   Palette Bretagne haut de gamme
   ============================================ */

:root {
  --sand:      #F5EFE3;
  --cream:     #FBF7EE;
  --ivory:     #FFFDF8;
  --ink:       #1F2A28;        /* vert quasi noir */
  --moss:      #38473E;        /* vert mousse profond */
  --moss-soft: #5D6E63;
  --gold:      #B89968;        /* doré subtil */
  --gold-dark: #8B6F44;
  --line:      rgba(31, 42, 40, 0.12);

  --serif:     'Cormorant Garamond', 'Garamond', serif;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --pad-y:     clamp(80px, 10vw, 140px);
  --pad-x:     clamp(24px, 6vw, 96px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(44px, 7vw, 96px); }
h2 { font-size: clamp(34px, 4.6vw, 62px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 20px; }

h1 em, h2 em { font-style: italic; color: var(--moss); font-weight: 300; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

/* ============================================
   NAVIGATION
   ============================================ */
#topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--pad-x);
  transition: all .4s ease;
  background: transparent;
}
#topnav.scrolled {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--pad-x);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1600px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px; color: #fff;
  letter-spacing: 0.02em; transition: color .4s;
}
.brand-mark {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.brand:hover .brand-mark {
  transform: rotate(45deg);
}
#topnav.scrolled .brand { color: var(--ink); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; transition: color .4s;
}
#topnav.scrolled .nav-links { color: var(--ink); }
.nav-links a { position: relative; padding: 6px 0; transition: opacity .2s; }
.nav-links a:hover { opacity: .7; }

.lang-switch {
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
  padding: 6px 10px !important;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.85;
}
.lang-switch:hover { opacity: 1 !important; }
.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.nav-cta:hover {
  background: var(--moss); color: var(--ivory) !important;
  border-color: var(--moss); opacity: 1 !important;
}
#topnav.scrolled .nav-cta { background: var(--moss); color: var(--ivory) !important; border-color: var(--moss); }
#topnav.scrolled .nav-cta:hover { background: var(--ink); border-color: var(--ink); }

@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,28,.35) 0%, rgba(20,30,28,.15) 40%, rgba(20,30,28,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 24px;
  animation: heroFade 1.6s .3s both ease;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 30px; opacity: .85;
}
.hero h1 { color: #fff; margin-bottom: 28px; }
.hero h1 em { color: rgba(255,255,255,.85); }
.hero-tag {
  font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic; font-weight: 300;
  max-width: 620px; margin: 0 auto 36px; opacity: .92;
}
.hero-meta {
  display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 28px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  margin-bottom: 42px;
}
.hero-meta .dot { opacity: .5; }
.hero-cta {
  display: inline-block;
  padding: 18px 42px;
  background: rgba(255,255,255,.96); color: var(--ink);
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
  transition: all .3s ease;
}
.hero-cta:hover {
  background: var(--gold); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(184,153,104,.4);
}
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,.7);
  animation: pulse 2.4s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: .55; transform: translate(-50%, 0); }
  50%      { opacity: 1; transform: translate(-50%, 6px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-pad {
  padding: var(--pad-y) var(--pad-x);
}
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }

.container-narrow {
  max-width: 880px; margin: 0 auto;
}
.text-center { text-align: center; }

.eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 18px; display: inline-block;
}
.eyebrow.center { display: block; }
.eyebrow.light { color: rgba(255,255,255,.8); }

.lead {
  font-size: 18px; line-height: 1.75; color: var(--moss);
}
.lead.center { max-width: 720px; margin: 24px auto 0; }
.lead.light { color: rgba(255,255,255,.92); }

/* ============================================
   INTRO
   ============================================ */
.intro-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.intro-eyebrow {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--gold-dark); margin-bottom: 24px;
}
.intro h2 { margin-bottom: 40px; }
.intro-lead {
  font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.6; font-weight: 300; color: var(--moss);
  margin-bottom: 28px;
}
.intro-sign {
  margin-top: 36px;
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--gold-dark);
}

/* ============================================
   MOSAIC GALLERY
   ============================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 4px;
  background: var(--ivory);
}
.mosaic .m-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mosaic .m-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.mosaic .m-cell:hover img {
  transform: scale(1.05);
  filter: brightness(.85);
}
.mosaic .m-tall { grid-row: 1 / span 2; }
.mosaic .m-wide { grid-column: 2 / span 2; }
.m-caption {
  position: absolute; left: 24px; bottom: 22px;
  font-family: var(--serif); font-size: 22px; color: #fff; font-style: italic;
  opacity: 0; transform: translateY(8px);
  transition: all .5s ease;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.m-cell:hover .m-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic .m-tall, .mosaic .m-wide { grid-row: auto; grid-column: auto; }
  .mosaic .m-cell { aspect-ratio: 4/3; }
}

/* ============================================
   GRID 2 COL
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.grid-2.reverse > div:first-child { order: 0; }
@media (min-width: 820px) {
  .grid-2.reverse > div:first-child { order: 1; }
}
@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; }
}
.img-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px -30px rgba(20,30,28,.35);
}
.img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.img-frame:hover img { transform: scale(1.04); }

.feature-list {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--moss);
  display: flex; gap: 14px; align-items: baseline;
}
.feature-list li span {
  color: var(--gold); font-size: 22px; line-height: 1;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 1000px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .rooms { grid-template-columns: 1fr; } }
.room { }
.room img {
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
  transition: transform .8s ease;
}
.room:hover img { transform: scale(1.03); }
.room-meta { padding: 22px 4px 0; }
.room-meta h3 {
  font-size: 22px; margin-bottom: 6px;
}
.room-meta p {
  font-size: 15px; color: var(--moss-soft);
  font-family: var(--serif); font-style: italic;
}

/* ============================================
   PLACE — Cap Fréhel
   ============================================ */
.place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 820px) { .place { grid-template-columns: 1fr; } }
.place-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 40px 80px -30px rgba(20,30,28,.35);
}
.place-list {
  list-style: none;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}
.place-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--moss);
  display: flex;
  align-items: baseline;
  gap: 18px;
  line-height: 1.55;
}
.place-list strong {
  flex-shrink: 0;
  width: 140px;
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--gold-dark); font-style: italic;
}
@media (max-width: 480px) {
  .place-list li { flex-wrap: wrap; gap: 4px 14px; }
  .place-list strong { width: auto; }
}

/* ============================================
   TEASER VIDEO SECTION
   ============================================ */
.teaser-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}
.teaser-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.teaser-section .eyebrow.center { color: var(--gold); }
.teaser-section h2 {
  color: var(--ivory);
  margin-bottom: 50px;
}
.teaser-section h2 em { color: rgba(255,253,248,0.65); }
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.6);
  background: #000;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============================================
   LANDSCAPES — vraies photos Cap Fréhel
   ============================================ */
.landscapes {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.landscape-row {
  display: grid;
  gap: 24px;
}
.landscape-row:nth-child(1) { grid-template-columns: 1fr 1.4fr; }
.landscape-row:nth-child(2) { grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) {
  .landscape-row { grid-template-columns: 1fr !important; }
}
.landscapes figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
}
.landscapes figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.landscapes figure:hover img {
  transform: scale(1.04);
  filter: brightness(.92);
}
.landscape-tall { aspect-ratio: 4/5; }
.landscape-wide { aspect-ratio: 16/10; }
.landscape-square { aspect-ratio: 4/3; }
.landscape-pano { aspect-ratio: 21/9; }
.landscape-row-pano { grid-template-columns: 1fr !important; }
.landscapes figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 50px 30px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,30,28,.85) 100%);
  color: #fff;
}
.lc-title {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.lc-sub {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  opacity: .88;
  max-width: 480px;
}

/* ============================================
   FULL BAND
   ============================================ */
.full-band {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.full-band-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.full-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(31,42,40,.78) 0%, rgba(31,42,40,.4) 100%);
}
.full-band-text {
  position: relative; z-index: 2;
  max-width: 620px;
  color: #fff;
}
.light { color: #fff !important; }

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 1000px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .amenities { grid-template-columns: 1fr; } }
.am-card {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: all .4s ease;
}
.am-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(20,30,28,.18);
  border-color: var(--gold);
}
.am-icon {
  font-size: 36px;
  color: var(--gold);
  font-family: var(--serif);
  margin-bottom: 18px;
}
.am-card h4 { font-size: 19px; margin-bottom: 10px; }
.am-card p { font-size: 14px; color: var(--moss-soft); margin: 0; line-height: 1.55; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  padding: 36px 30px;
  background: var(--cream);
  position: relative;
}
.review::before {
  content: '“';
  position: absolute; top: -24px; left: 24px;
  font-family: var(--serif); font-size: 100px; color: var(--gold);
  line-height: 1;
}
.review blockquote {
  font-family: var(--serif);
  font-size: 18px; font-style: italic; line-height: 1.6;
  color: var(--moss);
  margin-bottom: 22px;
}
.review figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.r-name { font-weight: 500; color: var(--ink); }
.r-date { font-size: 13px; color: var(--moss-soft); letter-spacing: 0.06em; text-transform: uppercase; }

.r-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
  text-align: center;
}
@media (max-width: 700px) { .r-stats { grid-template-columns: repeat(3, 1fr); } }
.r-stats div {
  padding: 24px 8px;
  border-left: 1px solid var(--line);
}
.r-stats div:first-child { border-left: none; }
.r-stats strong {
  display: block;
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--moss); margin-bottom: 6px;
}
.r-stats span {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moss-soft);
}

/* ============================================
   HOST
   ============================================ */
.host-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 880px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding-right: 40px;
  position: relative;
  font-weight: 500;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .3s ease, color .2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--moss); }
.faq-item summary:hover::after { color: var(--gold-dark); }
.faq-item p {
  margin: 18px 0 0;
  color: var(--moss);
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--sans);
  max-width: 760px;
}
.faq-item p a {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
}

/* ============================================
   BOOK FORM
   ============================================ */
.book-form {
  max-width: 760px;
  margin: 60px auto 30px;
  padding: 50px;
  background: var(--cream);
  box-shadow: 0 40px 80px -30px rgba(20,30,28,.2);
}
@media (max-width: 600px) { .book-form { padding: 30px 22px; } }
.book-form .row {
  display: grid; gap: 20px; margin-bottom: 20px;
}
.book-form .row:first-child { grid-template-columns: 1fr 1fr; }
.book-form .row:nth-child(2) { grid-template-columns: 1fr 1fr 0.6fr; }
@media (max-width: 600px) {
  .book-form .row { grid-template-columns: 1fr !important; }
}
.book-form label {
  display: block;
}
.book-form label span {
  display: block;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 8px;
}
.book-form input,
.book-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  transition: border .3s;
}
.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--moss);
}
.book-form textarea { resize: vertical; }

.book-cta {
  margin-top: 14px;
  width: 100%;
  padding: 20px;
  background: var(--moss);
  color: var(--ivory);
  border: none;
  font-family: var(--sans);
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
}
.book-cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(20,30,28,.4);
}
.book-note {
  margin-top: 18px;
  text-align: center;
  font-size: 13px; color: var(--moss-soft); font-style: italic;
}

.contact-direct {
  text-align: center; margin-top: 30px;
  color: var(--moss);
}
.contact-direct p { margin: 6px 0; }
.contact-lines a {
  color: var(--gold-dark); border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.contact-lines .dot { margin: 0 14px; opacity: .4; }

/* ============================================
   MAP
   ============================================ */
.map-section {
  background: var(--cream);
  padding: 0 0 0 0;
}
.map-inner {
  position: relative;
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr;
}
@media (max-width: 820px) {
  .map-inner { grid-template-columns: 1fr; }
}
.map-inner iframe {
  width: 100%; height: 480px; border: none;
  filter: grayscale(30%) saturate(.9);
}
.map-card {
  padding: clamp(40px, 5vw, 70px);
  background: var(--ink);
  color: var(--ivory);
}
.map-card h3 {
  color: var(--ivory);
  font-size: 32px;
  margin-bottom: 18px;
}
.map-card .eyebrow { color: var(--gold); }
.map-card p { color: rgba(255,253,248,.78); margin-bottom: 14px; }
.map-fine { font-style: italic; font-size: 14px; opacity: .7; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px var(--pad-x) 40px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-brand {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 30px; margin-bottom: 50px;
}
.footer-brand .brand-name {
  font-family: var(--serif); font-size: 28px;
}
.footer-loc {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: .65;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 700px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-cols h5 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.footer-cols p { color: rgba(255,253,248,.7); font-size: 15px; line-height: 1.7; }
.footer-cols a {
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: color .2s;
}
.footer-cols a:hover { color: var(--gold); }
.photo-credits {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,253,248,.45);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  font-style: italic;
}
.photo-credits a {
  color: rgba(255,253,248,.7);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.photo-credits a:hover { color: var(--gold); }
.footer-fine {
  font-size: 12px; letter-spacing: 0.1em;
  color: rgba(255,253,248,.45); text-align: center;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-image { animation: none; }
  .scroll-hint { animation: none; }
}
