/* ═══════════════════════════════════════════
   EAST COAST TILING — Premium Coastal Redesign
   Playfair Display + DM Sans · Orange/Dark/Sand
═══════════════════════════════════════════ */

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

:root {
  --orange:    #E8601C;
  --orange-lt: rgba(232,96,28,0.1);
  --dark:      #181614;
  --dark-2:    #2A2420;
  --sand:      #F5F2EC;
  --sand-2:    #EDE8DF;
  --white:     #FFFFFF;
  --body:      #5A534D;
  --mid:       #9A9188;
  --rule:      #E4DDD4;
  --radius:    20px;
  --radius-lg: 32px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(24,22,20,0.08); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 40px; height: 40px; object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-logo span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

.nav-logo em { font-style: normal; color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--body);
  text-decoration: none; padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover { background: var(--sand-2); color: var(--dark); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88 !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

.mob-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: var(--sand);
  border-bottom: 1px solid var(--rule);
  flex-direction: column;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}

.mob-nav.open { max-height: 360px; }
.mob-nav a { display: block; padding: 15px 24px; font-size: 16px; color: var(--body); text-decoration: none; border-bottom: 1px solid var(--rule); }
.mob-cta { background: var(--orange) !important; color: var(--white) !important; margin: 12px 16px !important; border-radius: 100px !important; text-align: center; border-bottom: none !important; }

/* ── PAGE WRAPPER ── */
.page { padding-top: 68px; }

/* ── HERO ── */
.hero {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.hero-left {
  background: var(--dark);
  padding: 80px 56px 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Herringbone texture on hero left — signature element */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, rgba(232,96,28,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(232,96,28,0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(232,96,28,0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(232,96,28,0.04) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  position: relative;
  display: flex; align-items: center; gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--orange);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-h1-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  color: var(--orange);
  margin-bottom: 32px;
  display: block;
}

.hero-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-tag {
  position: absolute;
  bottom: 40px; left: 48px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-right-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
}

.hero-right-badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

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

.hero-right-badge p { font-size: 13px; color: var(--dark); font-weight: 500; }
.hero-right-badge small { font-size: 11px; color: var(--mid); display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

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

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }

/* ── STRIP ── */
.strip {
  background: var(--orange);
  padding: 18px 48px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}

.strip-inner {
  display: flex; gap: 64px; align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.strip-inner span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.strip-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT SPLIT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

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

.about-img-callout {
  position: absolute;
  bottom: 28px; right: 28px;
  background: rgba(24,22,20,0.75);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  max-width: 220px;
}

.about-img-callout::before {
  content: '↗';
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}

.about-img-callout p { font-size: 12px; color: var(--white); line-height: 1.5; letter-spacing: 0.06em; }

.about-content {
  padding: 80px 64px 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

.label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--orange); }

.about-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
}

.about-h2 em { font-style: italic; color: var(--orange); }

.about-body { font-size: 16px; line-height: 1.85; color: var(--body); margin-bottom: 16px; }

.about-sig {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 20px;
}

.about-sig-line { flex: 1; }
.about-sig-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--dark); }
.about-sig-title { font-size: 13px; color: var(--mid); margin-top: 4px; }

/* ── VALUE CARDS ── */
.values {
  background: var(--dark);
  padding: 80px 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.value-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover { border-color: rgba(232,96,28,0.3); transform: translateY(-4px); }

.value-icon {
  width: 44px; height: 44px;
  background: var(--orange-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.value-card p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); }

/* ── PROJECT GRID ── */
.projects { padding: 80px 48px; }

.projects-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
}

.section-h2 em { font-style: italic; color: var(--orange); }

/* Asymmetric grid — signature layout */
.project-grid-asym {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 16px;
}

.proj-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--sand-2);
}

.proj-card.large { grid-row: span 2; }

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

.proj-card:hover img { transform: scale(1.05); }

.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,22,20,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 28px;
}

.proj-card:hover .proj-overlay { opacity: 1; }

.proj-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.proj-info p { font-size: 13px; color: rgba(255,255,255,0.65); }

.proj-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(245,242,236,0.9);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--orange);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-lg);
  margin: 0 48px 80px;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
}

.cta-band h2 em { font-style: italic; opacity: 0.8; }

/* ── PAGE HERO BAND ── */
.page-hero {
  background: var(--dark);
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, rgba(232,96,28,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(232,96,28,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(232,96,28,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(232,96,28,0.03) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--white);
  line-height: 1.05;
  position: relative; z-index: 1;
}

.page-hero h1 em { font-style: italic; color: var(--orange); }

.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 480px; margin-top: 16px;
  position: relative; z-index: 1;
}

/* ── SERVICES ── */
.services-section { padding: 80px 48px; }

.service-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  padding: 36px 0;
  transition: background 0.2s;
}

.service-row:last-child { border-bottom: 1px solid var(--rule); }

.service-row:hover { background: var(--sand-2); margin: 0 -24px; padding: 36px 24px; border-radius: 12px; }

.service-row h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--dark);
}

.service-row-right { padding-left: 48px; }
.service-row-right p { font-size: 15px; line-height: 1.8; color: var(--body); }

/* ── AREAS ── */
.areas { background: var(--dark-2); padding: 80px 48px; border-radius: var(--radius-lg); margin: 0 48px 80px; }

.areas h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,42px); color: var(--white); margin-bottom: 40px; }
.areas h2 em { font-style: italic; color: var(--orange); }

.areas-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.area-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 15px; color: rgba(255,255,255,0.8);
  transition: background 0.2s, border-color 0.2s;
}

.area-pill:hover { background: rgba(232,96,28,0.15); border-color: rgba(232,96,28,0.3); }

/* ── OUR WORK FULL GRID ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 64px 48px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand-2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.work-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(24,22,20,0.12); }

.work-card-img { aspect-ratio: 4/3; overflow: hidden; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.work-card:hover .work-card-img img { transform: scale(1.05); }

.work-card-body { padding: 22px 24px 26px; }

.work-card-cat {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px;
}

.work-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--dark);
  margin-bottom: 6px;
}

.work-card-loc { font-size: 13px; color: var(--mid); }

/* ── FAQ ── */
.faq-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  padding: 80px 48px;
}

.faq-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--dark); line-height: 1.1;
}

.faq-left h2 em { font-style: italic; color: var(--orange); }
.faq-left-rule { width: 100%; height: 1px; background: var(--rule); margin-top: 32px; }

.faq-right { padding-left: 64px; }

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
}

.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}

.faq-q h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--dark); font-weight: 400;
}

.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sand-2); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--dark); flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); border-color: var(--orange); }

.faq-a {
  font-size: 15px; line-height: 1.85; color: var(--body);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.2s;
}

.faq-item.open .faq-a { max-height: 300px; margin-top: 18px; }
.faq-a a { color: var(--orange); text-decoration: none; border-bottom: 1px solid var(--orange); }

/* ── CONTACT ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 80px 48px;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}

.contact-left h2 em { font-style: italic; color: var(--orange); }

.contact-left .intro { font-size: 17px; line-height: 1.8; color: var(--body); max-width: 380px; }

.contact-detail { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--rule); }
.contact-label { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.contact-value { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); }
.contact-value a { color: inherit; text-decoration: none; }
.contact-sub { font-size: 13px; color: var(--mid); margin-top: 4px; }

.contact-right { padding-left: 64px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }

.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--dark);
  outline: none; appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,96,28,0.08);
}

.form-textarea { height: 130px; resize: vertical; }

.btn-submit {
  width: 100%; padding: 16px;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--orange);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.foot-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.foot-brand span { color: var(--orange); }
.foot-brand small { display: block; font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; margin-top: 4px; font-weight: 300; text-transform: uppercase; }

.foot-nav { display: flex; gap: 20px; justify-content: center; }
.foot-nav a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.foot-nav a:hover { color: var(--orange); }

.foot-copy { font-size: 12px; color: rgba(255,255,255,0.2); text-align: right; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .project-grid-asym { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .proj-card.large { grid-row: span 1; }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mob-nav { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; min-height: 280px; }
  .hero-left { padding: 56px 24px; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 280px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); order: -1; }
  .about-content { padding: 48px 24px; }

  .values { padding: 56px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 12px; }

  .projects { padding: 56px 24px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .project-grid-asym { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proj-card { aspect-ratio: 4/3; }
  .proj-overlay { opacity: 1; }

  .cta-band { grid-template-columns: 1fr; margin: 0 24px 56px; padding: 48px 32px; }

  .faq-section { grid-template-columns: 1fr; padding: 56px 24px; }
  .faq-right { padding-left: 0; margin-top: 40px; }

  .contact-section { grid-template-columns: 1fr; padding: 56px 24px; }
  .contact-right { padding-left: 0; margin-top: 40px; }

  .work-grid { grid-template-columns: 1fr 1fr; padding: 48px 24px; gap: 12px; }

  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-row-right { padding-left: 0; }
  .services-section { padding: 56px 24px; }

  .areas { margin: 0 24px 56px; padding: 48px 28px; }

  .page-hero { padding: 56px 24px 48px; }
  .strip { padding: 16px 24px; }

  footer { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .foot-nav { flex-wrap: wrap; justify-content: center; }
  .foot-copy { text-align: center; }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}
