/* ============================================================
   TRADES TEMPLATE — style.css
   Palette: steel #1C2740 | blue #1A5FB4 | amber #E07B1A | cream #F4F7FB
   Fonts: Montserrat (headings) | Inter (body)
   ============================================================ */

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

:root {
  --steel:   #1C2740;
  --steel2:  #131E30;
  --blue:    #1A5FB4;
  --blue-l:  #3B82D8;
  --blue-d:  #0F3D7A;
  --amber:   #E07B1A;
  --amber-l: #F59C3C;
  --white:   #FAFEFF;
  --cream:   #F4F7FB;
  --cream2:  #E8EEF5;
  --ink:     #0D1A2A;
  --stone:   #4A6080;
  --border:  #C8D8EE;
  --r:       4px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section { padding: 88px 0; }

/* ---- TYPOGRAPHY ---- */
.section__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section__label--center { text-align: center; }

.section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--steel);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section__title em {
  font-style: italic;
  color: var(--blue);
}
.section__title--center { text-align: center; }

.section__sub {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

.title-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 0 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--r);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s var(--ease);
  text-align: center;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-l);
  border-color: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 95, 180, .35);
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-l);
  border-color: var(--amber-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 123, 26, .4);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--steel);
  border-color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .65);
}
.btn--ghost-light:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ---- EMERGENCY BAR ---- */
.emergency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--amber);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.emergency-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.emergency-bar a:hover { opacity: .8; }

.emergency-bar__dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: var(--bar-height, 0px); left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: var(--steel);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav__logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  color: rgba(255, 255, 255, .8);
  font-size: .87rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--r);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700 !important;
  font-size: .84rem !important;
  letter-spacing: .03em;
  transition: background .2s !important;
}
.nav__cta:hover { background: var(--amber-l) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s var(--ease);
}

/* ---- HERO ---- */
.hero {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--bar-height, 0px) + 66px + 48px) 0 72px;
  background: var(--steel2);
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
    rgba(19, 30, 48, .94) 0%,
    rgba(19, 30, 48, .74) 55%,
    rgba(19, 30, 48, .38) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-l);
  margin-bottom: 16px;
}
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, .72);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
}
.trust-item__icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: #4cef90;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .35);
  animation: bounce 2.2s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ---- WAVE DIVIDERS ---- */
.wave { line-height: 0; overflow: hidden; display: block; }
.wave svg { display: block; width: 100%; }
.wave--hero-to-steel  { background: var(--steel2); }
.wave--steel-to-cream { background: var(--steel); }
.wave--white-to-steel { background: var(--white); }

/* ---- SERVICES ---- */
.services { background: var(--steel); }
.services .section__label { color: var(--blue-l); }
.services .section__title { color: var(--white); }
.services .section__sub   { color: rgba(255, 255, 255, .55); }

.services__hd { margin-bottom: 52px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid var(--amber);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: background .25s, border-left-color .25s, transform .3s var(--ease);
}
.service-card:hover {
  background: rgba(255, 255, 255, .1);
  border-left-color: var(--blue-l);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(59, 130, 216, .13);
  border: 1px solid rgba(59, 130, 216, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
}
.service-card:hover .service-card__icon {
  background: rgba(59, 130, 216, .22);
  border-color: rgba(59, 130, 216, .4);
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-l);
}
.service-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .52);
  line-height: 1.7;
}

/* ---- ABOUT ---- */
.about { background: var(--cream); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 480px;           /* explicit height so absolute children fill correctly */
}
/* Fallback gradient — always rendered behind the real image */
.about__image-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--steel) 0%, var(--blue-d) 100%);
  border-radius: var(--r);
  z-index: 0;
}
/* Real image sits on top; onerror="this.style.display='none'" reveals fallback */
.about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
  z-index: 1;
}
.about__rating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--r);
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .28);
}
.about__rating-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.about__rating-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.about__text .section__title { color: var(--steel); }
.about__text > p {
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--stone);
  padding: 11px 0;
  border-bottom: 1px solid var(--cream2);
}
.about__list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--blue);
}

.about__stats {
  display: flex;
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.about__stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.about__stat:last-child { border-right: none; }
.about__stat-val {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.about__stat-lbl {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---- PHOTO STRIP ---- */
.photo-strip {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(19, 30, 48, .88) 0%,
    rgba(19, 30, 48, .42) 55%,
    transparent 100%);
  display: flex;
  align-items: flex-end;
}
.photo-strip__quote {
  padding: 40px 5%;
  color: var(--white);
  max-width: 680px;
}
.photo-strip__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 12px;
}
.photo-strip__source {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* ---- GALLERY ---- */
.gallery { background: var(--cream); }
.gallery .section__title { margin-bottom: 40px; }

/* Base gallery grid — 4 cols, height on items not rows so empty rows vanish */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--r);
  background: var(--steel);  /* dark bg if image loads slow */
  min-height: 260px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }

/* n0 — hero only: spans all 4 cols, taller */
.gallery__grid--n0 .gallery__item--large {
  grid-column: 1 / -1;
  min-height: 420px;
}

/* n2 — large + 2 small: small items each fill the full 2-row height */
.gallery__grid--n2 {
  grid-template-rows: 260px 260px;
}
.gallery__grid--n2 .gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__grid--n2 .gallery__item:not(.gallery__item--large) {
  grid-row: span 2;   /* fills the full height — no empty bottom row */
  min-height: 0;      /* let grid-row: span 2 control height */
}

/* n3 — large + 3 small: first small spans 2 rows, last 2 stack */
.gallery__grid--n3 {
  grid-template-rows: 260px 260px;
}
.gallery__grid--n3 .gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__grid--n3 > .gallery__item:nth-child(2) {
  grid-row: span 2;
  min-height: 0;
}

/* n4 — large + 4 small: fills 2 rows of 2 perfectly */
.gallery__grid--n4 {
  grid-template-rows: 260px 260px;
}
.gallery__grid--n4 .gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

/* ---- REVIEWS ---- */
.reviews { background: var(--white); }

.reviews__hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews__google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 9px 18px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.reviews__google-link:hover {
  border-color: var(--blue);
  color: var(--blue-d);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s var(--ease);
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(26, 95, 180, .11);
  transform: translateY(-3px);
}
.review-card__stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: .93rem;
  color: var(--stone);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px; height: 40px;
  background: var(--steel);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--steel);
  margin-bottom: 2px;
}
.review-card__source {
  font-size: .78rem;
  color: var(--stone);
}

/* ---- HOURS ---- */
.hours { background: var(--steel); color: var(--white); }

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hours__card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hours__card-hd h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.hours__table {
  width: 100%;
  border-collapse: collapse;
}
.hours__table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .93rem;
  color: rgba(255, 255, 255, .62);
}
.hours__table td:last-child {
  text-align: right;
  color: var(--blue-l);
  font-weight: 600;
}
.hours__table tr.today td {
  color: var(--white);
  font-weight: 600;
}
.hours__table tr.today td:last-child { color: var(--amber-l); }

.hours__note {
  margin-top: 20px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  font-style: italic;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status-badge.open {
  background: rgba(34, 197, 94, .14);
  border: 1px solid rgba(34, 197, 94, .3);
  color: #4ade80;
}
.status-badge.closed {
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .24);
  color: #f87171;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.status-badge.open .status-dot { animation: pulse 2s infinite; }

/* Info rows */
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.info-accent {
  width: 3px;
  min-height: 38px;
  background: linear-gradient(to bottom, var(--amber), var(--blue));
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 5px;
}
.info-val {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}
.info-val--link { transition: color .2s; }
.info-val--link:hover { color: var(--amber-l); }

.hours__cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 28px;
}
.hours__info .btn--ghost-light {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

/* ---- FAQ ---- */
.faq { background: var(--cream); }

.faq__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq__hd .section__title { margin-bottom: 0; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel);
  transition: color .2s;
}
.faq__question:hover { color: var(--blue); }

.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, transform .3s var(--ease);
  color: var(--stone);
}
.faq__icon svg { width: 11px; height: 11px; transition: transform .3s var(--ease); }

.faq__item.open .faq__icon {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.faq__item.open .faq__icon svg { transform: rotate(45deg); }

.faq__answer {
  display: none;
  padding: 0 0 20px;
  font-size: .93rem;
  color: var(--stone);
  line-height: 1.8;
  max-width: 640px;
}
.faq__item.open .faq__answer { display: block; }

/* ---- CONTACT ---- */
.contact { background: var(--cream); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact__sub {
  color: var(--stone);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--stone);
  transition: color .2s;
}
a.contact__detail:hover { color: var(--blue); }
.contact__detail-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--blue);
}
.contact__socials {
  display: flex;
  gap: 12px;
}
.contact__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--stone);
  font-weight: 600;
  font-size: .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 8px 16px;
  transition: color .2s, border-color .2s;
}
.contact__social:hover { color: var(--blue); border-color: var(--blue); }

.contact__form {
  background: var(--white);
  border-radius: var(--r);
  padding: 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form__group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: .03em;
}
.form__group input,
.form__group textarea,
.form__group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s;
  resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--blue);
}
.contact__form .btn {
  margin-top: 8px;
  width: 100%;
}
.form__note {
  margin-top: 10px;
  font-size: .8rem;
  color: var(--stone);
  text-align: center;
}
.form__status {
  margin-top: 12px;
  font-size: .88rem;
  min-height: 1.4em;
  color: var(--blue);
}

/* ---- FOOTER ---- */
.footer { background: var(--steel2); }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 0 28px;
}
.footer__brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.footer__trade {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-l);
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .48);
  transition: color .2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .48);
  transition: color .2s;
}
.footer__contact a:hover { color: var(--amber-l); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 16px 0;
}
.footer__bottom p {
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .26);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.ri, .ri-l, .ri-r {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.ri   { transform: translateY(28px); }
.ri-l { transform: translateX(-36px); }
.ri-r { transform: translateX(36px); }
.ri.in, .ri-l.in, .ri-r.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about__grid    { grid-template-columns: 1fr; gap: 48px; }
  .hours__grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__inner     { grid-template-columns: 1fr; gap: 40px; }

  /* Tablet: collapse to 2-col grid, large item becomes banner */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
  .gallery__grid .gallery__item--large {
    grid-column: 1 / -1;  /* full width banner */
    grid-row: span 1;
    min-height: 240px;
  }
  .gallery__grid .gallery__item:not(.gallery__item--large) {
    grid-row: span 1;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--steel);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 16px; }
  .section { padding: 64px 0; }
  .about__image-wrap { height: 360px; }   /* wrapper height controls everything */
  .contact__form { padding: 28px 24px; }
  .reviews__hd { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .services__grid,
  .reviews__grid  { grid-template-columns: 1fr; }
  .gallery__grid  { grid-template-columns: 1fr; }
  .gallery__grid .gallery__item--large,
  .gallery__grid .gallery__item { min-height: 220px; grid-column: 1 / -1; grid-row: span 1; }
  .hero__trust    { flex-direction: column; gap: 12px; }
  .about__stats   { flex-direction: column; }
  .form__row      { grid-template-columns: 1fr; }
  .footer__inner  { flex-direction: column; align-items: flex-start; }
  .photo-strip    { height: 280px; }
  .contact__socials { flex-wrap: wrap; }
}
