/* ===================================================
   A SMITH LTD — "Craftsman Green" Design System
   =================================================== */

/* ---------- TOKENS ---------- */
:root {
  --page:        #f6f6f4;
  --smoke:       #efefed;
  --white:       #ffffff;
  --forest:      #1c3a27;
  --forest-dark: #132b1b;
  --amber:       #bf7b20;
  --amber-light: #d4962d;
  --ink:         #191917;
  --ink-mid:     #4a4a46;
  --ink-light:   #8a8a84;
  --border:      #dcdcda;
  --radius:      4px;
  --header-h:    72px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--page);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
ul { list-style: none; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: var(--header-h); }

/* ---------- TYPOGRAPHY ---------- */
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}
.btn-primary:hover { background: var(--forest-dark); border-color: var(--forest-dark); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--white); }
.btn.is-loading { pointer-events: none; opacity: .7; }
.btn.is-loading .btn-label { opacity: 0; }
.btn.is-loading::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.18); }
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  background: var(--amber);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 3px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-text em { font-style: normal; color: rgba(255,255,255,.55); font-weight: 400; }

/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover { color: var(--white); }
.nav-cta {
  padding: .5rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: background .2s, border-color .2s !important;
}
.nav-cta:hover { background: var(--amber) !important; border-color: var(--amber) !important; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--forest-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  color: var(--white);
  padding: 8px;
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  max-height: 860px;
  overflow: hidden;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px clamp(24px, 5vw, 72px);
  background: var(--page);
}
.hero-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.hero h1 { color: var(--ink); margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 400px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -8px;
  background: var(--forest);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.badge-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-light);
}
.badge-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--forest);
  padding: 28px 24px;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--amber-light); flex-shrink: 0; }

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-sub { color: var(--ink-mid); font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--forest);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { margin-bottom: 1.2rem; }
.card-icon svg { width: 40px; height: 40px; }
.service-card h3 { margin-bottom: .6rem; color: var(--forest); }
.service-card p { color: var(--ink-mid); font-size: .93rem; }

/* ---------- GALLERY ---------- */
.gallery-section {
  background: var(--smoke);
  padding: 100px 24px;
}
.gallery-section .section-header { margin: 0 auto 2rem; }
.gallery-filters {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--white);
  transition: background .2s, color .2s, border-color .2s;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--border);
  display: flex;
}
.g-tile.g-tall { grid-row: span 2; }
.g-tile.g-wide { grid-column: span 2; }
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1;
  transition: transform .45s ease;
}
.g-tile:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,45,28,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.g-tile:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
}
.g-tile.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15,20,18,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none !important; }
.lb-image-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.lb-image-wrap img { max-height: 80vh; border-radius: var(--radius); }
.lb-caption { color: rgba(255,255,255,.7); font-size: .88rem; text-align: center; }
.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 1.6rem;
  z-index: 501;
  padding: 8px;
  line-height: 1;
}
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 1.8rem;
  z-index: 501;
  padding: 16px;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  line-height: 1;
  transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(0,0,0,.55); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ---------- BEFORE / AFTER ---------- */
.before-after-section {
  padding: 100px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.ba-wrap { display: flex; flex-direction: column; gap: .75rem; }
.ba-desc { font-size: .9rem; color: var(--ink-mid); font-style: italic; text-align: center; }
.ba-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  user-select: none;
  cursor: ew-resize;
}
.ba-after-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ba-before-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.ba-before-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-grip {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  flex-shrink: 0;
  position: relative;
}
.ba-grip::before, .ba-grip::after {
  content: '';
  position: absolute;
  border: 5px solid transparent;
}
.ba-grip::before {
  border-right-color: var(--forest);
  left: 4px;
}
.ba-grip::after {
  border-left-color: var(--forest);
  right: 4px;
}
.ba-label {
  position: absolute;
  top: 12px;
  padding: 3px 10px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ba-label-before { left: 12px; }
.ba-label-after  { right: 12px; }

/* ---------- PROCESS ---------- */
.process-section {
  background: var(--forest);
  padding: 100px 24px;
}
.process-section .section-header { color: var(--white); }
.process-section .section-header .label { color: var(--amber-light); }
.process-section h2 { color: var(--white); }
.process-steps {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-body h3 { color: var(--white); margin-bottom: .4rem; font-size: 1rem; }
.step-body p { color: rgba(255,255,255,.65); font-size: .88rem; }
.process-connector {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,.2);
  margin-top: 1.4rem;
  flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
  gap: 5rem;
  align-items: center;
}
.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; flex: 1; }
.about-text .label { display: block; margin-bottom: .6rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--ink-mid); margin-bottom: 1rem; }
.about-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink-mid);
  font-size: .93rem;
}
.about-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ---------- REVIEWS ---------- */
.reviews-section {
  background: var(--forest-dark);
  padding: 96px 0 80px;
  overflow: hidden;
}
.reviews-intro {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 56px;
}
.reviews-intro .label { color: var(--amber); }
.reviews-intro h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.score-stars {
  color: var(--amber);
  font-size: 1.3rem;
  letter-spacing: 3px;
}
.score-text {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}

/* marquee rows */
.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--forest-dark) 30%, transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--forest-dark) 30%, transparent);
}
.marquee-row { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 18px;
  width: max-content;
}
.marquee-fwd .marquee-inner {
  animation: mq-left 55s linear infinite;
}
.marquee-rev .marquee-inner {
  animation: mq-right 62s linear infinite;
}
.marquee-wrap:hover .marquee-inner {
  animation-play-state: paused;
}
@keyframes mq-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mq-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* review card */
.r-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.375rem 1.375rem 1.125rem;
  width: 306px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.r-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.r-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.r-stars {
  color: var(--amber);
  font-size: .95rem;
  letter-spacing: 2px;
}
.r-quote {
  font-size: .875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  flex: 1;
}
.r-name {
  font-size: .75rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--forest);
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .marquee-wrap::before,
  .marquee-wrap::after { width: 48px; }
}

/* ---------- EXPECT SECTION ---------- */
.expect-section {
  background: var(--smoke);
  padding: 100px 24px;
}
.expect-section .section-header { margin: 0 auto 3rem; }
.expect-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.expect-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.expect-icon {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.expect-card h3 { margin-bottom: .5rem; font-size: 1rem; color: var(--forest); }
.expect-card p { color: var(--ink-mid); font-size: .9rem; }

/* ---------- CONTACT ---------- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
  gap: 5rem;
  align-items: start;
}
.contact-info .label { display: block; margin-bottom: .6rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--ink-mid); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink-mid);
  font-size: .95rem;
}
.contact-row svg { width: 18px; height: 18px; color: var(--forest); flex-shrink: 0; }
.contact-row a { color: var(--forest); font-weight: 500; }
.contact-row a:hover { text-decoration: underline; }

/* form */
.contact-form {
  position: relative;
}
.contact-form.is-sent .field,
.contact-form.is-sent .btn-submit { display: none; }
.contact-form.is-sent .form-success { display: flex; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--forest);
  border-radius: var(--radius);
  animation: fadeUp .4s ease;
}
.form-success svg { width: 32px; height: 32px; color: var(--forest); }
.form-success h3 { font-size: 1.2rem; }
.form-success p { color: var(--ink-mid); }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.field label span { color: var(--amber); }
.field input,
.field select,
.field textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--forest); }
.field textarea { resize: vertical; }
.btn-submit { width: 100%; justify-content: center; padding: .9rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: .75rem; }
.footer-contact-line { color: var(--white) !important; font-size: .95rem; font-weight: 600; margin-bottom: .25rem; display: block; }
.footer-contact-line:hover { text-decoration: underline; }
.footer-email { color: var(--amber-light) !important; font-size: .9rem; display: block; }
.footer-email:hover { text-decoration: underline; }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .25rem;
}
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav a:hover { color: var(--white); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal p { font-size: .8rem; color: rgba(255,255,255,.4); }
.logo-light .logo-text { color: var(--white); }

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 480px;
  }
  .process-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }
  .hero-text {
    padding: 60px 24px;
    order: 2;
  }
  .hero-image {
    order: 1;
    height: 55vw;
    max-height: 480px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image { aspect-ratio: 16/9; }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-tile.g-wide { grid-column: span 1; }
  .expect-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .trust-inner { gap: 1.5rem; }
  .hero-text { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-legal { flex-direction: column; text-align: center; }
}
