
:root {
  --navy: #0b1f33;
  --navy-2: #122b45;
  --navy-3: #071525;
  --blue: #1e6fb9;
  --aqua: #5fc3d9;
  --aqua-light: #9adfed;
  --white: #ffffff;
  --sand: #f4f7fa;
  --text: #1a2433;
  --muted: #5c6d7e;
  --line: #d8e2ea;
  --shadow: 0 20px 60px rgba(11, 31, 51, 0.1);
  --shadow-lg: 0 30px 80px rgba(11, 31, 51, 0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1240px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ── Navigation ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.topbar.scrolled {
  background: rgba(11, 31, 51, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.topbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(7,21,37,0.85) 0%, transparent 100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
}
.brand {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  z-index: 102;
}
.brand span { color: var(--aqua); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 0; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 0 auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.navlinks {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navlinks a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.navlinks a:hover,
.navlinks a.active { color: var(--aqua); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--aqua);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--aqua-light);
  box-shadow: 0 12px 32px rgba(95,195,217,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-2);
  box-shadow: var(--shadow);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Fullscreen Hero ── */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-bg .slide.active { opacity: 1; }
.hero-bg .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,21,37,0.55) 0%, rgba(7,21,37,0.3) 40%, rgba(7,21,37,0.75) 100%),
    linear-gradient(90deg, rgba(7,21,37,0.7) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  max-width: 780px;
}
.hero-content .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 0;
  background: none;
  border: none;
  color: var(--aqua);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-fullscreen h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-fullscreen p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust span {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-trust span::before {
  content: "—";
  margin-right: 10px;
  color: var(--aqua);
}
.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 32px; height: 2px;
  padding: 0; border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--aqua);
  width: 48px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--aqua), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero/hero-1.svg") center/cover no-repeat;
  opacity: 0.25;
}
.page-hero .container { position: relative; z-index: 1; max-width: 720px; }
.page-hero .eyebrow {
  color: var(--aqua);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.7;
}

/* ── Sections ── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-sand { background: var(--sand); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.kicker {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 12px;
}
.section-dark .kicker { color: var(--aqua-light); }
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-dark h2 { color: var(--white); }
.lead {
  color: var(--muted);
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
}
.section-dark .lead { color: rgba(255,255,255,0.65); }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Cards ── */
.cards-3, .cards-4 { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
}
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.section-dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,0.6); }
.section-dark .icon { border-color: rgba(95,195,217,0.3); }

/* ── Image showcase ── */
.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}
.showcase-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.image-tile {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s var(--ease);
}
.image-tile:hover img { transform: scale(1.04); }
.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,21,37,0.82) 100%);
  pointer-events: none;
}
.image-tile-tall { min-height: 576px; }
.image-tile-tall img { min-height: 576px; }
.overlay-copy {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  color: var(--white);
}
.overlay-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.1;
}
.overlay-copy p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Service areas ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: none;
  padding: 0;
  background: var(--navy);
  cursor: default;
  text-align: left;
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.area-card:hover img { transform: scale(1.05); }
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,21,37,0.88) 100%);
}
.area-card-content {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  color: var(--white);
}
.area-card-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}
.area-card-content p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Process ── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step .num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--aqua);
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

/* ── Gallery ── */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--navy);
  cursor: pointer;
  text-align: left;
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,21,37,0.85) 100%);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-info {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
  color: var(--white);
}
.gallery-item-info h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}
.gallery-item-info span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-light);
  font-weight: 600;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(7,18,30,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 1000px; width: 100%; }
.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-caption {
  margin-top: 20px;
  text-align: center;
  color: var(--white);
}
.lightbox-caption h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}
.lightbox-caption p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  width: 48px; height: 48px;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}
.lightbox-close { top: -60px; right: 0; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }

/* ── Quote / CTA ── */
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.quote-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-content h2 { color: var(--white); margin-bottom: 16px; }
.quote-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px;
}
.quote-perks { display: grid; gap: 14px; margin-bottom: 36px; }
.quote-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.quote-perk::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--aqua);
  flex-shrink: 0;
}
.quote-form-side {
  background: var(--sand);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-block {
  background: var(--navy);
  color: var(--white);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.7); margin: 0; }
.cta-actions { display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }

/* ── Forms ── */
.form { background: var(--white); padding: 40px; border: 1px solid var(--line); }
.form-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
}
.form-subtitle { margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(95,195,217,0.2);
}
textarea { min-height: 140px; resize: vertical; }
.small { font-size: 13px; color: var(--muted); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
}
.hidden-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.hidden { display: none !important; }

/* ── Contact page ── */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
.contact-info { padding: 40px; background: var(--navy); color: var(--white); }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin: 8px 0 16px;
}
.contact-info p { color: rgba(255,255,255,0.65); margin: 0 0 28px; }
.contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.contact-list li { font-size: 15px; }
.contact-list strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-list a { color: var(--white); text-decoration: none; }
.contact-list a:hover { color: var(--aqua); }

/* ── Testimonials ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 16px;
}
.person { color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; }

/* ── FAQ ── */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq .card h3 { font-size: 22px; }

/* ── Badges ── */
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-dark .badge {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

/* ── Footer ── */
.footer {
  background: var(--navy-3);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--aqua); }
.footer-contact a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
}
.footer-contact a:hover { color: var(--aqua); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .showcase, .quote-section, .cta-block, .contact-wrap { grid-template-columns: 1fr; }
  .cards-4, .process, .testimonials, .faq, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .navlinks {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(7,21,37,0.98);
    z-index: 101;
  }
  .nav-open .navlinks { display: flex; }
  .navlinks .btn { width: 100%; max-width: 280px; }
  .cards-3, .cards-4, .process, .testimonials, .faq,
  .gallery-grid, .form-grid, .areas-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero-content { padding-bottom: 100px; }
  .hero-controls { bottom: 24px; right: 24px; }
  .hero-scroll { display: none; }
  .image-tile-tall, .image-tile-tall img { min-height: 400px; }
  .quote-content, .quote-form-side, .cta-block { padding: 40px 28px; }
  .cta-actions { justify-content: flex-start; }
  .form { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg .slide { transition: none; }
}
