/* ============================================================
   FIORENTE  —  Redesign
   Aesthetic: editorial Italian luxury
   Palette:   midnight navy + ivory + antique brass
   Type:      Cormorant Garamond (display)  ·  Manrope (body)
   ============================================================ */

:root {
  /* Core palette */
  --midnight:      #0b1a2d;
  --deep-sea:      #122238;
  --night:         #050e1b;
  --ivory:         #f5ede0;
  --bone:          #ece3d1;
  --ivory-dim:     #e6dcc6;
  --brass:         #b8935a;
  --brass-light:   #d4b378;
  --brass-dark:    #8a6d3f;
  --ink:           #1a1a1a;
  --ink-soft:      #3a3a3a;
  --mist:          #7a8598;

  /* Typography */
  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Fluid spacing */
  --space-xs:  clamp(0.5rem, 1vw, 0.75rem);
  --space-s:   clamp(1rem, 2vw, 1.5rem);
  --space-m:   clamp(2rem, 4vw, 3rem);
  --space-l:   clamp(3rem, 6vw, 5rem);
  --space-xl:  clamp(5rem, 10vw, 9rem);

  /* Container */
  --container: 1360px;
  --gutter:    clamp(1.5rem, 4vw, 4rem);
}

/* -------------------------  Reset / base  ---------------------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* -----------------------  Type scale  -------------------------- */

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass);
}

.eyebrow--light { color: var(--brass-light); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 9vw, 8rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.italic { font-style: italic; }

p { margin: 0 0 1em; font-size: 1.0625rem; line-height: 1.8; }
.lead {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink-soft);
}

.rule {
  width: 60px;
  height: 1px;
  background: var(--brass);
  border: 0;
  margin: var(--space-m) 0;
}
.rule--center { margin-left: auto; margin-right: auto; }
.rule--light  { background: var(--brass-light); opacity: 0.6; }

/* -----------------------  Layout helpers  ---------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: var(--space-xl) 0; }

.dark {
  background: var(--midnight);
  color: var(--ivory);
}
.dark p { color: var(--ivory-dim); }
.dark .lead { color: var(--ivory); }

/* -----------------------  Navigation  -------------------------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
  mix-blend-mode: normal;
}
.nav.scrolled {
  background: rgba(11, 26, 45, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem var(--gutter);
  border-bottom-color: rgba(184, 147, 90, 0.2);
}
.nav__brand {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  color: var(--ivory);
  font-weight: 500;
}
.nav__menu {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.nav__menu a {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}
.nav__menu a:hover { border-bottom-color: var(--brass); color: var(--brass-light); }

@media (max-width: 800px) {
  .nav__menu { display: none; }
}

/* -------------------------  Hero  ------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) var(--space-l);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/bow-sunpad-top.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: slowZoom 20s ease-out forwards;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 14, 27, 0.55) 0%,
      rgba(5, 14, 27, 0.15) 35%,
      rgba(5, 14, 27, 0.85) 100%),
    linear-gradient(90deg,
      rgba(5, 14, 27, 0.78) 0%,
      rgba(5, 14, 27, 0.45) 42%,
      rgba(5, 14, 27, 0.15) 70%,
      rgba(5, 14, 27, 0.0) 100%);
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1);    }
}

.hero__content {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}

.hero__eyebrow {
  opacity: 0;
  animation: fadeUp 1s ease-out 0.2s forwards;
  text-shadow: 0 2px 16px rgba(5, 14, 27, 0.6);
}
.hero__title {
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.4s forwards;
  text-shadow: 0 4px 40px rgba(5, 14, 27, 0.55);
}
.hero__title .italic-light {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-light);
}
.hero__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  color: var(--ivory-dim);
  max-width: 540px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.7s forwards;
}
.hero__meta {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: var(--space-m);
  border-top: 1px solid rgba(245, 237, 224, 0.15);
  opacity: 0;
  animation: fadeUp 1s ease-out 1s forwards;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__meta-label {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-light); font-weight: 500;
}
.hero__meta-value {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ivory);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brass-light);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: floatY 2.5s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translate(-50%, 0); opacity: 0.7; }
  50%     { transform: translate(-50%, 8px); opacity: 1; }
}

/* ----------------------  Quote band  --------------------------- */

.quote-band {
  background: var(--night);
  color: var(--ivory);
  padding: var(--space-l) 0;
  text-align: center;
}
.quote-band blockquote {
  max-width: 820px; margin: 0 auto;
  padding: 0 var(--gutter);
}
.quote-band .mark {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--brass);
  display: block;
  margin-bottom: 1rem;
}
.quote-band q {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.3;
  quotes: none;
}
.quote-band q::before, .quote-band q::after { content: ''; }
.quote-band cite {
  display: block;
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-style: normal;
}

/* -------------------  Editorial split  ------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: center;
}
.split--reverse .split__text { order: 2; }
.split__text { max-width: 520px; }
.split__image { position: relative; }
.split__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__image--wide img { aspect-ratio: 3 / 2; }
.split__caption {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-m); }
  .split--reverse .split__text { order: 0; }
}

/* ------------------  Specs / dataplate  ------------------------ */

.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 237, 224, 0.18);
  border-bottom: 1px solid rgba(245, 237, 224, 0.18);
  margin-top: var(--space-l);
}
.specs__item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(245, 237, 224, 0.12);
  text-align: left;
}
.specs__item:last-child { border-right: 0; }
.specs__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.75rem;
}
.specs__value {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ivory);
}
.specs__unit {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--mist);
  margin-left: 0.3rem;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  .specs { grid-template-columns: repeat(2, 1fr); }
  .specs__item:nth-child(2) { border-right: 0; }
  .specs__item:nth-child(1), .specs__item:nth-child(2) {
    border-bottom: 1px solid rgba(245, 237, 224, 0.12);
  }
}

/* ---------------------  Staterooms  ---------------------------- */

.staterooms {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: var(--space-l);
}
.stateroom { position: relative; }
.stateroom--master { grid-column: span 7; }
.stateroom--2      { grid-column: span 5; }
.stateroom--3      { grid-column: span 4; }
.stateroom--4      { grid-column: span 4; }
.stateroom--5      { grid-column: span 4; }

.stateroom__image {
  aspect-ratio: 4 / 3;
  background: var(--deep-sea);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 147, 90, 0.15);
}
.stateroom--master .stateroom__image { aspect-ratio: 16 / 10; }
.stateroom__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .5s ease, transform 1.2s ease;
}
.stateroom__image--placeholder img {
  opacity: 0.5;
}
.stateroom:hover .stateroom__image img { transform: scale(1.03); }
.stateroom:hover .stateroom__image--placeholder img { opacity: 0.7; }

.stateroom__placeholder-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.7rem;
  background: rgba(11, 26, 45, 0.85);
  color: var(--brass-light);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
}

.stateroom__meta {
  padding: 1.25rem 0.25rem 0;
  display: flex; justify-content: space-between; align-items: baseline;
}
.stateroom__name {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ivory);
}
.stateroom__type {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.stateroom__desc {
  padding: 0.5rem 0.25rem 0;
  font-size: 0.95rem;
  color: var(--ivory-dim);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .staterooms { grid-template-columns: 1fr 1fr; }
  .stateroom--master, .stateroom--2,
  .stateroom--3, .stateroom--4, .stateroom--5 { grid-column: span 2; }
}

/* --------------------  Features grid  -------------------------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: var(--space-l);
  background: rgba(184, 147, 90, 0.25);
  border: 1px solid rgba(184, 147, 90, 0.25);
}
.feature {
  background: var(--ivory);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .4s ease;
}
.feature:hover { background: var(--bone); }
.feature__number {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.1em;
}
.feature__title {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.15;
}
.feature__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------------------  Crew roster  --------------------------- */

.crew {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  margin-top: var(--space-l);
}
.crew-member {
  padding: 2rem 0;
  border-top: 1px solid rgba(245, 237, 224, 0.18);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.crew-member__role {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--ivory);
  line-height: 1.1;
}
.crew-member__number {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brass-light);
  margin-top: 0.5rem;
  display: block;
}
.crew-member__bio {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ivory-dim);
}
@media (max-width: 900px) { .crew { grid-template-columns: 1fr; } }

/* -------------------  Destinations  ---------------------------- */

.destinations {
  margin-top: var(--space-l);
  column-count: 3;
  column-gap: 3rem;
}
.destination {
  break-inside: avoid;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
}
.destination__name {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
}
.destination__harbour {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-dark);
  text-align: right;
}
@media (max-width: 900px) { .destinations { column-count: 2; } }
@media (max-width: 560px) { .destinations { column-count: 1; } }

/* --------------------  Film / Video  --------------------------- */

.film {
  background: var(--ivory);
  padding: var(--space-xl) 0;
}
.film__player {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: var(--space-l);
  overflow: hidden;
  background: var(--night);
  cursor: pointer;
  border: 1px solid rgba(184, 147, 90, 0.2);
}
.film__poster {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s ease;
}
.film__player:hover .film__poster { transform: scale(1.03); }

.film__player::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 14, 27, 0.1) 0%,
    rgba(5, 14, 27, 0.35) 50%,
    rgba(5, 14, 27, 0.55) 100%);
  pointer-events: none;
  transition: background .4s ease;
}
.film__player:hover::after {
  background: linear-gradient(180deg,
    rgba(5, 14, 27, 0.15) 0%,
    rgba(5, 14, 27, 0.25) 50%,
    rgba(5, 14, 27, 0.45) 100%);
}

.film__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 112px);
  height: clamp(45px, 5.6vw, 79px);
  display: block;
  z-index: 1;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}
.film__play svg { width: 100%; height: 100%; display: block; }
.film__player:hover .film__play { transform: translate(-50%, -50%) scale(1.08); }

.film__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(5, 14, 27, 0.7);
}

.film__player.playing { cursor: default; }
.film__player.playing::after,
.film__player.playing .film__play,
.film__player.playing .film__label { display: none; }
.film__player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* --------------------  La Dolce Vita  -------------------------- */

.dolce-vita {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
  padding: var(--space-xl) 0;
  background-color: var(--night);
  background-image: url('images/bow-celebration.jpg');
  background-size: cover;
  background-position: right center;
  isolation: isolate;
}
.dolce-vita::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(5, 14, 27, 0.92) 0%,
    rgba(5, 14, 27, 0.65) 35%,
    rgba(5, 14, 27, 0.2)  62%,
    rgba(5, 14, 27, 0)    85%);
  z-index: 0;
}
.dolce-vita__content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  z-index: 1;
}
.dolce-vita__content > * { max-width: 560px; }
.dolce-vita__title {
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 2rem;
  text-shadow: 0 2px 24px rgba(5, 14, 27, 0.5);
}
.dolce-vita__title .italic {
  color: var(--brass-light);
  font-weight: 300;
}
.dolce-vita__body {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  color: var(--ivory-dim);
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 12px rgba(5, 14, 27, 0.5);
}
.dolce-vita__body:last-child {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-style: normal;
  font-family: var(--body);
  letter-spacing: 0.02em;
  color: var(--brass-light);
}

@media (max-width: 720px) {
  .dolce-vita {
    background-position: 65% center;
    min-height: 100vh;
  }
  .dolce-vita::before {
    background: linear-gradient(180deg,
      rgba(5, 14, 27, 0.7) 0%,
      rgba(5, 14, 27, 0.85) 60%,
      rgba(5, 14, 27, 0.95) 100%);
  }
}

/* --------------------  Profile strip  -------------------------- */
.profile-strip {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
  background: var(--night);
}
.profile-strip__image {
  position: absolute; inset: 0;
  background-image: url('images/yacht-bow-port.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}
.profile-strip:hover .profile-strip__image { transform: scale(1.06); }
.profile-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 14, 27, 0.25) 0%,
    rgba(5, 14, 27, 0)    30%,
    rgba(5, 14, 27, 0)    70%,
    rgba(5, 14, 27, 0.6)  100%);
  pointer-events: none;
}
.profile-strip__caption {
  position: absolute;
  bottom: 1.75rem;
  left: var(--gutter);
  z-index: 2;
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(5, 14, 27, 0.7);
}

/* --------------------  Gallery grid  --------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: var(--space-l);
}

/* cell size classes — used directly on gallery items */
.g-land-big { grid-column: span 2; grid-row: span 2; } /* big landscape */
.g-land     { grid-column: span 2; grid-row: span 1; } /* landscape 2:1 */
.g-portrait { grid-column: span 1; grid-row: span 2; } /* portrait 1:2 */
.g-square   { grid-column: span 1; grid-row: span 1; } /* square */

.gallery > * {
  position: relative;
  overflow: hidden;
  background: var(--deep-sea);
}
.gallery > * img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.gallery > *:hover img { transform: scale(1.05); }

.gallery__item--placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(184, 147, 90, 0.08) 0,
      rgba(184, 147, 90, 0.08) 2px,
      transparent 2px, transparent 12px),
    var(--deep-sea);
  border: 1px solid rgba(184, 147, 90, 0.25);
  color: var(--brass-light);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-land-big { grid-column: span 2; grid-row: span 2; }
  .g-land     { grid-column: span 2; grid-row: span 1; }
  .g-portrait { grid-column: span 1; grid-row: span 2; }
  .g-square   { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .g-land-big, .g-land, .g-portrait, .g-square {
    grid-column: span 1; grid-row: span 1;
  }
  .gallery > * { aspect-ratio: 3 / 2; height: auto; }
  .g-portrait { aspect-ratio: 3 / 4; }
}

/* -----------------------  Contact  ----------------------------- */

.contact {
  text-align: center;
  padding: var(--space-xl) var(--gutter);
}
.contact__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  line-height: 1.1;
  color: var(--ivory);
  max-width: 900px; margin: 0 auto;
}
.contact__lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ivory-dim);
  max-width: 640px;
  margin: 2rem auto 0;
}
.contact__detail {
  margin-top: var(--space-m);
  display: inline-flex; flex-direction: column; gap: 0.5rem;
}
.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.contact__value {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ivory);
}

/* -----------------------  Footer  ------------------------------ */

footer {
  background: var(--night);
  color: var(--ivory-dim);
  padding: 2.5rem var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(184, 147, 90, 0.18);
}
footer .mark {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  color: var(--ivory);
}
footer small {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--mist);
}

/* -------------------  Section titling  ------------------------ */

.section-head {
  max-width: 900px;
  margin-bottom: var(--space-m);
}
.section-head .eyebrow { display: block; margin-bottom: 1rem; }

/* placeholder badge used inline */
.placeholder-badge {
  display: inline-block;
  padding: 3px 8px;
  margin-left: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  color: var(--brass);
  vertical-align: middle;
}
