/* ============================================================
   AXBRIDGE INTERIORS — STYLESHEET
   ============================================================ */

/* Variables */
:root {
  --dark: #000000;
  --light: #ffffff;
  --accent: #000000;
  --accent-dark: #222222;
  --text-dark: #000000;
  --text-light: #ffffff;
  --border-light: rgba(0,0,0,0.12);
  --border-dark: rgba(255,255,255,0.12);
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000000;
  margin-bottom: 16px;
}

/* Eyebrow on dark backgrounds */
.section-dark .eyebrow,
.hero .eyebrow,
.what-we-do .eyebrow,
.cta-banner .eyebrow,
.page-hero .eyebrow,
.footer .eyebrow {
  color: rgba(255,255,255,0.55);
}

h1 {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 {
  margin-top: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* btn-gold = white button, for use on DARK backgrounds */
.btn-gold {
  background: #ffffff;
  color: #000000;
}

.btn-gold:hover {
  background: #e0e0e0;
  color: #000000;
}

/* btn-black = black button, for use on LIGHT backgrounds */
.btn-black {
  background: #000000;
  color: #ffffff;
}

.btn-black:hover {
  background: #333333;
  color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo-inverted {
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
}

.nav-cta:hover {
  background: #e0e0e0 !important;
  color: #000000 !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO — Homepage video
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content h1 {
  color: #fff;
  max-width: 840px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-pills {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 1;
  white-space: nowrap;
}

.hero-pill {
  padding: 0 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
}

.hero-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO — Inner pages
   ============================================================ */

.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-height) + 80px) 40px 90px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-hero h1 {
  color: #fff;
  font-size: 52px;
  max-width: 860px;
  margin: 0 auto 20px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FADE IN
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT SECTION — Homepage
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  padding-bottom: 56px;
  padding-right: 48px;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 270px;
  object-fit: cover;
  border: 6px solid var(--light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.about-text h2 {
  margin-top: 8px;
  margin-bottom: 20px;
}

.about-text p {
  color: #444;
  margin-bottom: 32px;
}

/* ============================================================
   WHY US — Homepage light
   ============================================================ */

.why-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.why-col h3 {
  margin-bottom: 14px;
  color: var(--text-dark);
}

.why-col p {
  color: #555;
}

/* ============================================================
   GALLERY STRIP — 3 images full width
   ============================================================ */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 400px;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   WHAT WE DO — Dark section
   ============================================================ */

.what-we-do {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.what-we-do-img {
  background-image: url('../images/worker-photo.webp');
  background-size: cover;
  background-position: center top;
  min-height: 540px;
}

.what-we-do-text {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 80px;
}

.what-we-do-text .eyebrow {
  color: rgba(255,255,255,0.55);
}

.what-we-do-text h2 {
  color: #fff;
  margin-top: 8px;
  margin-bottom: 20px;
}

.what-we-do-text p {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   SERVICES GRID — Homepage + Commercial
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: #fff;
  padding: 48px 44px;
  border: 1px solid rgba(0,0,0,0.07);
}

.service-icon {
  margin-bottom: 28px;
}

.service-icon img,
.service-icon svg {
  height: 48px;
  width: 48px;
  display: block;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--text-dark);
}

.service-card p {
  color: #555;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* 3-col grid for residential (3 services) */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

/* Work examples grid on service pages */
.work-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.work-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  padding: 32px 24px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PROJECT CARDS — Homepage featured
   ============================================================ */

.projects-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.project-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.project-card-label span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-card-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.project-card:hover .project-card-arrow {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.cta-banner-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: url('../images/work-1.avif');
  min-height: 420px;
}

.cta-banner-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.cta-banner-text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px;
}

.cta-banner-text h2 {
  color: #fff;
  margin-bottom: 24px;
  margin-top: 8px;
}

/* CTA inline form variant (homepage) */
.cta-contact-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cta-contact-meta p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 6px;
}

.cta-contact-meta a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: color 0.2s;
}

.cta-contact-meta a:hover {
  color: #fff;
}

.cta-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: rgba(255,255,255,0.6);
}

.cta-form textarea {
  height: 100px;
  resize: none;
}

.cta-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand-logo {
  height: 34px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.75;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #ffffff;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: color 0.2s;
  margin-top: 4px;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  margin: 0;
}

.footer-built-by {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-built-by:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   RESIDENTIAL SERVICES PAGE
   ============================================================ */

.services-stacked {
  padding: 0;
}

.service-block {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-block h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.service-block p {
  color: #555;
  max-width: 760px;
}

/* Why dark section — Residential */
.why-dark {
  background: var(--dark);
  padding: 100px 0;
}

.why-dark h2 {
  color: #fff;
  max-width: 640px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.why-dark .intro-text {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 56px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-point {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.why-point strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-point p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   COMMERCIAL SERVICES PAGE
   ============================================================ */

.info-dark {
  background: var(--dark);
  padding: 100px 0;
}

.info-dark h2 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
}

.info-dark p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */

.portfolio-section {
  background: var(--light);
  padding: 100px 0;
}

.portfolio-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.portfolio-card img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.portfolio-card-label span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio-card-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.portfolio-card:hover .portfolio-card-arrow {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.portfolio-top .portfolio-card img {
  height: 520px;
}

.portfolio-full .portfolio-card img {
  height: 440px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  background: var(--light);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  height: 160px;
  resize: vertical;
  font-family: 'Barlow', sans-serif;
}

.contact-info {
  padding-top: 8px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.contact-detail a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-info .coverage {
  color: #555;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
  font-size: 16px;
}

/* ============================================================
   PROJECT GALLERY PAGES
   ============================================================ */

.gallery-section {
  background: var(--light);
  padding: 100px 0;
}

.project-gallery {
  column-count: 3;
  column-gap: 12px;
}

.project-gallery img {
  width: 100%;
  margin-bottom: 12px;
  break-inside: avoid;
  display: block;
}

/* ============================================================
   PAGE HERO — WITH BACKGROUND IMAGE (Residential & Commercial)
   ============================================================ */

.page-hero-residential {
  background-image: linear-gradient(rgba(28,28,28,0.72), rgba(28,28,28,0.72)), url('../images/work-1.avif');
  background-size: cover;
  background-position: center;
}

.page-hero-commercial {
  background-image: linear-gradient(rgba(28,28,28,0.72), rgba(28,28,28,0.72)), url('../images/worker-photo.webp');
  background-size: cover;
  background-position: center;
}

/* ============================================================
   FOOTER — CONTACT LINKS
   ============================================================ */

.footer-contact-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* ============================================================
   WORK EXAMPLES — MASONRY PHOTO GRID
   ============================================================ */

.work-masonry {
  column-count: 3;
  column-gap: 10px;
}

.work-masonry-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 4px;
}

.work-masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.work-masonry-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .work-masonry { column-count: 2; }
}

@media (max-width: 480px) {
  .work-masonry { column-count: 1; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */

@media (max-width: 1024px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  .container { padding: 0 32px; }
  .nav-container { padding: 0 32px; }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .why-points { gap: 28px; }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .work-examples-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {

  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
  .section { padding: 64px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--border-dark);
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .nav-cta { width: 100%; text-align: center; display: block !important; }

  /* Hero */
  .hero-content { padding: 0 24px; }
  .hero-sub { font-size: 16px; }
  .hero-pills { display: none; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-height) + 56px) 24px 64px; }
  .page-hero h1 { font-size: 34px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { padding-bottom: 0; padding-right: 0; }
  .about-img-secondary { display: none; }
  .about-img-main { height: 360px; }

  /* Why */
  .why-columns { grid-template-columns: 1fr; gap: 32px; }
  .why-points { grid-template-columns: 1fr; gap: 28px; }

  /* Gallery strip */
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-strip img { height: 280px; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .services-grid-3 { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 36px 28px; }

  /* Work examples */
  .work-examples-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Project cards */
  .projects-home-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Portfolio */
  .portfolio-top { grid-template-columns: 1fr; }
  .portfolio-top .portfolio-card img { height: 340px; }
  .portfolio-full .portfolio-card img { height: 300px; }

  /* What We Do */
  .what-we-do { grid-template-columns: 1fr; }
  .what-we-do-img { min-height: 340px; }
  .what-we-do-text { padding: 56px 28px; }

  /* CTA Banner */
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-img { min-height: 260px; }
  .cta-banner-text { padding: 56px 28px; }
  .cta-form .form-row-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand p { max-width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Project gallery */
  .project-gallery { column-count: 2; }

  /* Service btns */
  .service-btns { flex-direction: column; align-items: flex-start; }

  /* Commercial info dark */
  .info-dark { padding: 64px 0; }
  .why-dark { padding: 64px 0; }
  .what-we-do-text { padding: 60px 48px; }
  .cta-banner-text { padding: 60px 48px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .project-gallery { column-count: 1; }
  .cta-banner-text { padding: 48px 24px; }
  .service-block h3 { font-size: 22px; }
}
