/* =========================================================
   ES Restoration & Fabrication
   Editorial industrial theme — cream paper + ink black
   ========================================================= */

:root {
  --bg: #f6f3ec;             /* warm cream paper */
  --bg-elev: #ffffff;        /* white card surface */
  --bg-card: #ffffff;
  --bg-card-hover: #fbfaf5;
  --bg-band: #efeadf;        /* subtle band */
  --bg-dark: #131210;        /* near-black for hero/footer */
  --bg-dark-elev: #1c1a17;
  --border: #e2dcd0;
  --border-strong: #c7c0b3;
  --text: #1a1817;           /* ink black */
  --text-on-dark: #f6f3ec;
  --text-muted: #5c5852;
  --text-soft: #8a857d;
  --accent: #131210;         /* black is the accent */
  --accent-hot: #000000;
  --accent-soft: rgba(19, 18, 16, 0.06);
  --iron: #3d3935;           /* warm dark gray */
  --max-width: 1200px;
  --radius: 3px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 24px rgba(19, 18, 16, 0.08);
  --shadow-lg: 0 20px 60px rgba(19, 18, 16, 0.12);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--iron);
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--text);
}
.on-dark .eyebrow { color: rgba(246, 243, 236, 0.85); }
.on-dark .eyebrow::before { background: var(--text-on-dark); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
}
.section-head { margin-bottom: 64px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { padding-left: 0; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.section {
  padding: 120px 0;
  position: relative;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}
.on-dark .btn-primary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.on-dark .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.on-dark .btn-ghost {
  color: var(--text-on-dark);
  border-color: rgba(246, 243, 236, 0.35);
}
.on-dark .btn-ghost:hover {
  background: var(--text-on-dark);
  color: var(--text);
  border-color: var(--text-on-dark);
}
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; margin-top: 8px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 243, 236, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.site-header.scrolled .nav-links a:not(.btn) { color: var(--text-muted); }
.site-header.scrolled .nav-links a:not(.btn):hover { color: var(--text); }
.site-header.scrolled .logo-text { color: var(--text); }
.site-header.scrolled .logo-text em { color: var(--text-muted); }
.site-header.scrolled .nav-toggle span { background: var(--text); }
.site-header.scrolled .btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
  font-weight: 700;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--bg);
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}
.site-header.scrolled .logo-img,
.site-footer .logo-img { background: transparent; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-on-dark);
}
.logo-text em {
  display: block;
  font-style: normal;
  color: rgba(246, 243, 236, 0.7);
  font-weight: 400;
  font-size: 0.78em;
  letter-spacing: 0.16em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  color: rgba(246, 243, 236, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--text-on-dark); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn-primary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  transition: all 0.25s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(19, 18, 16, 0.5) 0%, rgba(19, 18, 16, 0.75) 60%, rgba(19, 18, 16, 0.95) 100%),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: var(--text-on-dark);
}
.hero-content h1,
.hero-content p,
.hero-content .eyebrow,
.hero-content .meta-num { color: var(--text-on-dark); }
.hero-content .eyebrow { color: rgba(246, 243, 236, 0.85); }
.hero-content .eyebrow::before { background: var(--text-on-dark); }

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.accent-line {
  display: inline-block;
  border-bottom: 4px solid var(--text-on-dark);
  padding-bottom: 4px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(246, 243, 236, 0.78);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 76px;
}
.hero-cta .btn-primary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.hero-cta .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.hero-cta .btn-ghost {
  color: var(--text-on-dark);
  border-color: rgba(246, 243, 236, 0.4);
}
.hero-cta .btn-ghost:hover {
  background: var(--text-on-dark);
  color: var(--text);
  border-color: var(--text-on-dark);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; }
.meta-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.meta-label {
  font-size: 0.78rem;
  color: rgba(246, 243, 236, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(246, 243, 236, 0.15);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(246, 243, 236, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue span {
  display: block;
  width: 3px;
  height: 8px;
  background: rgba(246, 243, 236, 0.7);
  border-radius: 2px;
  animation: scrollDown 1.8s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ---------- Services ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 44px 36px;
  transition: all 0.35s var(--ease);
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.service-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 12px;
  height: 1px;
  background: var(--text);
}

/* ---------- About ---------- */
.about { background: var(--bg-band); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.visual-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.03);
  transition: transform 0.6s var(--ease);
}
.visual-frame:hover .visual-img-tag { transform: scale(1.04); }
.visual-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--text);
  color: var(--bg);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 6px;
  color: rgba(246, 243, 236, 0.75);
}
.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 40px;
}
.point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.point-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
}
.point h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.point p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.credentials {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--text);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.credentials-head {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credentials-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.credentials-list strong {
  font-weight: 700;
  color: var(--text);
}
.cred-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 50%;
  margin-top: 2px;
}

/* ---------- Work / Gallery ---------- */
.work { background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 3 / 4;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) contrast(1.05);
  transition: all 0.6s var(--ease);
}
.work-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.08);
}
.work-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(19, 18, 16, 0.95) 70%);
  color: var(--text-on-dark);
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}
.work-item:hover figcaption { transform: translateY(0); }
.work-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.85);
  margin-bottom: 6px;
}
.work-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-on-dark);
}

/* ---------- Promise (replaces testimonials) ---------- */
.promise {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.promise .section-title,
.promise .eyebrow { color: var(--text-on-dark); }
.promise .eyebrow { color: rgba(246, 243, 236, 0.85); }
.promise .section-sub { color: rgba(246, 243, 236, 0.7); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246, 243, 236, 0.12);
  border: 1px solid rgba(246, 243, 236, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promise-card {
  background: var(--bg-dark);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.promise-card:hover { background: var(--bg-dark-elev); }
.promise-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(246, 243, 236, 0.5);
  margin-bottom: 28px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--text-on-dark);
}
.promise-card h3 {
  font-size: 1.5rem;
  color: var(--text-on-dark);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.promise-card p {
  color: rgba(246, 243, 236, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.contact-head .eyebrow { padding-left: 0; }
.contact-head .eyebrow::before { display: none; }
.contact-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 18px 32px;
  font-size: 14px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
}
.contact-card {
  background: var(--bg-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
a.contact-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
a.contact-card:hover::before { transform: scaleX(1); }
a.contact-card:hover .cm-icon { background: var(--accent-hot); transform: translateY(-1px); }

.cm-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
  flex-shrink: 0;
  margin-bottom: 14px;
  transition: all 0.25s var(--ease);
}
.cm-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.cm-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-top: 4px solid var(--text);
  padding-top: 72px;
}
.site-footer .logo { color: var(--text-on-dark); }
.site-footer .logo-text { color: var(--text-on-dark); }
.site-footer .logo-text em { color: rgba(246, 243, 236, 0.6); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand p {
  color: rgba(246, 243, 236, 0.65);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(246, 243, 236, 0.65);
}
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom {
  border-top: 1px solid rgba(246, 243, 236, 0.1);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(246, 243, 236, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-points { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav-links {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background: var(--bg-dark);
    border-left: 1px solid rgba(246, 243, 236, 0.12);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .btn { margin-top: 12px; width: 100%; }
  .nav-toggle { display: flex; }
  .site-header.scrolled .nav-toggle span { background: var(--text); }
  .site-header.scrolled .nav-links a:not(.btn) { color: rgba(246, 243, 236, 0.85); }
  .site-header.scrolled .nav-links a:not(.btn):hover { color: var(--text-on-dark); }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-meta { gap: 24px; }
  .meta-divider { display: none; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .promise-card { padding: 36px 28px; }

  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-item { aspect-ratio: 4 / 3; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-brand p { max-width: none; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 24px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; }

  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
