/* =========================================================
   PENGUIN CONSTRUCTIONS — Design System
   "One Brick at a Time"
   Palette: Deep navy foundation, warm gold mortar-line accent
   Type: Fraunces (display, for headline authority) + Inter (body/UI)
   ========================================================= */

:root {
  --navy-950: #050a10;
  --navy-900: #0a1118;
  --navy-800: #0f1a24;
  --navy-700: #16232f;
  --navy-line: rgba(212, 175, 55, 0.16);
  --gold-500: #d4af37;
  --gold-400: #e4c565;
  --gold-300: #f0dd9a;
  --gold-700: #a8811f;
  --cream: #f4efe4;
  --ivory: #fbf9f4;
  --stone: #b7c0c9;
  --stone-dim: #8b96a3;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

body {
  background: var(--navy-900);
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* -------------------- Utility -------------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-500);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 3.2vw, 2.75rem); }
h3 { font-size: 1.35rem; }

.text-gold { color: var(--gold-500); }

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight { padding: 70px 0; }

.divider-brick {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 32px;
}
.divider-brick::before,
.divider-brick::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-700), transparent);
}
.divider-brick svg { flex-shrink: 0; opacity: 0.85; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-700));
  color: var(--navy-950);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(212, 175, 55, 0.55); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244, 239, 228, 0.35);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-400); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* -------------------- Nav -------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(8, 13, 19, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--navy-line);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.6);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.nav.is-scrolled .brand img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-400); }
.nav-links a.active::after { width: 100%; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  overflow: hidden;
  background: var(--navy-950);
}

.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.hero-bg::after {
   content: "";
  position: absolute;
  inset: 0; 
  background: linear-gradient(90deg, 
    var(--navy-950) 0%,         
    rgba(10, 17, 24, 0.95) 30%, 
    rgba(10, 17, 24, 0.4) 55%,  
    transparent 80%             
  );
  z-index: 1;;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 70px 0 90px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  color: var(--ivory);
  margin-bottom: 22px;
}
.hero-content h1 .line-gold { color: var(--gold-500); display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--stone);
  max-width: 460px;
  margin-bottom: 10px;
}

.hero-body {
  color: var(--stone-dim);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Feature bar */
.feature-bar {
  position: relative;
  z-index: 2;
  background: var(--navy-800);
  border-top: 1px solid var(--navy-line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.feature-item {
  padding: 40px 28px;
  display: flex;
  gap: 16px;
  border-left: 1px solid var(--navy-line);
}
.feature-item:first-child { border-left: none; }
.feature-item svg { flex-shrink: 0; color: var(--gold-500); }
.feature-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.feature-item p { font-size: 13.5px; color: var(--stone-dim); line-height: 1.5; }

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

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  background: var(--navy-950);
  overflow: hidden;
  border-bottom: 1px solid var(--navy-line);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,17,24,0.55) 0%, var(--navy-950) 90%);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: 720px; }
.page-hero .lede { max-width: 620px; margin-top: 20px; font-size: 1.05rem; color: var(--stone); }

/* -------------------- Generic section pieces -------------------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame::before {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.08);
  pointer-events: none;
}

.lede { font-size: 1.05rem; color: var(--cream); margin-bottom: 18px; }
.body-copy { color: var(--stone-dim); margin-bottom: 16px; }

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
  margin-top: 36px;
}
.checklist li { display: flex; gap: 14px; }
.checklist .icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
}
.checklist h4 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.checklist p { font-size: 13.5px; color: var(--stone-dim); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.card {
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  background: var(--navy-700);
}
.card .icon-wrap {
  width: 54px; height: 54px;
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  margin-bottom: 22px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--stone-dim); }

/* Strip / banner */
.strip {
  background: var(--navy-800);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 44px 0;
}
.strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-message { display: flex; align-items: center; gap: 20px; max-width: 480px; }
.strip-message svg { flex-shrink: 0; color: var(--gold-500); }
.strip-message h3 { font-size: 1.15rem; margin-bottom: 4px; }
.strip-message p { font-size: 13.5px; color: var(--stone-dim); }
.strip-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.strip-stat { display: flex; align-items: center; gap: 12px; }
.strip-stat svg { color: var(--gold-500); flex-shrink: 0; }
.strip-stat span { font-size: 13px; font-weight: 600; color: var(--stone); text-transform: uppercase; letter-spacing: 0.03em; }

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

.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--navy-line);
  padding: 76px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: var(--stone-dim); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--navy-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-400); transform: translateY(-3px); }

.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer ul a { font-size: 14px; color: var(--stone-dim); transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.footer ul a:hover { color: var(--gold-400); padding-left: 4px; }
.footer address { font-style: normal; font-size: 14px; color: var(--stone-dim); line-height: 1.8; }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--stone-dim);
}
.footer-bottom a:hover { color: var(--gold-400); }

/* -------------------- Reveal animation -------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* =========================================================
   PAGE-SPECIFIC: HOME extras
   ========================================================= */

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.trust-card {
  padding: 30px;
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  text-align: center;
}
.trust-card .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-500); margin-bottom: 6px; }
.trust-card p { font-size: 13.5px; color: var(--stone-dim); text-transform: uppercase; letter-spacing: 0.05em; }

/* =========================================================
   PAGE-SPECIFIC: ABOUT
   ========================================================= */

.about-hero {
  padding: 190px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-copy .lede { margin-bottom: 20px; }

.materials-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-top: 40px;
}
.materials-list li { display: flex; gap: 16px; }
.materials-list .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
}
.materials-list h4 {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700; color: var(--ivory);
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.materials-list p { font-size: 13.5px; color: var(--stone-dim); }

.timeline {
  margin-top: 60px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-700), transparent);
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 44px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--gold-500);
  font-size: 1.1rem;
  z-index: 1;
}
.timeline-body h4 { font-family: var(--font-body); color: var(--ivory); font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.timeline-body p { font-size: 14px; color: var(--stone-dim); max-width: 520px; }

.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 60px;
}
.values-strip > div {
  padding: 32px 26px;
  border-left: 1px solid var(--navy-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.values-strip > div:first-child { border-left: none; }
.values-strip svg { color: var(--gold-500); flex-shrink: 0; }
.values-strip span { font-size: 13px; font-weight: 700; color: var(--ivory); text-transform: uppercase; letter-spacing: 0.04em; }

/* =========================================================
   PAGE-SPECIFIC: SERVICES
   ========================================================= */

.services-hero {
  padding: 190px 0 100px;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-mini-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.services-mini-stats div { display: flex; gap: 12px; align-items: flex-start; }
.services-mini-stats svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.services-mini-stats h4 { font-family: var(--font-body); font-size: 13.5px; color: var(--ivory); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.services-mini-stats p { font-size: 12.5px; color: var(--stone-dim); max-width: 190px; }

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 34px;
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  counter-increment: service;
}
.service-detail:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.4); }
.service-detail .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-700);
}
.service-detail h3 { margin-bottom: 10px; }
.service-detail p { font-size: 14px; color: var(--stone-dim); margin-bottom: 14px; }
.service-detail ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-detail ul li { font-size: 13px; color: var(--stone); display: flex; align-items: center; gap: 10px; }
.service-detail ul li::before { content: ""; width: 5px; height: 5px; background: var(--gold-500); border-radius: 50%; flex-shrink: 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-step { padding: 0 24px; position: relative; }
.process-step:first-child { padding-left: 0; }
.process-step::before {
  content: "";
  position: absolute;
  top: 27px; left: -2px;
  width: calc(100% + 4px);
  height: 1px;
  background: var(--gold-700);
  opacity: 0.4;
}
.process-step:first-child::before { left: 27px; width: calc(100% - 25px); }
.process-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--gold-500);
  position: relative; z-index: 1;
  margin-bottom: 20px;
}
.process-step h4 { font-family: var(--font-body); color: var(--ivory); font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--stone-dim); }

/* =========================================================
   PAGE-SPECIFIC: GALLERY
   ========================================================= */

.gallery-hero { padding: 190px 0 70px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
}
.gallery-step {
  background: var(--navy-900);
  position: relative;
  cursor: pointer;
}
.gallery-step .step-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-step .step-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) brightness(0.92);
}
.gallery-step:hover .step-photo img { transform: scale(1.08); filter: saturate(1.05) brightness(1); }
.gallery-step .step-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,10,16,0.85) 100%);
}
.step-num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  width: 34px; height: 34px;
  background: var(--navy-950);
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
}
.step-caption {
  padding: 18px 20px 22px;
}
.step-caption h4 {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.step-caption p { font-size: 12.5px; color: var(--stone-dim); line-height: 1.5; }

.gallery-cta {
  margin-top: 70px;
  padding: 56px;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-line);
  background: linear-gradient(120deg, var(--navy-800), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-cta h3 { font-size: 1.5rem; max-width: 480px; }
.gallery-cta p { color: var(--stone-dim); margin-top: 8px; max-width: 480px; }

/* =========================================================
   PAGE-SPECIFIC: CONTACT
   ========================================================= */

.contact-hero { padding: 190px 0 70px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-info-item { display: flex; gap: 18px; }
.contact-info-item .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-line);
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
}
.contact-info-item h4 { font-family: var(--font-body); font-size: 13px; color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--ivory); line-height: 1.5; }
.contact-info-item a:hover { color: var(--gold-400); }

.office-photo { margin-top: 40px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--navy-line); }
.office-photo img { width: 100%; height: 230px; object-fit: cover; }

.contact-form-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  padding: 48px;
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--stone-dim); font-size: 14px; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--stone); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-900);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-dim); }
.form-note { font-size: 12.5px; color: var(--stone-dim); margin-top: 6px; }

.map-frame {
  margin-top: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-line);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* -------------------- Responsive -------------------- */

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(4) { border-left: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-step::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .values-strip > div:nth-child(3) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy-950);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--ivory);
  }
  .mobile-menu a.active { color: var(--gold-500); }
  .mobile-menu .btn { margin-top: 10px; }

  .two-col, .about-hero-grid, .services-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .two-col .media-frame, .about-hero-grid .media-frame { order: -1; }
  .hero-content { max-width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(3) { border-left: none; }
  .card-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .materials-list { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .values-strip > div { border-left: none; border-top: 1px solid var(--navy-line); }
  .values-strip > div:first-child { border-top: none; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .strip .container { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
}

@media (max-width: 520px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions .btn { flex: 1; }
}
