/* ════════════════════════════════════════════ */
/* NEWME — 11ty Version                        */
/* Canvas: #F5F0EC, Ink: #2C2420, Copper: #D4A373 */
/* ════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --cream: #F5F0EC;
  --ink: #2C2420;
  --copper: #D4A373;
  --brand-red: #E5007E;
  --dark: #1E2328;
  --warm-text: #2C2420;
  --muted: #5A5048;
  --cream-bright: #EAE6DF;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'SF Mono', 'JetBrains Mono', monospace;
  --body-size: 1rem;
  --body-leading: 1.7;
  --small-size: 0.875rem;
  --label-size: 0.75rem;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 100px);
  --container-px: 24px;
  --container-max: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  background: var(--cream);
  color: var(--warm-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(30,35,40,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(234,230,223,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 28px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--cream-bright); text-decoration: none;
}
.nav-links a:hover { opacity: 0.6; }
.nav-wa {
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--cream-bright);
  padding: 10px 20px; border: 1px solid rgba(245,240,236,0.25); text-decoration: none;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  display: block;
}

/* Hero */
.hero {
  min-height: 85vh; display: flex; align-items: center;
  background: var(--dark); color: var(--cream-bright);
  position: relative; overflow: hidden;
}

.hero .container {
  width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,163,115,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(234,230,223,0.03) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 140px 24px 80px;
}
.hero-logo-wrap {
  margin-bottom: 48px;
}
.hero-logo {
  display: block;
  max-width: 240px;
  height: auto;
  filter: brightness(1.1);
}
.hero-label {
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 16px;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300;
  letter-spacing: -0.02em; color: var(--cream-bright);
  margin-bottom: 20px; line-height: 0.95;
}
.hero h1 .copper { color: var(--copper); }
.hero-line {
  width: 48px; height: 2px; background: var(--copper);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.6; color: rgba(234,230,223,0.55);
  max-width: 420px; margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--copper); color: #fff;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; transition: all 0.3s;
}
.btn:hover { background: #C9A96E; gap: 16px; }

.cta-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-bright); border-bottom: 1px solid rgba(234,230,223,0.15);
  padding-bottom: 4px; text-decoration: none; transition: all 0.3s;
}
.cta-line:hover { border-color: var(--copper); color: var(--copper); gap: 14px; }

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--cream); color: rgba(234,230,223,0.65); }
.section-dark h2 { color: var(--cream-bright); }
.section-cream { background: var(--cream); }
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.section-label {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(234,230,223,0.55); margin-bottom: 12px;
}
.section-cream .section-label { color: var(--muted); }
.section-line {
  width: 48px; height: 2px; background: var(--copper);
  margin-bottom: 24px;
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300;
  letter-spacing: -0.015em; color: var(--ink);
  margin-bottom: 12px; line-height: 1.1;
}
.section-dark h2 { color: var(--cream-bright); }
.section-desc {
  max-width: 480px; color: var(--warm-text); font-size: 1rem;
  line-height: 1.7; margin-bottom: 40px;
}
.section-dark .section-desc { color: rgba(234,230,223,0.75); }

/* ═══════════════════════════════════════ */
/* GALLERY — Hero + Duo Triptych           */
/* Quiet Luxury: editorial layout          */
/* ═══════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Hero: spans both columns, cinematic ratio */
.gallery-hero {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #1E2328;
}
.gallery-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Duo: two equal squares below hero */
.gallery-duo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1E2328;
}
.gallery-duo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 32px 28px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(30,35,40,0.02) 40%,
    rgba(30,35,40,0.75) 100%
  );
  pointer-events: none;
}
.gallery-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,163,115,0.7);
  margin-bottom: 6px;
}
.gallery-title {
  color: #fff;
  font-size: clamp(1rem,1.5vw,1.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Mobile: single column */
@media (max-width: 545px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-hero { grid-column: 1; aspect-ratio: 4/3; }
  .gallery-duo { aspect-ratio: 4/3; }
  .gallery-overlay { padding: 20px; }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff; padding: 36px;
  border: 1px solid rgba(44,36,32,0.06);
}
.service-label {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); font-weight: 500; margin-bottom: 8px;
}
.service-title { color: var(--ink); font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.service-card .service-desc { font-size: 0.9rem; line-height: 1.6; color: #3A3028; }

/* ════════════════════════════════════════════ */
/* Six Systems — Architectural Dashboard        */
/* ════════════════════════════════════════════ */

.capabilities {
  background: var(--cream);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.cap-header {
  max-width: 600px;
  margin-bottom: 48px;
}

.cap-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.cap-line {
  width: 48px;
  height: 2px;
  background: var(--copper);
  margin-bottom: 24px;
}

.cap-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}

.cap-desc {
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234,230,223,0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.cap-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid rgba(212,163,115,0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cap-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}


.cap-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cap-icon {
  font-size: 2.5rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.cap-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-bright);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cap-accent {
  width: 32px;
  height: 1.5px;
  background: var(--copper);
  margin-bottom: 16px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cap-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(234,230,223,0.75);
  font-weight: 300;
  max-width: 280px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.cap-cell:hover .cap-bg { opacity: 0.85; }

.cap-cell:hover { transform: translateY(-4px); border-color: rgba(212,163,115,0.3); }


.cap-cell:hover .cap-icon {
  opacity: 1;
  transform: translateY(-2px);
}

.cap-cell:hover .cap-accent { width: 64px; }

.cap-cell:hover .cap-tagline {
  opacity: 1;
  transform: translateY(0);
}

.cap-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid rgba(212,163,115,0.25);
  padding-bottom: 4px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}
.cap-cta:hover {
  border-color: var(--copper);
  gap: 14px;
}

@media (max-width: 768px) {
  .capabilities { padding: 60px 0 0; }
  .cap-grid { grid-template-columns: 1fr; gap: 12px; }
  .cap-cell { aspect-ratio: 16 / 9; }
  .cap-bg { opacity: 0.85; }
  .cap-content { padding: 28px; }
  .cap-tagline { opacity: 1; transform: none; }
  .cap-accent { width: 48px; }
}

@media (max-width: 480px) {
  .cap-cell { aspect-ratio: 4 / 3; }
  .cap-icon { font-size: 2rem; }
  .cap-content { padding: 24px; }
  .cap-name { font-size: 0.8rem; }
  .cap-tagline { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cap-icon, .cap-accent, .cap-tagline { transition: none; }
  .cap-tagline { opacity: 1; transform: none; }
}

/* CTA */
.cta-section {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-section h2 { margin-bottom: 24px; }
.cta-desc {
  font-size: 1rem; line-height: 1.7; 
  color: rgba(234,230,223,0.55); margin-bottom: 40px;
}

/* Footer */
.footer {
  background: var(--dark); padding: 60px 0 24px;
  border-top: 1px solid rgba(234,230,223,0.06);
}
.footer-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 48px;
}
.footer-label {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(234,230,223,0.55); margin-bottom: 16px;
}
.footer-phone {
  font-size: 1.75rem; font-weight: 200;
  letter-spacing: -0.01em; color: var(--cream-bright);
  margin-bottom: 8px;
}
.footer-email { font-size: 0.8rem; color: rgba(234,230,223,0.65); }
.footer-location { font-size: 0.8rem; color: rgba(234,230,223,0.55); margin-top: 24px; }
.footer-links { text-align: right; }
.footer-links a {
  display: block; color: rgba(234,230,223,0.65);
  font-size: 0.85rem; padding: 4px 0; text-decoration: none;
}
.footer-links a:hover { color: var(--copper); }
.footer-bar {
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid rgba(234,230,223,0.06);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.footer-copy {
  color: rgba(234,230,223,0.65); font-size: 0.8rem;
}
.footer-legal {
  display: flex; gap: 20px;
}
.footer-legal a {
  color: rgba(234,230,223,0.55); font-size: 0.8rem;
  text-decoration: none;
}

/* ════════════════════════════════════════════ */
/* Sub-page components — Smart Living / Services / Solutions / Contact */
/* ════════════════════════════════════════════ */

/* Pillars */
.pillar {
  display: flex; align-items: flex-start; gap: 24px;
}
.pillar-num {
  display: none;
}
@media (min-width: 640px) {
  .pillar-num {
    display: block;
    font-size: 48px; font-weight: 200; color: var(--copper);
    min-width: 60px; line-height: 1;
  }
}
.pillar-tag {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); font-weight: 500; margin-bottom: 8px;
}
.pillar h3 {
  font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 300;
  color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.pillar p {
  font-size: 1rem; line-height: 1.7; color: var(--warm-text);
  margin-bottom: 12px;
}

/* Energy cards */
.energy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; margin-top: 24px;
}
.energy-card {
  padding: 16px;
  background: rgba(212,163,115,0.06);
  border-radius: 4px;
}
.energy-icon { font-size: 1.5rem; margin-bottom: 4px; }
.energy-label { font-weight: 500; color: var(--ink); font-size: 0.85rem; }
.energy-desc { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.why-card {
  padding: 24px;
  border-left: 2px solid var(--copper);
}
.why-card h4 {
  font-size: 1rem; font-weight: 500; color: var(--ink);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem; line-height: 1.6; color: var(--warm-text);
}

/* Services */
.services-list {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 80px;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .service-item {
    grid-template-columns: 3fr 2fr;
    gap: 40px;
  }
}
.service-separator {
  width: 32px; height: 1px;
  background: rgba(234,230,223,0.12);
  margin-bottom: 16px;
}
.service-tagline {
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper);
  font-weight: 500; margin-bottom: 12px;
}
.service-heading {
  font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 200;
  letter-spacing: -0.02em; color: var(--cream-bright);
  margin-bottom: 16px; line-height: 1.1;
}
.service-desc {
  font-size: 0.85rem; line-height: 1.6;
  color: rgba(234,230,223,0.65); font-weight: 300;
  margin-bottom: 20px;
}
.service-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-features li {
  font-size: 0.85rem; color: rgba(234,230,223,0.55);
  font-weight: 300; padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--copper);
}
.service-visual {
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,35,40,0.5);
  aspect-ratio: 4/3; font-size: 3rem;
  position: relative; opacity: 0.15;
}

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.solution-card {
  padding: 40px 32px;
  background: #1E2328;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 360px;
}
.solution-subtitle {
  font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--copper);
  font-weight: 500; margin-bottom: 16px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-step { text-align: center; }
.process-num {
  font-size: 36px; font-weight: 200;
  color: var(--copper); margin-bottom: 12px;
}
.process-step h3 {
  font-size: 1rem; font-weight: 500;
  color: var(--cream-bright); margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem; color: rgba(234,230,223,0.55);
  font-weight: 300; line-height: 1.6;
}

/* Partners */
.partners-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 32px;
}
.partners-row span {
  color: rgba(234,230,223,0.55);
  font-size: 1.1rem; font-weight: 200;
  letter-spacing: 0.05em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-input {
  background: transparent;
  border: 1px solid rgba(234,230,223,0.1);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--cream-bright);
  font-weight: 300;
  font-family: inherit;
}
.form-input::placeholder {
  color: rgba(234,230,223,0.55);
  font-weight: 300;
}
.form-input:focus {
  outline: none;
  border-color: rgba(212,163,115,0.4);
}

/* Trust badges */
/* Partner Logo Bar — replaces text-based trust badges */
.partner-bar {
  padding: 60px 0;
  background: var(--cream);
}

.partner-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
  margin-bottom: 32px;
  opacity: 0.6;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
}

.partner-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-svg {
  height: 32px;
  width: auto;
}

.partner-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 768px) {
  .partner-logos { gap: 32px; }
  .partner-item { opacity: 0.7; }
  .partner-svg { height: 24px; }
  .partner-label { margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .partner-logos { gap: 24px; }
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 200;
  color: var(--copper);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Nav toggle for mobile */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; text-decoration: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(234,230,223,0.5);
  transition: all 0.2s;
}
.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); }

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: 100vh; }
  .hero h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  .hero-sub { font-size: 0.95rem !important; max-width: 100% !important; }
  .nav-inner { padding: 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(30,35,40,0.98);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(234,230,223,0.06);
  }
  .nav-links.open a { font-size: 1rem; }
  .section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-grid { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-grid { flex-direction: column; }
  .footer-links { text-align: left; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem !important; }
  .hero-sub { font-size: 0.9rem !important; }
  .solution-card { padding: 32px 20px; min-height: auto; }
  .service-visual { display: none; }
  .service-item { gap: 16px; }
  .hero-logo { max-width: 180px !important; }
  .energy-grid { grid-template-columns: 1fr 1fr; }
}

/* Solution cards with images */
.solution-card-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 80px;
}
.solution-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: rgba(234,230,223,0.03);
}
.solution-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.4s;
}
.solution-img-wrap img:hover { opacity: 0.9; }
.solution-content { text-align: left; }

@media (max-width: 768px) {
  .solution-card-with-img { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .solution-img-wrap { aspect-ratio: 16/9; }
}

/* Solutions stack (replaces old grid for img layout) */
.solutions-stack {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 1200px; margin: 0 auto;
}

/* Solutions page — dark section with images */
.solutions-stack .service-heading {
  color: var(--cream-bright);
  font-weight: 300;
}
.solutions-stack .service-separator {
  background: var(--copper);
  opacity: 0.4;
}
.solutions-stack .service-desc {
  color: var(--cream-bright);
  opacity: 0.85;
}
.solutions-stack .service-features li {
  color: var(--cream-bright);
  opacity: 0.55;
  font-weight: 300;
}
.solutions-stack .solution-subtitle {
  color: var(--copper);
  opacity: 0.8;
}
.solutions-stack .solution-card-with-img {
  border-bottom: 1px solid rgba(234,230,223,0.04);
  padding: 48px 0;
  margin-bottom: 0;
}
.solutions-stack .solution-card-with-img:last-child {
  border-bottom: none;
}
.solutions-stack .solution-img-wrap img {
  opacity: 0.85;
}

/* Process + Partners on cream bg (solutions page) */
.solutions-page .process-step h3 {
  color: var(--ink);
}
.solutions-page .process-step p {
  color: var(--warm-text);
  opacity: 0.7;
}
.solutions-page .partners-row span {
  color: var(--muted);
}

/* Service items with images */
.service-item-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 80px;
}
.service-item-with-img:last-child {
  margin-bottom: 0;
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: rgba(234,230,223,0.03);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.4s;
}
.service-img-wrap img:hover { opacity: 1; }
.service-item-with-img .service-main { text-align: left; }
.service-visual { display: none; } /* hide emoji placeholders */

@media (max-width: 768px) {
  .service-item-with-img { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .service-img-wrap { aspect-ratio: 16/9; }
}

/* Smart Living — pillars with images */
.pillar-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.pillar-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: rgba(42,36,32,0.03);
}
.pillar-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.4s;
}
.pillar-img-wrap img:hover { opacity: 0.95; }
.pillar-content { text-align: left; }
.pillar-content p {
  color: var(--warm-text);
  margin-bottom: 12px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pillar-with-img { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .pillar-img-wrap { aspect-ratio: 16/9; }
}

/* Section divider — gold gradient */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,163,115,0.25) 20%, rgba(212,163,115,0.4) 50%, rgba(212,163,115,0.25) 80%, transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* Section divider — gold gradient breathing between color transitions */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,163,115,0.2) 20%, rgba(212,163,115,0.35) 50%, rgba(212,163,115,0.2) 80%, transparent);
  max-width: 480px;
  margin: 0 auto;
}

/* Service item anchor offset for sticky nav */
.service-item {
  scroll-margin-top: 100px;
}
html { scroll-behavior: smooth; }
