/* ═══════════════════════════════════════════════════════════════
   AHLERS HOUSE — Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variables ───────────────────────────────────────────────── */
:root {
  --navy:       #0b1235;
  --navy-mid:   #131d4a;
  --navy-light: #1e2d6b;
  --accent:     #3b5bdb;
  --accent-h:   #4c6ef5;
  --white:      #ffffff;
  --off-white:  #e8eaf0;
  --muted:      rgba(255,255,255,0.55);
  --muted-dark: rgba(11,18,53,0.55);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.hidden { display: none !important; }

/* ─── Typography helpers ──────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow, .label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-light { background: var(--white); }
.section-dark  { background: var(--navy); color: var(--white); }

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.section-header-light h2,
.section-header-light .section-intro {
  color: var(--white);
}
.section-header-light .label { color: var(--accent-h); }

.section-intro {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 560px;
  line-height: 1.7;
}
.section-dark .section-intro { color: var(--muted); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }

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

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

.btn-block { width: 100%; justify-content: center; }

/* ─── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(11,18,53,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-links .nav-cta:hover { background: var(--accent-h); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,18,53,0.85) 0%,
    rgba(11,18,53,0.60) 60%,
    rgba(11,18,53,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1.5rem;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-bar {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.8);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ─── Features Grid ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature {
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,91,219,0.08);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0;
}

.feature p {
  font-size: 0.92rem;
  color: #5a6484;
  line-height: 1.65;
}

/* ─── Spaces ──────────────────────────────────────────────────── */
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.space-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.space-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

.space-featured { border-color: rgba(59,91,219,0.6); }

.space-image {
  height: 220px;
  background: var(--navy-light);
  overflow: hidden;
}
.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.space-card:hover .space-image img { transform: scale(1.04); }

.space-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.space-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.space-floor {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.space-size {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.space-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.space-list {
  margin-bottom: 2rem;
  flex: 1;
}
.space-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.space-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.spaces-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2rem;
}

/* ─── Customised Solutions ────────────────────────────────────── */
.custom-solutions {
  margin-top: 2rem;
  padding: 2.25rem 2.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.custom-solutions-text h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.custom-solutions-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}

.custom-solutions-cta { flex-shrink: 0; }

.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.55;
  text-transform: none;
}

@media (max-width: 720px) {
  .custom-solutions {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
  }
}

/* ─── Location ────────────────────────────────────────────────── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin: 0.5rem 0 1.25rem;
}

.location-content > p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.location-points { display: flex; flex-direction: column; gap: 1.5rem; }

.location-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.lp-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,91,219,0.08);
  border-radius: var(--radius);
  color: var(--accent);
}
.lp-icon svg { width: 20px; height: 20px; }

.location-point strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.location-point span { font-size: 0.88rem; color: #5a6484; line-height: 1.5; }

.location-map {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  filter: saturate(0.7) contrast(1.1);
}
.map-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-align: right;
  transition: color var(--transition);
}
.map-link:hover { color: var(--accent-h); }

/* ─── Gallery ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-light);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gi-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gi-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem 0.9rem;
  background: linear-gradient(to top, rgba(11,18,53,0.85), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gi-caption { opacity: 1; }

/* Placeholder shown when image file is missing */
.gi-placeholder-text {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-family: monospace;
  text-align: center;
  padding: 1rem;
}
.gi-empty .gi-placeholder-text {
  display: flex;
}
.gi-empty .gi-caption { opacity: 1; }
.gi-empty::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}

/* ─── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin: 0.5rem 0 1.25rem;
}

.contact-info > p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--accent); }
.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,91,219,0.08);
  border-radius: var(--radius);
  color: var(--accent);
}
.ci-icon svg { width: 20px; height: 20px; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.02em;
}
.req { color: var(--accent); }

input, textarea, select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,91,219,0.12);
}
textarea { resize: vertical; }
select { cursor: pointer; }

.form-success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(59,91,219,0.08);
  border: 1px solid rgba(59,91,219,0.2);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-addr { color: var(--muted); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .spaces-grid      { grid-template-columns: 1fr; }
  .location-layout  { grid-template-columns: 1fr; }
  .contact-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .location-map     { position: static; }
  .location-map iframe { height: 300px; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; }
  .gi-large         { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,18,53,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    font-size: 1.2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; z-index: 100; }

  .section { padding: 4rem 0; }
  .hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
}

/* ─── Lightbox ────────────────────────────────────────────────── */
.gallery-item { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 8, 25, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: lbFadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-img-wrap {
  position: relative;
  max-width: min(1100px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: lbSlideIn 0.22s ease;
}

@keyframes lbSlideIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 1001;
}
.lb-close:hover { opacity: 1; }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  width: 3rem;
  height: 4rem;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1001;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ─── In Motion section ───────────────────────────────────────── */
.section-motion {
  background: var(--navy);
  color: var(--white);
}

/* Full-width cinematic reel strip */
.motion-reel {
  position: relative;
  width: 100%;
  height: clamp(380px, 55vw, 700px);
  overflow: hidden;
}

.motion-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,18,53,0.72) 0%,
    rgba(11,18,53,0.35) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 4rem;
}

.motion-reel-overlay .motion-reel-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.motion-reel-overlay h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.motion-sound-btn {
  align-self: flex-start;
}

/* Feature video block (Zidis) */
.motion-feature {
  padding: 5rem 0;
}

.motion-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.motion-feature-video video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--navy-light);
}

.motion-feature-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.motion-feature-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.motion-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42) !important;
  margin-top: 1.5rem !important;
}

/* ─── Life at Portview section ────────────────────────────────── */
.section-dark {
  background: var(--navy-mid);
  color: var(--white);
}

.section-header-light .label,
.section-header-light h2,
.section-header-light p {
  color: var(--white);
}
.section-header-light .label { color: var(--muted); }

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.life-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.life-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.life-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.life-video-placeholder {
  background: var(--navy);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.life-video-placeholder svg {
  opacity: 0.3;
}

.life-card-body {
  padding: 1.5rem;
  flex: 1;
}
.life-card-body h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.life-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.life-card-add {
  border: 2px dashed rgba(255,255,255,0.15);
  background: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  gap: 0.5rem;
}
.life-card-add svg { opacity: 0.35; margin-bottom: 0.5rem; }

/* ─── Responsive: motion & life ───────────────────────────────── */
@media (max-width: 960px) {
  .motion-feature-layout { grid-template-columns: 1fr; gap: 2rem; }
  .life-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .motion-reel-overlay { padding: 2rem 1.75rem; }
  .motion-reel-overlay h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .lb-arrow { display: none; }
  .lb-img-wrap { max-width: 95vw; }
}

@media (max-width: 480px) {
  .motion-feature { padding: 3rem 0; }
}
