/* ===========================
   SKYCRAFT ROOFING — STYLES
   Premium Minimalist Dark
   =========================== */

/* ---- CSS Variables ---- */
:root {
  --ink:       #0e0e0e;
  --ink-80:    rgba(14,14,14,0.8);
  --surface:   #f8f6f2;
  --surface-2: #f0ede7;
  --white:     #ffffff;
  --gold:      #b8975a;
  --gold-lt:   #d4b47a;
  --mid:       #6b6b6b;
  --border:    rgba(14,14,14,0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:     72px;
  --radius:    4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 8px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.4rem; font-weight: 600; }
em { font-style: italic; color: var(--gold); }
p { color: var(--mid); font-size: 1.05rem; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover {
  background: #1e1e1e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0.9rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.75);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---- Section Header ---- */
.section-header {
  max-width: 620px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ---- Animations ---- */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.animate-up.in-view,
.animate-left.in-view,
.animate-right.in-view {
  opacity: 1;
  transform: none;
}

/* ========================
   COOKIE BANNER
   ======================== */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(92vw, 600px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
#cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1 1 200px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.cookie-inner p a { color: var(--gold-lt); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--gold-lt); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }

/* ========================
   NAVIGATION
   ======================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}
#navbar.scrolled {
  background: rgba(248,246,242,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
  white-space: nowrap;
}
#navbar.scrolled .nav-logo { color: var(--ink); }
.nav-logo svg { transition: stroke 0.3s; }
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--mid); }
#navbar.scrolled .nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: #1e1e1e; transform: translateY(-1px); }
#navbar.scrolled .nav-links .nav-cta { background: var(--ink); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.22) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-item span { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ========================
   SERVICES
   ======================== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.25s var(--ease);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.service-card:hover { background: var(--surface); }
.service-card:hover::after { width: 100%; }
.service-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: var(--ink);
  transition: border-color 0.25s, color 0.25s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  color: var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; line-height: 1.7; }

/* ========================
   ABOUT
   ======================== */
.about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  width: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--ink);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-list {
  margin: 1.75rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
}
.about-list svg { color: var(--gold); flex-shrink: 0; }

/* ========================
   OUR WORK
   ======================== */
.work { background: var(--ink); }
.work .section-header h2 { color: var(--white); }
.work .section-header p { color: rgba(255,255,255,0.55); }
.work .eyebrow { color: var(--gold-lt); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.85rem;
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.work-item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-item:hover img { transform: scale(1.07); }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { background: var(--surface-2); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.stars { color: #f5b820; font-size: 1.1rem; letter-spacing: 2px; }
.rating-summary strong { font-family: var(--font-display); font-size: 1.3rem; }
.rating-summary span { font-size: 0.9rem; color: var(--mid); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-stars { color: #f5b820; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.review-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.review-author span { font-size: 0.78rem; color: var(--mid); }

/* ========================
   CONTACT
   ======================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
  transition: color 0.2s;
}
a.contact-detail-item:hover { color: var(--gold); }
.contact-detail-item svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-message {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: none;
}
.form-message.success { display: block; background: #f0f9f4; border: 1px solid #a8d5b7; color: #2d7d4f; }
.form-message.error { display: block; background: #fff0f0; border: 1px solid #f0b4b4; color: #b03030; }
.form-note { font-size: 0.78rem; color: var(--mid); text-align: center; margin-top: -0.25rem; }
#submit-btn { margin-top: 0.25rem; font-size: 0.92rem; letter-spacing: 0.04em; }

/* ========================
   MAP SECTION
   ======================== */
.map-section {
  background: var(--surface-2);
  overflow: hidden;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.75rem clamp(1.25rem, 5vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}
.map-header p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.map-directions-btn {
  color: var(--ink) !important;
  border-color: rgba(14,14,14,0.3) !important;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}
.map-directions-btn:hover {
  background: rgba(14,14,14,0.06) !important;
  border-color: rgba(14,14,14,0.6) !important;
}
.map-link {
  display: block;
  position: relative;
  cursor: pointer;
}
.map-link iframe { pointer-events: none; display: block; }
.map-click-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}
.map-link:hover .map-click-overlay { opacity: 1; }
.map-click-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a,
.footer-contact a,
.footer-contact li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; min-height: 380px; margin-bottom: 4rem; }
  .about-img-secondary { width: 44%; right: 0; bottom: -3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item--large { grid-column: span 2; }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    z-index: 800;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
  .nav-links .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }
  .trust-item { text-align: left; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item--large { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .about-badge { left: 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
