/* =========================================================
   MAGLIE PALACE SALENTO — Institutional Investment Teaser
   ========================================================= */

:root {
  --color-stone: #f4efe7;        /* pietra leccese */
  --color-cream: #faf7f1;
  --color-ink: #1a1a1a;
  --color-charcoal: #3a3a3a;
  --color-mute: #6b6b6b;
  --color-rule: #d9d2c4;
  --color-gold: #b8956a;
  --color-gold-deep: #8b6e4e;

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-cream);
  -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 .2s ease, opacity .2s ease; }
a:hover { opacity: .7; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 1.2rem;
}

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

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 500; }

p { margin-bottom: 1.1em; max-width: 62ch; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.45;
  max-width: 52ch;
}

/* =========================================================
   LAYOUT
   ========================================================= */

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

section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section-cream { background: var(--color-cream); }
.section-stone { background: var(--color-stone); }
.section-dark  { background: var(--color-ink); color: var(--color-stone); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-stone); }
.section-dark .eyebrow { color: var(--color-gold); }
.section-dark .lead { color: #d9d2c4; }

.rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  border: none;
  margin: 0 0 2.5rem 0;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 26, 26, 0);
  transition: background .35s ease, padding .35s ease;
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px var(--pad);
}

.brand {
  color: #fff;
  font-family: var(--serif);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand .brand-name {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .5em;
  color: var(--color-gold);
}

.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--color-gold);
}
.lang-switch a.active { color: #fff; }
.lang-switch .sep { opacity: .4; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 110; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url('../img/hero-facade.jpg') center/cover no-repeat;
  filter: brightness(0.7);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 10vw, 130px);
  max-width: 880px;
}

.hero h1 {
  color: #fff;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: 0.005em;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.8rem;
}

.hero-location {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translate(-50%, 0); opacity: .7; }
  50%     { transform: translate(-50%, 6px); opacity: 1; }
}

/* =========================================================
   GRID HELPERS
   ========================================================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* =========================================================
   LEGACY SECTION (Aldo Moro)
   ========================================================= */

.legacy {
  padding-top: clamp(100px, 15vw, 180px);
  padding-bottom: clamp(100px, 15vw, 180px);
}

.legacy .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.4;
  color: var(--color-charcoal);
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}
.legacy .quote::before,
.legacy .quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--color-gold);
  position: absolute;
  font-family: serif;
  line-height: 1;
}
.legacy .quote::before { left: -10px; top: -10px; }
.legacy .quote::after { right: -10px; bottom: -30px; }

.legacy-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-charcoal);
}
.legacy-text p { max-width: none; margin-left: auto; margin-right: auto; }

/* =========================================================
   ASSET / VISION
   ========================================================= */

.vision-image {
  position: relative;
  background: var(--color-ink);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Asset overview board — full width, shown in full (no crop) */
.asset-figure {
  margin: clamp(38px, 5vw, 60px) 0 0;
  width: 100%;
}
.asset-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-rule);
  background: var(--color-cream);
}

/* =========================================================
   KEY HIGHLIGHTS
   ========================================================= */

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--color-rule);
  margin-top: 3rem;
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}
.highlight {
  background: var(--color-cream);
  padding: 36px 28px;
  text-align: left;
}
.section-stone .highlight { background: var(--color-stone); }

.highlight .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--color-gold-deep);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 12px;
}
.highlight .label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-mute);
  margin-bottom: 8px;
}
.highlight p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-charcoal);
  margin: 0;
}

/* Institutional highlights (no big numbers, label-driven) */
.highlight-i .mark {
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 18px;
}
.highlight-i .title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.highlight-i p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0;
}

/* =========================================================
   VISION & CONCEPT VISUALIZATIONS — 6 slots
   ========================================================= */

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
@media (max-width: 880px) { .vision-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vision-grid { grid-template-columns: 1fr; } }

.vision-slot {
  background: var(--color-stone);
  border: 1px solid var(--color-rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
a.vision-slot { cursor: zoom-in; }
a.vision-slot:hover { opacity: 1; }
.vision-slot .frame {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #efeae0 0%, #e1d9c6 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-deep);
}
.vision-slot .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.vision-slot:hover .frame img { transform: scale(1.04); }

.vision-slot .frame .placeholder {
  text-align: center;
  font-family: var(--sans);
  letter-spacing: .25em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  opacity: .55;
  padding: 20px;
  line-height: 1.6;
}
.vision-slot .frame .placeholder strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: none;
  font-style: italic;
  color: var(--color-gold-deep);
  margin-bottom: 8px;
  opacity: .75;
}

.vision-slot .body {
  padding: 22px 24px 26px;
  background: var(--color-cream);
}
.vision-slot .body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.vision-slot .body p {
  font-size: 13.5px;
  color: var(--color-charcoal);
  line-height: 1.55;
  margin: 0;
}

.vision-disclaimer {
  margin-top: 2.5rem;
  padding: 22px 28px;
  border-left: 2px solid var(--color-gold);
  background: rgba(184, 149, 106, 0.06);
  font-size: 13.5px;
  font-style: italic;
  color: var(--color-charcoal);
  max-width: 880px;
  line-height: 1.6;
}

/* =========================================================
   MAPPA SVG SALENTO
   ========================================================= */

.map-wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 880px) { .map-wrap { grid-template-columns: 1fr; } }

.salento-map {
  width: 100%;
  height: auto;
  background: var(--color-cream);
  border: 1px solid var(--color-rule);
  padding: 30px;
}
.salento-map text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  fill: var(--color-charcoal);
}
.salento-map .label-main {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  fill: var(--color-ink);
  letter-spacing: 0;
}
.salento-map .coast { fill: none; stroke: var(--color-rule); stroke-width: 1; }
.salento-map .dot { fill: var(--color-charcoal); }
.salento-map .dot-main { fill: var(--color-gold); stroke: var(--color-ink); stroke-width: 2; }
.salento-map .ring {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1;
  opacity: .5;
  transform-origin: center;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.6); opacity: 0; }
}

.map-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-charcoal);
  line-height: 1.45;
}
.map-caption .eyebrow { margin-bottom: 1rem; }

/* MiniPIA callout */
.minipia-callout {
  background: var(--color-ink);
  color: var(--color-stone);
  padding: clamp(40px, 6vw, 80px);
  margin: 4rem 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.minipia-callout .pct {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}
.minipia-callout h3 { color: var(--color-stone); margin-bottom: .8rem; }
.minipia-callout p {
  color: #d9d2c4;
  font-size: 0.98rem;
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 720px) {
  .minipia-callout { grid-template-columns: 1fr; text-align: center; }
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 3rem;
  height: clamp(420px, 60vw, 720px);
}
.gallery a {
  display: block;
  overflow: hidden;
  background: var(--color-ink);
  position: relative;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.gallery a:hover img { transform: scale(1.05); }

.gallery .g1 { grid-row: 1/3; }
.gallery .g2 { grid-column: 2; grid-row: 1; }
.gallery .g3 { grid-column: 3; grid-row: 1; }
.gallery .g4 { grid-column: 2; grid-row: 2; }
.gallery .g5 { grid-column: 3; grid-row: 2; }

@media (max-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery .g1 { grid-column: 1/3; grid-row: 1; height: 280px; }
  .gallery .g2, .gallery .g3, .gallery .g4, .gallery .g5 { grid-row: auto; grid-column: auto; height: 180px; }
}

/* =========================================================
   FULL-BLEED IMAGE
   ========================================================= */

.full-image {
  width: 100%;
  height: clamp(360px, 60vh, 720px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================
   WHY SALENTO
   ========================================================= */

.salento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.salento-grid > div {
  padding: 32px;
  border-right: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}
.salento-grid > div:nth-child(3n) { border-right: none; }
.salento-grid > div:nth-last-child(-n+3) { border-bottom: none; }

.salento-grid h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-ink);
}
.salento-grid .km {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 12px;
}
.salento-grid p {
  font-size: 14px;
  color: var(--color-charcoal);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .salento-grid { grid-template-columns: 1fr 1fr; }
  .salento-grid > div { border-right: 1px solid var(--color-rule) !important; border-bottom: 1px solid var(--color-rule) !important; }
  .salento-grid > div:nth-child(2n) { border-right: none !important; }
}

/* =========================================================
   PARTNERSHIP / TRANSACTION
   ========================================================= */

.struct-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.struct-list li {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  font-size: 0.98rem;
  letter-spacing: .03em;
}
.struct-list li:last-child { border-right: none; }
.struct-list li .n {
  font-family: var(--serif);
  font-style: italic;
  color: var(--color-gold);
  margin-right: 14px;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-top: 2.5rem;
}
.form-grid .full { grid-column: 1/3; }
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
}

label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-mute);
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--color-rule);
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--color-ink);
  transition: border-color .2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}
textarea { resize: vertical; min-height: 120px; }

.btn {
  display: inline-block;
  padding: 16px 38px;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  border: 1px solid var(--color-ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: transparent; color: var(--color-ink); opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}
.btn-outline:hover { background: var(--color-ink); color: #fff; }

.btn-gold {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
}
.btn-gold:hover { background: transparent; color: var(--color-gold); }

.btn-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.privacy-note {
  font-size: 12px;
  color: var(--color-mute);
  margin-top: 1.5rem;
  line-height: 1.5;
}

.form-status {
  margin-top: 1.5rem;
  font-size: 14px;
  font-weight: 500;
  min-height: 22px;
}
.form-status.success { color: #2d7a3e; }
.form-status.error { color: #a83232; }

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #0d0d0d;
  color: #8b8580;
  padding: 70px var(--pad) 40px;
  font-size: 13px;
  line-height: 1.7;
}
footer .footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 720px) {
  footer .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
footer h5 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-stone);
  margin-bottom: 14px;
}
footer a:hover { color: var(--color-gold); opacity: 1; }
footer .legal {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .08em;
  color: #5a5650;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   LIGHTBOX (semplice)
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox .close {
  position: absolute; top: 24px; right: 30px;
  color: #fff; font-size: 28px; cursor: pointer;
  background: none; border: none;
  width: 40px; height: 40px;
}

/* =========================================================
   NEW MEDIA — Salento map image, destination photos, architecture
   ========================================================= */

.map-figure { margin-top: 3rem; }
.map-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-rule);
  background: var(--color-cream);
}

/* Salento destination card photos (Layout A) */
.salento-grid > div { overflow: hidden; }
.salento-grid .dest-photo {
  display: block;
  width: calc(100% + 64px);
  margin: -32px -32px 22px;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 720px) {
  .salento-grid .dest-photo { height: 160px; }
}

/* Architectural Vision section */
.arch-vision {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(34px, 5vw, 60px);
}
.arch-figure { margin: 0; width: 100%; }
.arch-figure.arch-narrow { max-width: 660px; }
.arch-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-rule);
  background: var(--color-cream);
}
.arch-figure figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
}
