/* =========================================================
   Highway City Ventures — Premium Real Estate Website
   Palette pulled directly from the brand logo
   ========================================================= */

:root {
  /* Logo-derived palette */
  --red:          #C8102E;  /* HIGHWAY red */
  --red-deep:     #9A0E22;
  --red-soft:     #E84B5F;
  --navy:         #1B3A6B;  /* CITY navy */
  --navy-deep:    #0F2547;
  --navy-soft:    #2C5494;
  --green:        #1E8B3F;  /* logo border green */
  --green-deep:   #15692E;
  --gold:         #F5B800;  /* PHASE-II yellow */
  --gold-soft:    #FFD24C;
  --orange:       #F26522;
  --cream:        #FFF8EC;
  --ivory:        #FAF5E8;

  /* Surfaces */
  --bg:           var(--navy-deep);
  --bg-soft:      var(--navy);
  --ink:          #1A1A1A;
  --ink-soft:     #3a3f4a;
  --muted:        #6b7280;
  --line:         #ece8db;
  --card:         #ffffff;
  --white:        #ffffff;

  /* Shadows + radii */
  --shadow-sm:    0 4px 12px rgba(15,37,71,.08);
  --shadow-md:    0 12px 32px rgba(15,37,71,.14);
  --shadow-lg:    0 24px 60px rgba(15,37,71,.22);
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;

  /* Typography — Playfair Display everywhere */
  --ff-display:   "Playfair Display", Georgia, serif;
  --ff-body:      "Playfair Display", Georgia, serif;
  --max:          1240px;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1,h2,h3,h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.005em;
  color: var(--navy-deep);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------ NAV ------------------ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: rgba(15,37,71,.96);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.brand img {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; background: var(--white);
  border: 2px solid var(--gold);
  padding: 2px;
}
.brand-text {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: .02em;
}
.brand-text small {
  display: block; font-size: .65rem;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  padding: 10px 16px; color: var(--white); font-size: 1rem;
  font-weight: 500; position: relative;
}
.nav-links a::after {
  content:""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-deep); }
.menu-toggle {
  display: none; color: var(--white); font-size: 1.6rem;
}

@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(15,37,71,.98); backdrop-filter: blur(12px);
    padding: 20px; gap: 2px;
    transform: translateY(-20px); opacity: 0; pointer-events: none;
    transition: .3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ------------------ HERO (clean video, no overlay text) ------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 540px;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* subtle gradient ONLY at top so the nav stays readable — no text overlay */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(15,37,71,.55) 0%, rgba(15,37,71,0) 22%, rgba(15,37,71,0) 100%);
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.85);
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .arrow {
  width: 1px; height: 38px; background: rgba(255,255,255,.6);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50%     { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}

/* page-hero (smaller version for subpages) */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,184,0,.22), transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .crumbs {
  color: var(--gold); letter-spacing: .2em; text-transform: uppercase;
  font-size: .8rem; margin-bottom: 16px; position: relative;
}

/* ------------------ INTRO (the headline + CTAs that used to sit on the video) ------------------ */
.intro {
  background: var(--cream);
  padding: 90px 0 70px;
  text-align: center;
}
.intro .eyebrow {
  display: inline-block; padding: 6px 18px;
  border: 1px solid var(--green); color: var(--green);
  border-radius: 999px;
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 24px;
}
.intro h1 {
  max-width: 880px; margin: 0 auto 22px;
}
.intro h1 em { font-style: italic; color: var(--red); }
.intro .lead {
  font-size: 1.18rem; color: var(--ink-soft);
  max-width: 720px; margin: 0 auto 34px;
}
.intro-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ------------------ BUTTONS ------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  letter-spacing: .01em; transition: .25s;
  border: 1px solid transparent;
  font-family: var(--ff-display);
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-dark { background: var(--navy-deep); color: var(--white); }
.btn-dark:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-dark { border-color: var(--navy-deep); color: var(--navy-deep); }
.btn-outline-dark:hover { background: var(--navy-deep); color: var(--white); }
.btn svg { width: 18px; height: 18px; }

/* ------------------ SECTION ------------------ */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block; color: var(--red);
  font-size: .8rem; letter-spacing: .35em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.section-head h2 em { font-style: italic; color: var(--red); }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ------------------ HOME: HIGHLIGHTS ------------------ */
.highlights {
  background: var(--white);
  margin-top: -60px; position: relative; z-index: 3;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  max-width: calc(var(--max) - 48px);
  margin-left: auto; margin-right: auto;
  padding: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 4px solid var(--gold);
}
.highlight {
  text-align: center; padding: 10px;
  border-right: 1px solid var(--line);
}
.highlight:last-child { border-right: none; }
.highlight .num {
  font-family: var(--ff-display); font-size: 2.6rem;
  color: var(--red); font-weight: 700;
}
.highlight .label {
  font-size: .82rem; text-transform: uppercase;
  letter-spacing: .15em; color: var(--navy);
  font-weight: 600;
}
@media (max-width: 720px) {
  .highlights { grid-template-columns: repeat(2, 1fr); padding: 28px; }
  .highlight { border-right: none; padding: 14px 0; }
  .highlight:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ------------------ FEATURES GRID ------------------ */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.feature {
  background: var(--white); padding: 36px 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: .3s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature .icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.5rem;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { font-size: 1rem; margin: 0; color: var(--muted); }
@media (max-width: 880px) { .features { grid-template-columns: 1fr; } }

/* ------------------ SPLIT ------------------ */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 60px;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media img { width: 100%; height: 520px; object-fit: cover; }
.split-media .tag {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--white); padding: 14px 22px;
  border-radius: 999px; box-shadow: var(--shadow-md);
  font-weight: 600; display: flex; align-items: center; gap: 10px;
  color: var(--navy-deep);
}
.split-media .tag span { color: var(--red); }
.split-body h2 { margin-bottom: 18px; }
.split-body .lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 20px; }
.split-body h2 em { color: var(--red); font-style: italic; }
.split-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.split-list li {
  padding: 11px 0 11px 36px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem; color: var(--ink-soft);
}
.split-list li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
}
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-media img { height: 360px; }
}

/* ------------------ PLOT CARD ------------------ */
.plot-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 50px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(245,184,0,.18);
}
.plot-card::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(245,184,0,.22), transparent 70%);
}
.plot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative; z-index: 1;
}
.plot-grid div span {
  display: block; font-size: .8rem;
  color: var(--gold); letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 8px;
}
.plot-grid div strong {
  font-family: var(--ff-display); font-size: 1.85rem; font-weight: 600;
  color: var(--white);
}
@media (max-width: 720px) {
  .plot-card { padding: 32px 24px; }
  .plot-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ------------------ MAP ------------------ */
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; }
.map-meta {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.map-meta .chip {
  background: var(--white); padding: 18px 22px;
  border-radius: var(--r-md); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.map-meta .chip .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200,16,46,.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.map-meta .chip span { display: block; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.map-meta .chip strong { font-weight: 600; color: var(--navy-deep); }
@media (max-width: 720px) { .map-meta { grid-template-columns: 1fr; } }

/* ------------------ GALLERY ------------------ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-grid .gitem {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: pointer; aspect-ratio: 4 / 3; background: var(--ivory);
}
.gallery-grid .gitem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-grid .gitem:hover img { transform: scale(1.07); }
.gallery-grid .gitem::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,37,71,.65));
  opacity: 0; transition: .3s;
}
.gallery-grid .gitem:hover::after { opacity: 1; }
.gallery-grid .gitem .label {
  position: absolute; left: 16px; bottom: 16px; color: var(--white);
  font-size: .9rem; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: .3s;
  z-index: 1;
}
.gallery-grid .gitem:hover .label { opacity: 1; transform: translateY(0); }
.gallery-grid .gitem.tall { grid-row: span 2; aspect-ratio: 4 / 6; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid .gitem.tall { grid-row: auto; aspect-ratio: 4/3; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.video-card {
  margin-top: 60px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--navy-deep);
}
.video-card video { width: 100%; max-height: 640px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,18,32,.95);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 24px; right: 30px;
  color: var(--white); font-size: 2.6rem; line-height: 1;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 3rem; line-height: 1;
  padding: 0 20px;
}
.lb-prev { left: 0; }
.lb-next { right: 0; }

/* ------------------ BLOG ------------------ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.post-card {
  background: var(--white); border-radius: var(--r-md);
  overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.post-card .post-img { height: 220px; overflow: hidden; }
.post-card .post-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.post-card:hover .post-img img { transform: scale(1.06); }
.post-card .post-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-meta {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px; font-weight: 600;
}
.post-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.post-card p { font-size: 1rem; margin-bottom: 16px; color: var(--muted); flex: 1; }
.post-card .read-more { color: var(--navy); font-weight: 600; font-size: .95rem; }
.post-card .read-more:hover { color: var(--red); }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* Featured post */
.post-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 50px;
}
.post-featured .post-img { height: 100%; min-height: 420px; }
.post-featured .post-img img { width: 100%; height: 100%; object-fit: cover; }
.post-featured .post-body { padding: 56px 50px; display: flex; flex-direction: column; justify-content: center; }
.post-featured h2 { font-size: 2.1rem; margin-bottom: 18px; }
@media (max-width: 880px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .post-img { min-height: 280px; }
  .post-featured .post-body { padding: 32px 26px; }
}

/* ------------------ ABOUT values ------------------ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px;
}
.value-card {
  text-align: center; padding: 40px 30px;
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.value-card .icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(200,16,46,.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.5rem;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 1rem; color: var(--muted); margin: 0; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.about-stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); padding: 70px 50px; border-radius: var(--r-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.about-stats .num {
  font-family: var(--ff-display); font-size: 2.8rem; color: var(--gold); font-weight: 700;
  margin-bottom: 4px;
}
.about-stats .label { color: rgba(255,255,255,.85); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; }
@media (max-width: 720px) { .about-stats { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; } }

/* ------------------ CONTACT ------------------ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px;
}
.contact-info {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--r-lg);
  align-self: start;
  border-top: 4px solid var(--gold);
}
.contact-info h2 { color: var(--white); margin-bottom: 14px; }
.contact-info p { color: rgba(255,255,255,.85); }
.contact-info .ci-item {
  display: flex; gap: 16px; padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info .ci-item:last-child { border-bottom: none; }
.contact-info .ci-item .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(245,184,0,.18); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.15rem;
}
.contact-info .ci-item span { display: block; font-size: .75rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 2px; }
.contact-info .ci-item a, .contact-info .ci-item strong { color: var(--white); font-weight: 500; }

.contact-form {
  background: var(--white); padding: 50px 44px;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form .form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-top: 28px;
}
.contact-form .field { grid-column: span 1; }
.contact-form .field.full { grid-column: span 2; }
.contact-form label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--navy-deep); margin-bottom: 8px; letter-spacing: .04em;
  font-family: var(--ff-display);
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font: inherit; color: var(--ink); font-size: 1rem;
  background: var(--ivory); transition: .2s;
  font-family: var(--ff-body);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--red); background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
  margin-top: 22px; grid-column: span 2;
  background: var(--red); color: var(--white);
  padding: 16px; border-radius: var(--r-sm);
  font-weight: 600; transition: .25s;
  font-size: 1rem; font-family: var(--ff-display);
}
.contact-form button:hover { background: var(--red-deep); }
.form-note { font-size: .9rem; color: var(--muted); margin-top: 14px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 26px; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .contact-form .field.full, .contact-form button { grid-column: span 1; }
}

/* ------------------ CALLOUT CTA ------------------ */
.callout {
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 70px 40px;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--gold);
}
.callout::before {
  content: ""; position: absolute; top: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,.22), transparent 60%);
}
.callout h2 { color: var(--white); position: relative; }
.callout h2 em { color: var(--gold); font-style: italic; }
.callout p { color: rgba(255,255,255,.88); max-width: 620px; margin: 0 auto 30px; position: relative; }
.callout .btn-row { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------ FOOTER ------------------ */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,.75);
  padding: 70px 0 26px;
  border-top: 4px solid var(--red);
}
footer h4 { color: var(--white); font-family: var(--ff-display); font-size: .95rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.foot-brand .brand-text { color: var(--white); }
.foot-brand p { color: rgba(255,255,255,.7); font-size: .98rem; margin-top: 16px; }
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { margin-bottom: 10px; }
.foot-links a { color: rgba(255,255,255,.75); font-size: .98rem; }
.foot-links a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.socials a:hover { background: var(--gold); color: var(--navy-deep); }
.foot-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .88rem; color: rgba(255,255,255,.55);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ------------------ FLOATING WHATSAPP ------------------ */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: transform .25s;
}
.fab-whatsapp:hover { transform: scale(1.07); color: var(--white); }

/* ------------------ ANIMATIONS ------------------ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ------------------ HELPERS ------------------ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-ivory { background: var(--ivory); }
