/* ════════════════════════════════════════════════════════════════
   D GEAL CONTRACTORS — Stone & Ivory Design System
   ════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  --ivory:       #F5F0E8;
  --earth:       #2A2018;
  --stone-dark:  #5A4A3A;
  --stone:       #8B7355;
  --stone-light: #C4A882;
  --cream:       #EDE8DF;
  --white:       #FFFFFF;
  --overlay:     rgba(42, 32, 24, 0.55);

  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --section-pad-v:  100px;
  --section-pad-h:  80px;
  --max-width:      1320px;
  --nav-height:     80px;
  --radius-sm:      2px;
  --radius-full:    999px;

  --transition: 0.35s ease;
}

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

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

body {
  background: var(--ivory);
  color: var(--earth);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

em {
  color: var(--stone);
  font-style: italic;
}

/* ── Scroll animation ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ── Typography helpers ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--earth);
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

/* ── Pill tags ──────────────────────────────────────────────────── */
.pill {
  display: inline-block;
  border: 1px solid var(--stone);
  border-radius: var(--radius-full);
  padding: 0.3em 1em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  line-height: 1;
}

.pill--accent {
  background: var(--stone);
  border-color: var(--stone);
  color: var(--ivory);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid var(--earth);
}

.btn--solid {
  background: var(--earth);
  color: var(--ivory);
}
.btn--solid:hover {
  background: var(--stone-dark);
  border-color: var(--stone-dark);
}

.btn--outline {
  background: transparent;
  color: var(--earth);
}
.btn--outline:hover {
  background: var(--earth);
  color: var(--ivory);
}

.btn--full { width: 100%; text-align: center; }

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--ivory);
  z-index: 900;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  box-shadow: 0 4px 32px rgba(42, 32, 24, 0.10);
  border-bottom-color: rgba(139, 115, 85, 0.15);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
  text-decoration: none;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--earth);
  letter-spacing: 0.04em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  opacity: 0.75;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.nav__link:hover { opacity: 1; }

.nav__phone {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav__phone:hover { color: var(--earth); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  border-radius: 1px;
  transition: var(--transition);
}

/* ── Mobile overlay nav ─────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--earth);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay--open {
  transform: translateY(0);
}

.nav-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-overlay__links a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ivory);
  opacity: 0.85;
  transition: opacity var(--transition);
}
.nav-overlay__links a:hover { opacity: 1; }

.nav-overlay__phone {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--stone-light);
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  display: flex;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.hero__left {
  width: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
}

.hero__left-inner {
  padding: var(--section-pad-v) var(--section-pad-h) var(--section-pad-v) calc(var(--section-pad-h) * 0.75);
  max-width: 640px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero__h1 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.15;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--stone-dark);
  font-weight: 300;
  max-width: 420px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__mood {
  margin-top: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(139, 115, 85, 0.25);
}

.hero__mood-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--stone);
}

.hero__right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,240,232,0.15) 0%, transparent 40%);
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════ */
.stats {
  background: var(--cream);
  padding: 60px var(--section-pad-h);
}

.stats__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  color: var(--earth);
  line-height: 1;
}

.stats__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ════════════════════════════════════════════════════════════════
   INTRO STRIP
   ════════════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--earth);
  padding: 70px var(--section-pad-h);
  text-align: center;
}

.intro-strip__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--ivory);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.35;
}

.intro-strip__text em {
  color: var(--stone-light);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad-v) var(--section-pad-h);
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__text h2 {
  margin-bottom: 0.5rem;
}

.about__text p {
  color: var(--stone-dark);
  font-size: 1.02rem;
  font-weight: 300;
}

.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--stone);
  border-left: 3px solid var(--stone-light);
  padding-left: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.about__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__image:hover img { transform: scale(1.03); }

/* ── How We Work ────────────────────────────────────────────────── */
.how-we-work {
  max-width: var(--max-width);
  margin: 80px auto 0;
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.principle-card {
  background: var(--earth);
  color: var(--ivory);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 32, 24, 0.18);
}

.principle-card__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--stone-light);
  opacity: 0.7;
}

.principle-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivory);
  font-weight: 500;
}

.principle-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.72);
  font-weight: 300;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════ */
.services {
  background: var(--cream);
  padding: var(--section-pad-v) var(--section-pad-h);
}

.services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__sub {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--stone-dark);
  font-weight: 300;
  font-size: 1.02rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--ivory);
  border: 1px solid rgba(196, 168, 130, 0.3);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--stone-light);
  box-shadow: 0 8px 30px rgba(42, 32, 24, 0.08);
  transform: translateY(-3px);
}

.service-card__initial {
  position: absolute;
  top: -0.2rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--stone-light);
  opacity: 0.15;
  line-height: 1;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--earth);
  position: relative;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.65;
  position: relative;
}

/* ════════════════════════════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════════════════════════════ */
.portfolio {
  padding: var(--section-pad-v) var(--section-pad-h);
}

.portfolio__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio__header {
  margin-bottom: 60px;
}

.portfolio__sub {
  max-width: 580px;
  margin-top: 1rem;
  color: var(--stone-dark);
  font-weight: 300;
  font-size: 1.02rem;
}

/* Featured project */
.featured-project {
  display: grid;
  grid-template-columns: 60% 1fr;
  min-height: 520px;
  margin-bottom: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(42, 32, 24, 0.12);
}

.featured-project__image {
  overflow: hidden;
}
.featured-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.featured-project:hover .featured-project__image img {
  transform: scale(1.04);
}

.featured-project__content {
  background: var(--earth);
  color: var(--ivory);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.featured-project__tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.featured-project__tags .pill {
  border-color: rgba(196, 168, 130, 0.4);
  color: var(--stone-light);
}

.featured-project__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ivory);
}

.featured-project__meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.featured-project__body {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 300;
  line-height: 1.75;
}

.featured-project__award {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--stone-light);
  font-size: 0.95rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(196, 168, 130, 0.2);
}

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(196, 168, 130, 0.2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.project-card:hover {
  box-shadow: 0 12px 48px rgba(42, 32, 24, 0.10);
  transform: translateY(-4px);
}

.project-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__image img {
  transform: scale(1.06);
}

.project-card__body {
  padding: 1.5rem;
}

.project-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--earth);
}

.project-card__body p {
  font-size: 0.88rem;
  color: var(--stone-dark);
  font-weight: 300;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--earth);
  padding: var(--section-pad-v) var(--section-pad-h);
}

.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials .section-label {
  color: var(--stone-light);
}

.testimonials h2 {
  color: var(--ivory);
  margin-bottom: 50px;
}

.testimonials h2 em {
  color: var(--stone-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--stone-light);
  line-height: 0.8;
}

.testimonial-card__text {
  font-size: 0.98rem;
  color: var(--stone-dark);
  font-weight: 300;
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--ivory);
}

.contact__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__left h2 {
  margin: 0.75rem 0 1.25rem;
}

.contact__body {
  font-size: 1rem;
  color: var(--stone-dark);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact__details a,
.contact__details span {
  color: var(--earth);
  font-weight: 400;
  font-size: 0.98rem;
}
.contact__details a:hover { color: var(--stone); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--cream);
  padding: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 168, 130, 0.25);
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-form__field input,
.contact-form__field textarea {
  background: var(--ivory);
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--earth);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--stone-light);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--stone);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
}

.contact-form__note {
  font-size: 0.78rem;
  color: var(--stone);
  font-weight: 300;
  text-align: center;
  margin-top: -0.25rem;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--earth);
  color: rgba(245, 240, 232, 0.7);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px var(--section-pad-h) 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.footer__region {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer ul a,
.footer__col--contact a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  transition: color var(--transition);
}
.footer ul a:hover,
.footer__col--contact a:hover { color: var(--ivory); }

.footer__col--contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__fmb {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.footer__bottom {
  border-top: 1px solid rgba(196, 168, 130, 0.15);
  padding: 22px var(--section-pad-h);
  max-width: 100%;
}

.footer__bottom p {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad-h: 40px;
  }

  .nav__links { gap: 1.5rem; }

  .about__inner {
    grid-template-columns: 1fr 340px;
    gap: 50px;
  }

  .how-we-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-project {
    grid-template-columns: 55% 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
  }

  .contact__inner {
    gap: 50px;
  }

  .footer__inner {
    gap: 2rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad-v: 60px;
    --section-pad-h: 24px;
  }

  /* Nav */
  .nav__links,
  .nav__phone { display: none; }

  .nav__hamburger { display: flex; }

  .nav__inner { padding: 0 24px; }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero__left,
  .hero__right { width: 100%; }

  .hero__left-inner {
    padding: 60px 24px 50px;
    margin: 0;
    max-width: 100%;
    gap: 1.5rem;
  }

  .hero__right {
    height: 55vw;
    min-height: 280px;
    max-height: 420px;
  }

  /* Stats */
  .stats {
    padding: 48px 24px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  /* Intro strip */
  .intro-strip {
    padding: 50px 24px;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image {
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .how-we-work__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Portfolio */
  .featured-project {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-project__image {
    aspect-ratio: 16 / 9;
  }

  .featured-project__content {
    padding: 2rem 1.5rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   AWARD STRIP
   ════════════════════════════════════════════════════════════════ */
.award-strip {
  background: var(--earth);
  padding: 0.9rem 2rem;
}
.award-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.award-strip__star {
  color: var(--stone-light);
  font-size: 0.9rem;
}
.award-strip__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
  text-align: center;
}
.award-strip__text strong {
  color: var(--stone-light);
}
.award-strip__text a {
  color: var(--stone-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.award-strip__text a:hover {
  color: var(--ivory);
}

/* ════════════════════════════════════════════════════════════════
   PORTFOLIO FILTER
   ════════════════════════════════════════════════════════════════ */
.port-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.port-filter__btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--stone-light);
  background: transparent;
  color: var(--stone-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.port-filter__btn:hover,
.port-filter__btn.active {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--ivory);
}
.port-card[hidden] { display: none !important; }

/* ════════════════════════════════════════════════════════════════
   THANK YOU / 404 PAGE
   ════════════════════════════════════════════════════════════════ */
.status-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}
.status-page__inner { max-width: 560px; }
.status-page__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--stone-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.status-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--earth);
  margin-bottom: 1rem;
}
.status-page p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--stone-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}
