/* ============================================================
   EVOLUTION FURNITURE — styles.css
   Reference: evolutionfc.com (audited 2026-03-27)
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
ul, ol  { list-style: none; }
button  { cursor: pointer; border: none; background: none; }

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Fonts
     ivymode / proxima-nova / dunbar-tall → Adobe Fonts (premium)
     Cormorant Garamond / Raleway → Google Fonts fallbacks          */
  --font-header: "ivymode", 'Cormorant Garamond', Georgia, serif;
  --font-body:   "proxima-nova", 'Raleway', sans-serif;
  --font-accent: "dunbar-tall", "dunbar", 'Raleway', sans-serif;

  /* Colours */
  --color-dark:       #0a2528;
  --color-dark-alt:   #0a3f37;   /* We Create / accent heading green */
  --color-teal:       #5b998d;   /* accent / CTA / links */
  --color-teal-mid:   #688682;
  --color-bg:         #ffffff;   /* nav background */
  --color-cream:      #fbf8ef;   /* main page background */
  --color-cream-warm: #fff7e8;   /* dark section text */
  --color-text:       #333333;
  --color-muted:      rgba(51,51,51,.65);

  /* Type scale */
  --size-hero:  clamp(1.5rem, 3vw, 2.25rem);   /* hero subtitle */
  --size-h2:    clamp(2.25rem, 4vw, 3rem);
  --size-h3:    clamp(1.5rem, 2.5vw, 2.25rem);
  --size-h4:    1.375rem;
  --size-body:  0.9375rem;
  --size-small: 0.8125rem;
  --size-label: 0.6875rem;

  /* Spacing */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3.75rem;
  --sp-8:  5rem;
  --sp-10: 6.25rem;

  /* Layout */
  --max-w:   1200px;
  --nav-h:   100px;
  --gap-col: 3.75rem;
}

/* ── GLOBAL TYPOGRAPHY ──────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-header);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--size-body);
  font-style: italic;
  color: var(--color-teal);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.01em;
}

h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2);  }
h3 { font-size: var(--size-h3);  }

p { margin-bottom: var(--sp-2); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

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

/* Color utilities */
.text-dark { color: var(--color-dark); }
.text-teal  { color: var(--color-teal); }

/* ── BACKGROUND UTILITIES ───────────────────────────────── */
.bg-swirl {
  background-image: url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/ef-swirl-12-1920w.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--color-cream);
}
.bg-swirl-alt {
  background-image: url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/ef+swirl-13-1920w.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #ffffff;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-green {
  display: inline-block;
  background: url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/EF+green+button-1920w.png')
              center / cover no-repeat, var(--color-teal);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 400;
  padding: 0.75rem 2rem;
  min-width: 180px;
  text-align: center;
  transition: opacity .2s;
}
.btn-green:hover { opacity: .88; }

/* ── LEARN MORE ARROW ───────────────────────────────────── */
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: 400;
  color: var(--color-teal);
  transition: gap .2s, color .2s;
  white-space: nowrap;
}
.learn-more:hover { gap: 1rem; }
.learn-more svg   { width: 1.75rem; height: 0.75rem; flex-shrink: 0; overflow: visible; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(10,37,40,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  min-height: var(--nav-h);
  gap: var(--sp-4);
}
.nav-logo img { height: 80px; width: auto; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem var(--sp-4);
  flex: 1;
}
.nav-links a,
.nav-links .dropdown-toggle {
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: 400;
  color: var(--color-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links .dropdown-toggle:hover { color: var(--color-teal); }
.nav-links a.nav-link--active      { color: var(--color-teal); }

/* JS-toggled dropdown open state */
.dropdown-menu--open { display: block; }

/* "Our Service Area" sits on its own row */
.nav-service-area {
  flex-basis: 100%;
  text-align: right;
}

.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-dark);
  min-width: 240px;
  padding: var(--sp-1) 0;
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.625rem var(--sp-3);
  font-size: var(--size-small);
  color: var(--color-cream-warm) !important;
  transition: background .15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.08); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 68vh;
  background: var(--color-dark)
    url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/EF+graphics-08-1920w.png')
    center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,37,40,.25);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  margin-top: 0;
  position: absolute;
  top: 2%;
}
.hero-logo { width: 100%; max-width: 360px; margin: 0 auto var(--sp-3); }
.hero h1   {
  color: var(--color-cream-warm);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* ── WE CREATE ──────────────────────────────────────────── */
.we-create {
  background: var(--color-cream);
  padding: var(--sp-6) 0 var(--sp-8);
}
.we-create-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--gap-col);
  align-items: center;
}
.we-create-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.0;
  color: var(--color-dark-alt);
}
.we-create-text p  { max-width: 480px; }

/* ── OUR PROMISE ────────────────────────────────────────── */
.our-promise {
  background: #ffffff;
  padding: var(--sp-4) var(--sp-6) var(--sp-8);
}
.our-promise-inner  { max-width: var(--max-w); margin: 0 auto; }
.our-promise h2     { font-size: clamp(2.25rem, 5vw, 4.25rem); line-height: 1.0; }

/* ── VISION / APPROACH / SERVICE ────────────────────────── */
.three-cols-section { padding: 0 var(--sp-6) var(--sp-10); }
.three-cols-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--gap-col);
  align-items: start;
}
.three-cols-image img { width: 100%; height: auto; }
.col-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-5);
  align-items: start;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--color-teal);
}
.col-row:last-child  { border-bottom: 1px solid var(--color-teal); }
.col-row-title h3    { font-size: var(--size-h3); line-height: 1.1; margin-bottom: var(--sp-2); }
.col-row p           { font-size: var(--size-small); }

/* ── ARE YOU AN INTERIOR DESIGNER? ─────────────────────── */
.designer-section {
  background-color: #fff7e8 !important;
  background-image: linear-gradient(rgba(255, 247, 232, 0.72), rgba(255, 247, 232, 0.72)), url('../images/ef-bg-swirl.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 16px 40px;
}
.designer-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-col);
}
.designer-section-text { flex: 1; }
.designer-section-text h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: var(--sp-3);
}
.designer-section-text p { max-width: 600px; }
.designer-section-cta { flex-shrink: 0; }

/* ── THE PROCESS ────────────────────────────────────────── */
.process-section {
  background: var(--color-dark)
    url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/shutterstock_1723139395-1920w.jpg')
    center / cover no-repeat;
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,37,40,.88);
  pointer-events: none;
}
.process-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-6);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--gap-col);
  align-items: start;
}
.process-left h2 {
  color: var(--color-cream-warm);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}
.process-left h4 { font-style: italic; }
.process-left p  { color: rgba(255,247,232,.75); font-size: var(--size-small); }
.process-left a  { color: var(--color-teal); }
.process-left-photo {
  margin-top: var(--sp-4);
  overflow: hidden;
}
.process-left-photo img { width: 100%; height: auto; display: block; }

.process-steps { display: flex; flex-direction: column; gap: var(--sp-3); }
.process-row   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.step-card {
  background: rgba(255,247,232,.06);
  padding: var(--sp-3);
  border: 1px solid rgba(255,247,232,.1);
}
.step-num {
  font-family: var(--font-body);
  font-size: var(--size-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: var(--sp-1);
}
.step-card h3 {
  color: var(--color-cream-warm);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: var(--sp-2);
}
.step-card p  { color: rgba(255,247,232,.7); font-size: var(--size-small); }

.step-cta {
  background: var(--color-cream);
  padding: var(--sp-3);
}
.step-cta h3 { color: var(--color-dark); font-size: var(--size-h4); margin-bottom: var(--sp-2); }
.step-cta p  { color: var(--color-text); font-size: var(--size-small); margin-bottom: var(--sp-3); }

/* ── SERVICES ───────────────────────────────────────────── */
.services-section {
  background-color: #fff7e8;
  background-image: linear-gradient(rgba(255, 247, 232, 0.72), rgba(255, 247, 232, 0.72)), url('../images/ef-bg-swirl-alt.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 100px var(--sp-6);
}
.services-inner  { max-width: var(--max-w); margin: 0 auto; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  align-items: start;
}
.services-header h2 { font-size: var(--size-h2); line-height: 1.1; }
.services-header-text p { font-size: var(--size-small); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.service-card {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(251,248,239,.55) 0%, rgba(251,248,239,.1) 35%, transparent 60%);
  z-index: 1;
}
.service-card-body {
  position: relative;
  z-index: 2;
  padding: var(--sp-3);
}
.service-card h3 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: var(--sp-2);
}
.btn-view-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: 400;
  color: var(--color-dark);
  transition: color .2s, gap .2s;
}
.btn-view-service:hover { color: var(--color-teal); gap: 0.75rem; }

/* Contact card variant */
.service-card--contact {
  background-color: var(--color-cream);
  background-image: none !important;
  justify-content: center;
}
.service-card--contact::before { display: none; }
.service-card--contact h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); }

/* ── PROJECTS ───────────────────────────────────────────── */
.projects-section { padding: var(--sp-10) var(--sp-6); background: #ffffff; }
.projects-inner   { max-width: var(--max-w); margin: 0 auto; }
.projects-header  {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-6);
}
.projects-header h2 { font-size: var(--size-h2); }
.projects-header p  { font-size: var(--size-small); }
.projects-header p a { color: var(--color-teal); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: var(--sp-5);
}
.project-tile {
  display: block;
  position: relative;
  height: 340px;
  background: var(--color-dark) center / cover no-repeat;
  overflow: hidden;
}
.project-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,40,.7) 0%, transparent 55%);
}
.project-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: var(--sp-3) var(--sp-2);
}
.project-tile-label h3 { color: var(--color-cream-warm); font-size: 1.1rem; margin-bottom: 0; }
.projects-cta { text-align: center; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  background-color: #fff7e8;
  padding: var(--sp-10) var(--sp-6);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-col);
  align-items: center;
}
.testimonials-left h2 { font-size: var(--size-h2); margin-bottom: var(--sp-2); }
.testimonials-left h3 {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--sp-3);
}
.testimonials-left p { margin-bottom: var(--sp-4); font-size: var(--size-small); }

.testimonials-right { position: relative; }
.quote-mark-open,
.quote-mark-close {
  font-family: var(--font-header);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-teal);
  display: block;
}
.quote-mark-open  { margin-bottom: -2rem; }
.quote-mark-close { text-align: right; margin-top: var(--sp-2); }
.testimonials-right blockquote {
  background: rgba(255,255,255,.5);
  padding: var(--sp-4);
}
.testimonials-right blockquote h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  margin-bottom: var(--sp-2);
}
.testimonials-right blockquote p  { font-size: var(--size-small); margin-bottom: var(--sp-3); }
.testimonials-right blockquote h4 {
  font-family: var(--font-header);
  font-size: var(--size-body);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
}

/* ── INSIGHTS ───────────────────────────────────────────── */
.insights-section { background: var(--color-bg); }

.insights-header-card {
  background: var(--color-cream)
    url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/EF+bg-1920w.png')
    center / cover no-repeat;
}
.insights-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.insights-header-left h2     { font-size: var(--size-h2); margin-bottom: var(--sp-2); }
.insights-header-inner p     { font-size: var(--size-small); }

.insights-articles { padding: 0; }
.insights-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.insight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  border-bottom: 1px solid rgba(10,37,40,.08);
}
.insight-row:last-child { border-bottom: none; }
.insight-row-img {
  display: block;
  background-size: cover;
  background-position: center;
  background-color: var(--color-cream);
  min-height: 320px;
}
.insight-row-text {
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-date {
  font-family: var(--font-body);
  font-size: var(--size-label);
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2);
}
.insight-row-text h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.insight-row-text h3 a:hover { color: var(--color-teal); }
.insight-row-text p { font-size: var(--size-small); }

/* ── ASID ────────────────────────────────────────────────── */
.asid-section {
  background-color: #0a3f37;
  background-image: url('../images/ef-bg-waves.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 16px 40px;
}
.asid-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.asid-text { flex: 1; }
.asid-text h2 {
  color: var(--color-cream-warm);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  margin-bottom: var(--sp-3);
}
.asid-text p { color: rgba(255,247,232,.75); font-size: var(--size-small); max-width: 600px; }
.asid-cta    { flex-shrink: 0; }

/* ── SERVICE AREA ────────────────────────────────────────── */
.service-area-section {
  background: var(--color-cream);
  padding: var(--sp-10) var(--sp-6);
}
.service-area-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-col);
  align-items: start;
}
.service-area-text h2 { font-size: var(--size-h2); margin-bottom: var(--sp-3); }
.service-area-text > p { font-size: var(--size-small); margin-bottom: var(--sp-4); }
.service-area-text > p:last-child { margin-top: var(--sp-4); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--sp-3);
  margin-bottom: 0;
}
.cities-col p         { margin-bottom: 0.4rem; }
.cities-col a         { font-size: var(--size-small); color: var(--color-teal); transition: color .2s; }
.cities-col a:hover   { color: var(--color-dark); }
.cities-col p:not(:has(a)) { font-size: var(--size-small); color: var(--color-text); }

.service-area-map iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  background-color: #fff7e8;
  background-image: linear-gradient(rgba(255, 247, 232, 0.72), rgba(255, 247, 232, 0.72)), url('../images/ef-bg-contact.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 102px var(--sp-6) 92px;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-col);
  align-items: start;
}
.contact-left-img {
  width: 100%;
  height: 520px;
  background: url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/shutterstock_1894377529-1920w.jpg')
              center / cover no-repeat;
}
.contact-right h4 { color: var(--color-teal); }
.contact-right h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: var(--sp-4); }

.contact-form    { margin-top: var(--sp-3); }
.form-row        { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.form-group      { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--sp-3); }
.form-group label {
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: 400;
  color: var(--color-teal);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,37,40,.25);
  font-family: var(--font-body);
  font-size: var(--size-body);
  padding: 0.5rem 0;
  outline: none;
  transition: border-color .2s;
  color: var(--color-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--color-teal); }
.form-group textarea     { resize: vertical; min-height: 100px; }
.btn-submit {
  display: inline-block;
  background: url('https://lirp.cdn-website.com/30f0bf8a/dms3rep/multi/opt/EF+green+button-1920w.png')
              center / cover no-repeat, var(--color-teal);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 400;
  padding: 0.75rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  margin-top: var(--sp-1);
}
.btn-submit:hover { opacity: .88; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer     { background: var(--color-dark); padding: var(--sp-8) var(--sp-6); text-align: center; }
.footer-inner    { max-width: var(--max-w); margin: 0 auto; }
.footer-logo     { height: 91px; width: auto; margin: 0 auto var(--sp-4); }
.footer-address  { font-size: var(--size-small); color: var(--color-teal); margin-bottom: var(--sp-2); }
.footer-credit   { font-size: var(--size-small); color: rgba(255,247,232,.35); }
.footer-credit a { color: rgba(255,247,232,.5); transition: color .2s; }
.footer-credit a:hover { color: var(--color-teal); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sp-10: 4rem; --gap-col: 2.5rem; }
  .three-cols-inner         { grid-template-columns: 240px 1fr; }
  .col-row                  { grid-template-columns: 160px 1fr; gap: var(--sp-3); }
  .services-grid            { grid-template-columns: repeat(2, 1fr); }
  .projects-grid            { grid-template-columns: repeat(2, 1fr); }
  .process-inner            { grid-template-columns: 300px 1fr; }
  .insights-header-inner    { grid-template-columns: 1fr 1fr; }
  .insights-header-left     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; --sp-6: 1.5rem; --sp-10: 3rem; }
  .nav-links               { display: none; }
  .we-create-inner         { grid-template-columns: 1fr; }
  .three-cols-inner        { grid-template-columns: 1fr; }
  .three-cols-image        { margin-bottom: var(--sp-4); }
  .col-row                 { grid-template-columns: 1fr; gap: var(--sp-2); }
  .designer-section-inner  { flex-direction: column; align-items: flex-start; }
  .process-inner           { grid-template-columns: 1fr; }
  .process-row             { grid-template-columns: 1fr; }
  .services-header         { grid-template-columns: 1fr; }
  .services-grid           { grid-template-columns: 1fr; }
  .projects-grid           { grid-template-columns: 1fr 1fr; }
  .testimonials-inner      { grid-template-columns: 1fr; }
  .insights-header-inner   { grid-template-columns: 1fr; }
  .insight-row             { grid-template-columns: 1fr; }
  .insight-row-img         { min-height: 240px; }
  .service-area-inner      { grid-template-columns: 1fr; }
  .cities-grid             { grid-template-columns: repeat(2, 1fr); }
  .asid-inner              { flex-direction: column; align-items: flex-start; }
  .contact-inner           { grid-template-columns: 1fr; }
  .contact-left-img        { height: 260px; }
  .form-row                { grid-template-columns: 1fr; }
}
