/* ============================================================
   LucidBuilt — Main Stylesheet
   Brand: Navy blue (#1B3A5C) + Orange (#E8650A) + Cream (#F5F2EE)
   Fonts: Oswald (headings) + Work Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

/* --- TOKENS --- */
:root {
  --color-navy: #1B3A5C;
  --color-navy-dark: #122843;
  --color-navy-light: #254d7a;
  --color-orange: #E8650A;
  --color-orange-hover: #c9530a;
  --color-cream: #F5F2EE;
  --color-cream-dark: #EDE9E3;
  --color-white: #FFFFFF;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-border: #D8D3CC;

  --font-display: 'Oswald', 'Trebuchet MS', sans-serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.8rem, 1rem + 6vw, 5.5rem);

  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;

  --shadow-sm: 0 1px 3px rgba(27,58,92,0.08);
  --shadow-md: 0 4px 16px rgba(27,58,92,0.12);
  --shadow-lg: 0 12px 40px rgba(27,58,92,0.18);

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 680px;
  --content-default: 1000px;
  --content-wide: 1260px;
}

/* --- BASE RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
p, li { text-wrap: pretty; max-width: 70ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection {
  background: rgba(232,101,10,0.2);
  color: var(--color-text);
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}
.container--narrow {
  max-width: var(--content-narrow);
}
.container--default {
  max-width: var(--content-default);
}

/* --- HEADER & NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: box-shadow var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.45rem var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.active {
  color: var(--color-orange);
}
.nav-cta {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.5rem var(--space-6) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--color-orange-hover) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4);
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
  }
  .nav-logo-tagline { display: none; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--color-navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/living.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.28;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-block: var(--space-20);
}
.hero-badge {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem var(--space-4);
  border-radius: var(--radius-full, 999px);
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-size: var(--text-hero);
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: var(--space-6);
}
.hero h1 span {
  color: var(--color-orange);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-10);
  max-width: 55ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.85rem var(--space-8);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.btn-primary:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-navy:hover {
  background: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- SECTION BASICS --- */
section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}
.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-6);
}
.section-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.7;
}

/* --- SERVICES SECTION --- */
.services-section {
  background: var(--color-white);
}
.services-intro {
  margin-bottom: var(--space-16);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-orange);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,92,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: var(--text-lg);
  color: var(--color-navy);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --- ABOUT / SPLIT SECTION --- */
.about-section {
  background: var(--color-cream-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-badge-block {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}
.about-badge-txt {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-content .section-body {
  margin-bottom: var(--space-6);
  max-width: 100%;
}
.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.about-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-orange);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- STATS STRIP --- */
.stats-strip {
  background: var(--color-navy);
  padding-block: var(--space-12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- GALLERY PREVIEW --- */
.gallery-preview-section {
  background: var(--color-white);
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
  margin-top: var(--space-12);
}
@media (max-width: 640px) {
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
}
.gallery-preview-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-preview-grid a:first-child {
  grid-column: span 2;
}
.gallery-preview-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery-preview-grid a:first-child img {
  aspect-ratio: 16/9;
}
.gallery-preview-grid a:hover img {
  transform: scale(1.04);
}
.gallery-cta {
  margin-top: var(--space-10);
  text-align: center;
}

/* --- PROCESS --- */
.process-section {
  background: var(--color-cream-dark);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.process-step {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(27,58,92,0.12);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.process-step h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--color-navy-dark);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(232,101,10,0.15) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner .section-title {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.cta-inner p {
  color: rgba(255,255,255,0.75);
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  max-width: 55ch;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* --- FOOTER --- */
.site-footer {
  background: #0d1f32;
  color: rgba(255,255,255,0.75);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  margin-bottom: var(--space-4);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}
.footer-tagline {
  font-size: var(--text-xs);
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
}
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-3);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-orange);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--color-orange); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-6);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--color-orange); }

/* --- GALLERY PAGE --- */
.page-hero {
  background: var(--color-navy-dark);
  padding-block: var(--space-20) var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,101,10,0.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: var(--text-2xl);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  max-width: 55ch;
  margin-inline: auto;
}
.gallery-section { background: var(--color-white); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}
.filter-btn {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full, 999px);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}
.gallery-masonry {
  columns: 3;
  column-gap: var(--space-4);
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,92,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.lightbox-close {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--color-orange); }

/* --- CONTACT PAGE --- */
.contact-section {
  background: var(--color-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-col .section-body {
  margin-bottom: var(--space-8);
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.contact-method:hover { box-shadow: var(--shadow-md); }
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg {
  width: 22px; height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-method-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.contact-method-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
}
.contact-method-value a {
  color: var(--color-navy);
  transition: color var(--transition);
}
.contact-method-value a:hover { color: var(--color-orange); }

/* Form */
.contact-form-wrap {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}
.contact-form-wrap h2 {
  font-size: var(--text-xl);
  color: var(--color-navy);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.contact-form-wrap .form-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.form-group label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: var(--text-base);
  margin-top: var(--space-4);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-4);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10);
  background: rgba(67,122,34,0.08);
  border: 1px solid rgba(67,122,34,0.25);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
}
.form-success.show { display: block; }
.form-success h3 {
  font-size: var(--text-xl);
  color: #437a22;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.form-success p { color: var(--color-text-muted); }

/* FAQ */
.faq-section { background: var(--color-cream-dark); }
.faq-list {
  max-width: var(--content-narrow);
  margin: var(--space-12) auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-orange);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-bottom: var(--space-6);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

/* --- SHARED NAV ACTIVE --- */
[data-page="home"] .nav-home,
[data-page="gallery"] .nav-gallery,
[data-page="contact"] .nav-contact {
  color: var(--color-orange) !important;
}
