/* ============================================
   PRIME PROPERTY MEDIA — Global Styles
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #323232;
  --charcoal-soft: #2a2a2a;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --text-dark: #1e1e1e;
  --text-muted: #6b6b6b;
  --gold-1: #9a7520;
  --gold-2: #c9a84c;
  --gold-3: #e8d48a;
  --gold-gradient: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  --border-subtle: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --max-w: 1240px;
  --space-section: clamp(64px, 9vw, 120px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Phone numbers never wrap across lines */
a[href^="tel:"] {
  white-space: nowrap;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.075rem);
  color: var(--text-dark);
  max-width: 65ch;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  margin: 0 auto;
  color: var(--text-muted);
  max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--bg-white);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: var(--bg-white);
}

.btn-outline-light:hover {
  background: var(--bg-white);
  color: var(--charcoal);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

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

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

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Mobile nav drawer — hidden on all screens by default */
.nav-mobile {
  display: none;
  background: var(--charcoal);
  padding: 24px clamp(20px, 4vw, 40px) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-mobile.open {
    display: block;
  }
  .nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }
  .nav-mobile a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .nav-mobile .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--bg-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  padding: 80px clamp(20px, 4vw, 40px);
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 24px;
}

.hero .hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-gold-accent {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 32px;
}

/* ---------- Section ---------- */
section {
  padding: var(--space-section) 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--bg-white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--bg-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Split Section (text + image) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 28px; }
.split-image img {
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ---------- Value Props (4-up) ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) { .values { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 600px) { .values { grid-template-columns: 1fr; } }

.value-card {
  text-align: center;
  padding: 32px 20px;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: var(--charcoal);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--charcoal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

/* ---------- Services (3-up) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 860px) { .services { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover img { transform: scale(1.05); }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  color: var(--bg-white);
}

.service-card-content h3 {
  color: var(--bg-white);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

.service-card-content .gold-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  padding: 36px 32px;
  background: var(--bg-white);
  border-radius: 4px;
  border-top: 3px solid transparent;
  border-image: var(--gold-gradient) 1;
  box-shadow: var(--shadow-card);
}

.section-dark .testimonial {
  background: var(--charcoal-soft);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-dark .testimonial-quote { color: rgba(255, 255, 255, 0.92); }

.testimonial-attribution {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.section-dark .testimonial-attribution { color: var(--gold-3); }

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.pricing-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  position: relative;
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 4px 12px;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  border-radius: 2px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-name {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pricing-price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--gold-gradient);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 4px;
}

/* ---------- A La Carte ---------- */
.alacarte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.alacarte-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.alacarte-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.alacarte-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.alacarte-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.alacarte-card:hover .alacarte-image img { transform: scale(1.04); }

.alacarte-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.alacarte-content h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.alacarte-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

/* Ensure card content inside a dark section keeps light-card styling */
.section-dark .alacarte-card h3 { color: var(--text-dark); }
.section-dark .alacarte-card p { color: var(--text-muted); }
.section-dark .pricing-card h3 { color: var(--text-dark); }
.section-dark .pricing-card .pricing-features li { color: var(--text-dark); }

/* ---------- Portfolio Grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 860px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .portfolio-grid { grid-template-columns: 1fr; gap: 12px; } }

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.portfolio-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.6;
  transition: opacity 200ms;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 28px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail-value a:hover {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Form */
.contact-form {
  background: var(--bg-white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: var(--bg-white);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(154, 117, 32, 0.08);
  border-left: 3px solid var(--gold-2);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--charcoal);
  color: var(--bg-white);
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--bg-white);
  margin-bottom: 18px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 32px;
  max-width: 600px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-col a:hover {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold-gradient);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill var(--transition);
}

.footer-social a:hover svg { fill: var(--charcoal); }

/* ---------- Page Header (non-home pages) ---------- */
.page-header {
  background: var(--charcoal);
  color: var(--bg-white);
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.page-header .gold-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 20px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-width: 580px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- À La Carte cards with embedded media ---------- */
.alacarte-media {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.alacarte-media .film-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 0;
}
.alacarte-media .film-play {
  width: 56px;
  height: 56px;
}
.alacarte-media .film-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.alacarte-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: var(--charcoal);
}

/* ---------- Cinematic Property Film (cover + play button) ---------- */
.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: var(--charcoal);
  cursor: pointer;
}

.film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--charcoal);
}

.film-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--charcoal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform 250ms ease, opacity 250ms ease;
  z-index: 2;
}

.film-play:hover { transform: scale(1.08); }
.film-play svg { width: 32px; height: 32px; margin-left: 4px; }

.film-frame.playing .film-play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .film-play { width: 64px; height: 64px; }
  .film-play svg { width: 24px; height: 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
