/* ============================================
   OBSIM RESIDENCE — SHARED STYLES
   ============================================ */

:root {
  /* Backgrounds — clean sun-bleached tones (mid-day light) */
  --ivory: #F4ECDC;
  --cream: #ECE0C6;
  --warm-white: #FBF7EE;
  --bone: #DDC9A6;

  /* Brand colors — blue & warm (mid-day palette) */
  --terracotta: #1E5A8E;       /* Sapphire — primary brand color */
  --clay: #143F66;             /* Deep navy — darker variant */
  --hibiscus: #D87E5A;         /* Warm coral accent */
  --marigold: #E8B595;         /* Soft peach — warm banner */
  --emerald: #142B45;          /* Deep navy — bold sections */
  --emerald-deep: #0B1D33;     /* Darkest navy */
  --jade: #6DA5D2;             /* Soft sky blue */

  /* Darks */
  --espresso: #2A1F1A;
  --charcoal: #4A3D34;

  /* Accents */
  --brass: #C89B4D;
  --muted-brass: #9B7740;
  --sage: #6DA5D2;
  --line: rgba(20, 43, 69, 0.18);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Outfit', system-ui, -apple-system, sans-serif;

  --pad: clamp(1.25rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--espresso);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* TYPOGRAPHY */
.display {
  font-family: var(--display);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted-brass);
}

.section-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted-brass);
  letter-spacing: 0.04em;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.5rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(250, 246, 236, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--espresso);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.logo .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  transform: translateY(-4px);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  color: var(--espresso);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--espresso);
  color: var(--warm-white);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* BUTTONS */
.btn {
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--espresso);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--espresso);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .arrow { transform: translateX(4px); }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 9rem var(--pad) 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.15fr 1fr;
    align-items: end;
    gap: 5rem;
  }
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--muted-brass);
}

.hero-headline {
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  margin-bottom: 2rem;
  color: var(--espresso);
}

.hero-headline .accent {
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 38ch;
  color: var(--charcoal);
  margin-bottom: 3rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  height: clamp(380px, 60vh, 640px);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.hero-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  padding: 1.1rem 1.4rem;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.hero-tag .loc {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--clay);
}

/* PAGE HERO (interior pages, shorter) */
.page-hero {
  padding: 11rem var(--pad) 5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
  }
}

.page-hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  color: var(--espresso);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 50ch;
}

/* MARQUEE */
.marquee {
  background: var(--espresso);
  color: var(--bone);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  padding-left: 4rem;
}

.marquee-item {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item .star { color: var(--terracotta); font-size: 0.9rem; }
.marquee-item .it { font-style: italic; color: var(--brass); }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION */
.section {
  padding: 6rem var(--pad);
  position: relative;
}

.section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: baseline;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  max-width: 18ch;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 50ch;
  line-height: 1.7;
}

/* INTRO */
.intro {
  background: var(--ivory);
  padding: 7rem var(--pad);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
  }
}

.intro-eyebrow {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.intro-eyebrow::before {
  content: '01';
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
}

.intro-heading {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.intro-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.intro-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pillar-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 350;
  color: var(--clay);
  font-variation-settings: "opsz" 144;
}

.pillar-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* PROPERTY CARDS */
.property {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .property {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    margin-bottom: 7rem;
  }
  .property.reverse {
    grid-template-columns: 1fr 1.1fr;
  }
  .property.reverse .property-visual { order: 2; }
}

.property-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
}

.property-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.property:hover .property-visual img { transform: scale(1.04); }

.property-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--warm-white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}

.property-content { padding: 1rem 0; }

.property-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.property-label .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1rem;
}

.property-name {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.property-name .small {
  display: block;
  font-size: 0.55em;
  font-style: italic;
  color: var(--muted-brass);
  margin-top: 0.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.property-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 2rem;
  max-width: 50ch;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.feat::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

.property-cta {
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--espresso);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.property-cta:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* UNITS */
.units { background: var(--ivory); }

.units-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  .units-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .units-grid { grid-template-columns: repeat(4, 1fr); }
}

.unit {
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--line);
}

.unit:hover { transform: translateY(-6px); }

.unit-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cream);
}

.unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.unit:hover .unit-image img { transform: scale(1.06); }

.unit-body { padding: 1.5rem 1.5rem 1.75rem; }

.unit-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.unit-type {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted-brass);
}

.unit-count {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--clay);
}

.unit-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--espresso);
}

.unit-desc {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.55;
}

/* AMENITIES */
.amenities {
  background: var(--emerald);
  color: var(--bone);
  padding: 7rem var(--pad);
}

.amenities .section-header { border-bottom-color: rgba(232, 223, 201, 0.18); }
.amenities .section-title,
.amenities .display { color: var(--bone); }
.amenities .section-lead { color: rgba(232, 223, 201, 0.75); }
.amenities .eyebrow { color: var(--brass); }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(232, 223, 201, 0.12);
}

@media (min-width: 700px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

.amenity {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.amenity-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
  transition: all 0.8s ease;
}

.amenity:hover .amenity-img img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 29, 51, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.amenity-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--brass);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.amenity-name {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
}

/* STANDARDS */
.standards { padding: 7rem var(--pad); background: var(--warm-white); }

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid > .standard:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

.standard {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .standard { padding: 2.25rem 2.5rem 2.25rem 0; }
  .standard:nth-child(even) { padding-left: 2.5rem; padding-right: 0; }
}

.standard-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.1rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  min-width: 2.5rem;
}

.standard-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.standard-desc {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* QUOTE */
.quote {
  background: var(--terracotta);
  color: var(--bone);
  padding: 7rem var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote::before, .quote::after {
  content: '"';
  position: absolute;
  font-family: var(--display);
  font-size: 18rem;
  font-style: italic;
  line-height: 1;
  color: var(--clay);
  opacity: 0.4;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.quote::before { top: 1rem; left: 3vw; }
.quote::after { content: '"'; bottom: -8rem; right: 3vw; }

.quote-text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 350;
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

.quote-text em {
  font-style: italic;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* CONTACT */
.contact { padding: 7rem var(--pad); background: var(--ivory); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 2rem;
  color: var(--espresso);
}

.contact-lead {
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 40ch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-brass);
}

.contact-value {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--espresso);
}

.form {
  background: var(--warm-white);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--muted-brass);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--espresso);
  font-family: var(--body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--terracotta);
}

textarea { min-height: 90px; resize: vertical; }

.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--espresso);
  color: var(--warm-white);
  border: none;
  padding: 1.1rem;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.form-submit:hover { background: var(--terracotta); }

/* FOOTER */
.footer {
  background: var(--espresso);
  color: var(--bone);
  padding: 5rem var(--pad) 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 223, 201, 0.18);
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-brand {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.footer-text {
  font-size: 0.92rem;
  color: rgba(232, 223, 201, 0.75);
  line-height: 1.7;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--brass);
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a, .footer-col span {
  color: rgba(232, 223, 201, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(232, 223, 201, 0.55);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.nav-lang a {
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.3rem 0.1rem;
  font-family: var(--body);
}

.nav-lang a.active,
.nav-lang a:hover {
  color: var(--terracotta);
}

.nav-lang .sep {
  color: var(--muted-brass);
  opacity: 0.5;
  font-family: var(--display);
}

/* On mobile, language toggle stays visible while menu hides */
@media (max-width: 860px) {
  .nav-lang { margin-right: 0.5rem; }
}

/* ============================================
   MARIGOLD BANNER — Lively yellow accent strip
   ============================================ */
.banner-marigold {
  background: var(--marigold);
  color: var(--espresso);
  padding: 5rem var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-marigold::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.banner-marigold .display {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 1.5rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.banner-marigold .display .italic {
  color: var(--clay);
}

.banner-marigold p {
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.banner-marigold .btn-primary {
  background: var(--terracotta);
  color: var(--warm-white);
  position: relative;
  z-index: 1;
}

.banner-marigold .btn-primary:hover {
  background: var(--clay);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* Brighten hover state on primary buttons throughout */
.btn-primary:hover {
  background: var(--terracotta);
}

/* Use hibiscus on quote section for extra pop */
.quote {
  background: var(--terracotta);
}

.quote::before, .quote::after {
  color: var(--clay);
}
