/* ═══════════════════════════════════════════════════════
   TechChris — style.css  (v3)
═══════════════════════════════════════════════════════ */

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

:root {
  --cream:       #F4EED8;
  --cream-dark:  #EDE5C4;
  --green:       #2E5339;
  --green-mid:   #3D6E4A;
  --green-light: #4E8A5E;
  --dark:        #1A1A1A;
  --dark-2:      #1E2A22;
  --text:        #2A2A2A;
  --text-muted:  #6B6B5E;
  --gold:        #C4A84F;
  --radius:      4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── TEXTURE OVERLAY on cream sections ─── */
.textured {
  position: relative;
}
.textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.textured > * { position: relative; z-index: 1; }

/* ─── HEADER ─── */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo-wrap img {
  height: 72px;
  width: auto;
  transition: opacity 0.2s, transform 0.2s;
}
.logo-wrap img:hover { opacity: 0.88; transform: scale(1.02); }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: #C8C2B0;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
nav a:not(.nav-contact)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
nav a:not(.nav-contact):hover { color: #fff; }
nav a:not(.nav-contact):hover::after,
nav a.active::after { transform: scaleX(1); }
nav a.active { color: #fff; }

.nav-contact {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 11px 26px !important;
  border-radius: var(--radius) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(196,168,79,0.3);
}
.nav-contact:hover {
  background: #d4b86a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(196,168,79,0.4) !important;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 15px 34px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(46,83,57,0.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,83,57,0.35);
}

.btn-ghost {
  color: #F4EED8;
  padding: 15px 26px;
  border: 1.5px solid rgba(244,238,216,0.3);
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(244,238,216,0.7);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--green);
  padding: 12px 26px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46,83,57,0.25);
}

/* ─── SECTION SHARED ─── */
section { padding: 88px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.75;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 32px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/boston_waterfront.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(30%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,42,34,0.88) 0%,
    rgba(30,42,34,0.78) 50%,
    rgba(46,83,57,0.65) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.06;
  color: #F4EED8;
  margin-bottom: 26px;
}
.hero p {
  font-family: 'Jost', sans-serif;
  color: rgba(244,238,216,0.72);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero right panel */
.hero-includes {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(196,168,79,0.2);
  border-radius: 8px;
  padding: 44px;
  backdrop-filter: blur(6px);
}
.hero-includes-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196,168,79,0.2);
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.includes-item:last-child { border-bottom: none; padding-bottom: 0; }
.includes-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.includes-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.includes-text h4 { font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
.includes-text p { font-family: 'Jost', sans-serif; font-size: 0.8rem; color: rgba(244,238,216,0.45); font-weight: 300; line-height: 1.5; }

/* ─── SERVICES ─── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  padding: 38px 32px;
  border-radius: 6px;
  border: 1px solid rgba(46,83,57,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(46,83,57,0.14);
  border-color: rgba(46,83,57,0.25);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: var(--green-mid); }
.service-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── WHY TECHCHRIS ─── */
.why-section { background: var(--green); padding: 88px 32px; }
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--cream); }
.why-section .section-sub { color: rgba(244,238,216,0.6); margin-bottom: 44px; }

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left 0.2s ease;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 6px; }
.why-check {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(196,168,79,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-item-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 5px;
}
.why-item-text p {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: rgba(244,238,216,0.55);
  font-weight: 300;
  line-height: 1.65;
}

/* SVG Laptop illustration panel */
.why-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop-wrap {
  width: 100%;
  max-width: 460px;
  position: relative;
}

/* ─── PROCESS ─── */
.process-section { background: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.step {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px 26px 32px;
  text-align: center;
  border: 1px solid rgba(46,83,57,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(46,83,57,0.14);
  border-color: rgba(46,83,57,0.2);
}
.step:hover::before { transform: scaleX(1); }
.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.2s, transform 0.2s;
}
.step:hover .step-icon-wrap { background: var(--green-mid); transform: scale(1.08); }
.step-icon-wrap svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step-num-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── PAGE HEROES ─── */
.page-hero {
  background: var(--dark);
  padding: 88px 32px 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,83,57,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.06;
}
.page-hero p {
  font-family: 'Jost', sans-serif;
  color: rgba(244,238,216,0.55);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}
.page-hero-accent { height: 3px; width: 48px; background: var(--green); margin-bottom: 24px; border-radius: 2px; }

/* ─── ABOUT ─── */
.about-content { background: var(--cream); padding: 80px 32px; }
.about-content-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; }
.about-body p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 22px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { font-weight: 600; color: var(--green); }
.about-body a { color: var(--green); text-decoration: none; font-weight: 500; }
.about-body a:hover { text-decoration: underline; }

.sidebar-card {
  background: var(--green);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 20px;
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.sidebar-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: rgba(244,238,216,0.78);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item::before { content: '→'; color: var(--gold); font-size: 0.78rem; flex-shrink: 0; }

/* ─── PORTFOLIO ─── */
.portfolio-grid-section { background: var(--cream); padding: 80px 32px; }
.portfolio-grid-inner { max-width: 1200px; margin: 0 auto; }

.portfolio-card {
  background: #fff;
  border: 1px solid rgba(46,83,57,0.1);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.portfolio-card:hover {
  box-shadow: 0 20px 56px rgba(46,83,57,0.15);
  transform: translateY(-4px);
}
.portfolio-preview {
  background: var(--dark-2);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: 32px;
}
.portfolio-preview img {
  width: 90%;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-preview img { transform: translateY(-6px); }

.portfolio-info { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.portfolio-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 14px;
}
.portfolio-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.05;
}
.portfolio-info p {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 30px;
}
.portfolio-detail-list { margin-bottom: 34px; }
.portfolio-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46,83,57,0.08);
  font-size: 0.86rem;
}
.portfolio-detail:last-child { border-bottom: none; }
.pd-key { font-family: 'Space Grotesk', sans-serif; color: var(--text-muted); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.06em; }
.pd-val { font-family: 'Jost', sans-serif; color: var(--text); font-weight: 500; }

.portfolio-coming {
  background: var(--dark);
  border-radius: 10px;
  padding: 64px 48px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.08);
}
.portfolio-coming h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.portfolio-coming p {
  font-family: 'Jost', sans-serif;
  color: rgba(244,238,216,0.35);
  font-size: 0.92rem;
  font-weight: 300;
}

/* ─── CONTACT ─── */
.contact-photo-band {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.contact-photo-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/boston_waterfront.jpg');
  background-size: cover;
  background-position: center 55%;
  filter: grayscale(20%);
}
.contact-photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,42,34,0.7), rgba(46,83,57,0.85));
}
.contact-photo-band-text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
.contact-photo-band-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 700;
}
.contact-photo-band-text p {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: rgba(244,238,216,0.6);
  font-weight: 300;
}

.contact-body { background: var(--cream); padding: 80px 32px; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--green);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.contact-detail:hover .contact-icon { background: var(--green-mid); transform: scale(1.05); }
.contact-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail-text a { font-family: 'Jost', sans-serif; color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 400; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--green); }
.contact-detail-text span { font-family: 'Jost', sans-serif; color: var(--text); font-size: 1rem; }

.contact-note {
  background: var(--green);
  border-radius: 8px;
  padding: 28px 30px;
  margin-top: 36px;
}
.contact-note p {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: rgba(244,238,216,0.78);
  font-weight: 300;
  line-height: 1.7;
}
.contact-note strong { color: var(--cream); font-weight: 600; }

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(46,83,57,0.1);
  border-radius: 10px;
  padding: 52px;
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(46,83,57,0.18);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46,83,57,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,83,57,0.3);
}
.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 12px;
}
.form-success p {
  font-family: 'Jost', sans-serif;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── FOOTER ─── */
footer { background: var(--dark); color: #7A756A; padding: 72px 32px 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand img { height: 68px; margin-bottom: 20px; cursor: pointer; display: block; transition: opacity 0.2s; }
.footer-brand img:hover { opacity: 0.85; }
.footer-brand p {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #4E4A43;
  font-weight: 300;
  max-width: 230px;
}
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8C2B0;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col a, .footer-col span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: #4E4A43;
  text-decoration: none;
  margin-bottom: 11px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: #C8C2B0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: #363230;
}
.footer-bottom a { color: #363230; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #7A756A; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-includes { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-graphic { order: -1; }
  .about-content-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-preview { min-height: 240px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; height: 76px; }
  .logo-wrap img { height: 58px; }
  nav a { padding: 5px 10px; font-size: 0.76rem; }
  .nav-contact { padding: 9px 16px !important; }
}
@media (max-width: 540px) {
  section { padding: 60px 20px; }
  .hero { padding: 72px 20px; min-height: auto; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .portfolio-info { padding: 36px 28px; }
  .footer-brand img { height: 56px; }
}
