/* ==========================================================================
   Sunshine Coast Properties — Naples, FL
   Warm coastal visual system: cream base, deep navy, brass accent, soft teal
   ========================================================================== */

:root {
  --cream: #FAF6EF;
  --cream-deep: #F3EDE0;
  --white: #FFFFFF;
  --navy: #1C2B45;
  --navy-soft: #33415C;
  --brass: #C9A24B;
  --brass-dark: #AD8A38;
  --teal: #4C7C7C;
  --teal-tint: #E4EEEC;
  --ink-muted: #5C6778;
  --line: #E6DECB;
  --shadow: 0 10px 30px rgba(28, 43, 69, 0.10);
  --shadow-soft: 0 4px 16px rgba(28, 43, 69, 0.07);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Segoe UI", -apple-system, sans-serif;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.32rem; }

p { color: var(--navy-soft); }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--brass-dark); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--cream-deep); }
.section-white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }

.divider-brass {
  width: 56px; height: 3px; background: var(--brass);
  border: none; margin: 20px 0 0;
}
.centered .divider-brass { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}

.btn-gold { background: var(--brass); color: var(--white); }
.btn-gold:hover { background: var(--brass-dark); color: var(--white); transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-sm { padding: 10px 20px; font-size: 0.87rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo .logo-name {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 600;
  color: var(--navy);
}
.logo .logo-tag {
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--brass-dark); }
.main-nav a.active { border-bottom-color: var(--brass); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex; flex-direction: column; align-items: flex-end;
  line-height: 1.25; color: var(--navy); font-weight: 600; font-size: 1rem;
}
.header-phone small {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.header-phone:hover { color: var(--brass-dark); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 9px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy);
  margin: 5px 0; transition: 0.25s; border-radius: 2px;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a.active { border-bottom-color: var(--brass); }
  .nav-toggle { display: block; }
  .header-phone small { display: none; }
}

@media (max-width: 560px) {
  .header-phone { display: none; }
  .header-actions .btn { padding: 10px 16px; font-size: 0.82rem; }
}

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

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,43,69,0.42) 0%, rgba(28,43,69,0.28) 45%, rgba(28,43,69,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 90px 0; }
.hero h1 { color: var(--white); max-width: 720px; }
.hero .hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 1.16rem;
  max-width: 560px;
  margin-top: 18px;
}
.hero-page { min-height: 420px; }
.hero-page .hero-content { padding: 60px 0; }

/* Hero search bar */

.hero-search {
  margin-top: 38px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  gap: 10px;
  max-width: 860px;
  flex-wrap: wrap;
}
.hero-search .field { flex: 1 1 160px; min-width: 140px; }
.hero-search label {
  display: block;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin: 4px 0 2px 12px;
}
.hero-search input, .hero-search select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--navy);
  padding: 4px 12px 8px;
  outline: none;
}
.hero-search .search-btn { flex: 0 0 auto; align-self: stretch; display: flex; }
.hero-search .search-btn .btn { align-self: center; }

@media (max-width: 700px) {
  .hero-search { flex-direction: column; }
  .hero-search .search-btn .btn { width: 100%; }
}

/* ---------- Stats strip ---------- */

.stats-strip { background: var(--navy); color: var(--white); padding: 52px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--brass);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards / listings ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.listing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.listing-photo { position: relative; aspect-ratio: 4 / 2.8; overflow: hidden; }
.listing-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.listing-card:hover .listing-photo img { transform: scale(1.045); }

.tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.tag.tag-gold { background: var(--brass); }

.listing-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.listing-price { font-family: var(--serif); font-size: 1.42rem; color: var(--navy); }
.listing-addr { font-weight: 600; font-size: 0.98rem; color: var(--navy); }
.listing-hood { font-size: 0.85rem; color: var(--teal); font-weight: 600; letter-spacing: 0.04em; }
.listing-specs {
  display: flex; gap: 16px; margin-top: 6px;
  font-size: 0.87rem; color: var(--ink-muted);
  border-top: 1px solid var(--line); padding-top: 12px;
}
.listing-actions { display: flex; gap: 10px; margin-top: 16px; }
.listing-actions .btn { flex: 1; padding: 11px 10px; font-size: 0.83rem; }

/* ---------- Neighborhood carousel ---------- */

.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) var(--cream-deep);
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 3px; }
.carousel::-webkit-scrollbar-track { background: var(--cream-deep); }

.hood-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 3.6;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.hood-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hood-card:hover img { transform: scale(1.05); }
.hood-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,43,69,0) 35%, rgba(28,43,69,0.85) 100%);
}
.hood-card-body { position: relative; z-index: 2; padding: 22px; }
.hood-card-body h3 { color: var(--white); font-size: 1.4rem; }
.hood-card-body p { color: rgba(255,255,255,0.88); font-size: 0.88rem; margin-top: 6px; }

.carousel-nav { display: flex; gap: 10px; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--navy); background: transparent;
  color: var(--navy); font-size: 1.1rem; cursor: pointer;
  transition: 0.2s;
}
.carousel-nav button:hover { background: var(--navy); color: var(--white); }

/* Neighborhood grid card (communities page) */
.hood-grid-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.hood-grid-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.hood-grid-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hood-grid-body .hood-flavor {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
}
.hood-grid-body p { font-size: 0.94rem; flex: 1; }
.hood-link { font-weight: 600; font-size: 0.92rem; color: var(--brass-dark); }
.hood-link:hover { color: var(--navy); }

/* ---------- Agents ---------- */

.agents-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .agents-row { grid-template-columns: 1fr; } }

.agent-card { display: flex; gap: 24px; align-items: flex-start; }
.agent-card img {
  width: 150px; height: 150px; object-fit: cover;
  border-radius: 50%; border: 4px solid var(--white);
  box-shadow: var(--shadow-soft); flex-shrink: 0;
}
.agent-card h3 { font-size: 1.45rem; }
.agent-role { color: var(--brass-dark); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 2px 0 10px; }
.agent-card p { font-size: 0.95rem; }
@media (max-width: 520px) { .agent-card { flex-direction: column; } }

/* About page bio blocks */
.bio-block { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.bio-block.reverse { grid-template-columns: 1fr 340px; }
.bio-block.reverse .bio-photo { order: 2; }
.bio-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (max-width: 860px) {
  .bio-block, .bio-block.reverse { grid-template-columns: 1fr; }
  .bio-block.reverse .bio-photo { order: 0; }
  .bio-photo img { max-width: 340px; }
}

/* ---------- Testimonials ---------- */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--brass); letter-spacing: 3px; font-size: 1rem; }
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
}
.testimonial-who { display: flex; flex-direction: column; }
.testimonial-who strong { font-size: 0.95rem; }
.testimonial-who span { font-size: 0.82rem; color: var(--ink-muted); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 76px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.cta-band.has-photo::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(28,43,69,0.82);
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 16px auto 30px; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 560px) { .form-card { padding: 26px 20px; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.form-field label {
  display: block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--brass); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 0.8rem; color: var(--ink-muted); margin-top: 14px; }

.form-success {
  display: none;
  background: var(--teal-tint);
  border: 1.5px solid var(--teal);
  color: var(--navy);
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 18px;
  font-size: 0.95rem;
}
.form-success.visible { display: block; }

/* ---------- Process steps (sell page) ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brass); color: var(--white);
  font-family: var(--serif); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.93rem; }

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--brass); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 0.95rem; }

/* ---------- Property detail ---------- */

.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10.5; }
.gallery-side { display: grid; grid-template-rows: repeat(2, 1fr); gap: 14px; }
.gallery-side img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 16/10; cursor: pointer; transition: opacity 0.2s; }
.gallery-side img:hover { opacity: 0.85; }
.gallery-thumbs { display: flex; gap: 14px; margin-top: 14px; }
.gallery-thumbs img {
  width: 110px; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; cursor: pointer; border: 2.5px solid transparent; transition: 0.2s;
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { border-color: var(--brass); }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr; } .gallery-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; } }

.detail-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.spec-pills { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.spec-pill {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 9px 20px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
}
.feature-list { columns: 2; gap: 32px; margin: 18px 0; padding-left: 20px; }
.feature-list li { font-size: 0.95rem; color: var(--navy-soft); margin-bottom: 8px; break-inside: avoid; }
@media (max-width: 620px) { .feature-list { columns: 1; } }

.map-placeholder {
  background: var(--teal-tint);
  border: 1.5px dashed var(--teal);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--teal); font-weight: 600; gap: 8px; text-align: center; padding: 20px;
}
.map-placeholder svg { width: 42px; height: 42px; }

.calendar-placeholder {
  background: var(--cream);
  border: 1.5px dashed var(--brass);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--brass-dark); font-weight: 600; gap: 8px; text-align: center; padding: 24px;
}

.sticky-side { position: sticky; top: 108px; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: 96px 0 88px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,43,69,0.55), rgba(28,43,69,0.65));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 600px; margin-top: 14px; font-size: 1.1rem; }

/* ---------- Filter bar (buy page) ---------- */

.filter-bar {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin-top: -46px;
  position: relative;
  z-index: 5;
}
.filter-bar label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 5px;
}
.filter-bar input, .filter-bar select {
  width: 100%; font-family: var(--sans); font-size: 0.93rem;
  color: var(--navy); border: 1.5px solid var(--line);
  border-radius: 6px; padding: 11px 12px; background: var(--cream); outline: none;
}
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--brass); }
@media (max-width: 1000px) { .filter-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .filter-bar { grid-template-columns: 1fr; } }

/* ---------- Video / lifestyle section ---------- */

.lifestyle {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  color: var(--white); text-align: center;
}
.lifestyle::before { content: ""; position: absolute; inset: 0; background: rgba(28,43,69,0.45); }
.lifestyle-inner { position: relative; z-index: 2; max-width: 560px; padding: 40px 24px; }
.lifestyle-inner h2 { color: var(--white); }
.lifestyle-inner p { color: rgba(255,255,255,0.9); margin: 14px 0 26px; }
.play-btn {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px; cursor: pointer; transition: 0.25s;
  backdrop-filter: blur(4px);
}
.play-btn:hover { background: var(--brass); border-color: var(--brass); transform: scale(1.06); }
.play-btn svg { width: 26px; height: 26px; fill: var(--white); margin-left: 4px; }

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

.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-name { color: var(--white); font-family: var(--serif); font-size: 1.4rem; }
.footer-brand .logo-tag { color: var(--brass); font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 16px; max-width: 300px; }

.site-footer h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-links a:hover { color: var(--brass); }

.footer-contact p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-bottom: 10px; }
.footer-contact a { color: var(--white); font-weight: 600; }
.footer-contact a:hover { color: var(--brass); }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); transition: 0.2s;
}
.social-row a:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }
.social-row svg { width: 16px; height: 16px; fill: currentColor; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 26px 0 34px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-legal .eho { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-legal .eho svg { width: 26px; height: 26px; fill: rgba(255,255,255,0.6); flex-shrink: 0; }

/* ---------- Misc ---------- */

.breadcrumb { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--teal); }

.awards-strip {
  display: flex; flex-wrap: wrap; gap: 18px 40px;
  justify-content: center; align-items: center;
}
.award-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy-soft);
}
.award-item svg { width: 22px; height: 22px; fill: var(--brass); flex-shrink: 0; }

.text-center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-2 { margin-bottom: 24px; }

.error-hero { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.error-hero .big { font-family: var(--serif); font-size: clamp(5rem, 14vw, 9rem); color: var(--brass); line-height: 1; }
