/* ═══════════════════════════════════════════
   TWO BROTHERS DEVELOPMENT — STYLESHEET
   Palette: Dark charcoal · Warm cream · Gold accent
   Font: Satoshi (Fontshare)
═══════════════════════════════════════════ */

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

:root {
  --ink:        #1C1C1C;
  --ink-mid:    #3D3D3D;
  --ink-light:  #6B6B6B;
  --surface:    #F9F7F4;
  --surface-2:  #F0EDE8;
  --dark-bg:    #161412;
  --dark-mid:   #252220;
  --gold:       #C8A96E;
  --gold-light: #DEC08A;
  --white:      #FFFFFF;
  --radius:     8px;
  --radius-lg:  16px;
  --font:       'Satoshi', -apple-system, system-ui, sans-serif;
  --transition: 0.25s ease;
  --max-w:      1200px;
}

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

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header p {
  color: var(--ink-light);
  font-size: 1.05rem;
  margin-top: 12px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.6); }

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(22, 20, 18, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
}
@media (max-width: 640px) { .nav-inner { padding: 16px 20px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-wordmark {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
@media (max-width: 480px) { .nav-wordmark { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark-bg);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--dark-bg);
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--dark-bg); }

@media (max-width: 768px) { .nav-links { display: none; } }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 768px) { .nav-hamburger { display: flex; } }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(22, 20, 18, 0.98);
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 12, 8, 0.72) 0%,
    rgba(16, 12, 8, 0.45) 50%,
    rgba(16, 12, 8, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  padding-top: 80px;
}
@media (max-width: 640px) { .hero-content { padding: 80px 20px 0; } }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
  animation: bounce 2s infinite;
  transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 1; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════
   STATS
═══════════════════════════════════ */
.stats {
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
@media (max-width: 900px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }
}

.stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  max-width: 130px;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════
   WORK / PORTFOLIO
═══════════════════════════════════ */
.work { background: var(--surface); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.work-card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 768px) { .work-card--feature { grid-template-columns: 1fr; grid-column: auto; } }

.work-card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.work-card--feature .work-card-img-wrap {
  aspect-ratio: auto;
  min-height: 340px;
}
@media (max-width: 768px) {
  .work-card--feature .work-card-img-wrap { min-height: 240px; aspect-ratio: 16/9; }
}

.work-card-img-wrap img {
  transition: transform 0.5s ease;
}
.work-card:hover .work-card-img-wrap img { transform: scale(1.03); }

.work-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) { .work-card-body { padding: 20px 24px; } }

.work-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.work-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.work-card-body p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.work-loc {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.work-loc::before {
  content: '↗';
  font-size: 0.7rem;
  color: var(--gold);
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services {
  background: var(--dark-bg);
}
.services .section-header h2 { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--dark-mid);
  padding: 48px 36px;
  transition: background var(--transition);
}
.service-card:hover { background: #2E2B27; }
@media (max-width: 640px) { .service-card { padding: 32px 24px; } }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(200, 169, 110, 0.2);
}
.service-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.process { background: var(--surface-2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  background: var(--surface);
  padding: 40px 32px;
}
@media (max-width: 640px) { .process-step { padding: 28px 24px; } }

.step-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.step-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-body p {
  font-size: 0.87rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about { background: var(--surface); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-copy .eyebrow { display: block; margin-bottom: 12px; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-copy p:last-of-type { margin-bottom: 32px; }

.about-names {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--surface-2);
  border-bottom: 1px solid var(--surface-2);
}
.about-person { display: flex; flex-direction: column; gap: 3px; }
.person-name { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.person-title { font-size: 0.78rem; color: var(--ink-light); }
.about-divider { width: 1px; height: 36px; background: var(--surface-2); }

.about-service-area {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.about-service-area svg { margin-top: 2px; flex-shrink: 0; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact {
  background: var(--dark-bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }

.contact-copy .eyebrow { display: block; margin-bottom: 12px; }
.contact-copy h2 { color: var(--white); margin-bottom: 20px; }
.contact-copy > p { font-size: 0.93rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 32px; }
.contact-note { font-size: 0.78rem !important; color: rgba(255,255,255,0.3) !important; margin-top: 20px !important; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 640px) { .contact-form { padding: 24px 20px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  font-size: 0.85rem;
  color: #6EE7A8;
  text-align: center;
  min-height: 20px;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: #0F0D0B;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 640px) { .footer-inner { padding: 48px 20px 32px; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 480px) { .footer-links { grid-template-columns: 1fr 1fr; } }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-cta { color: var(--gold) !important; font-weight: 500; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 640px) { .footer-bottom { padding: 16px 20px; } }

.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-portal-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-portal-link:hover { color: var(--gold); }

/* ═══════════════════════════════════
   NAV / FOOTER LOGO IMAGE
═══════════════════════════════════ */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}
/* Hide the text wordmark in footer since logo already contains the name */
.footer-logo span { display: none; }

/* ═══════════════════════════════════
   SERVICES GRID — 4-COLUMN OVERRIDE
═══════════════════════════════════ */
.services-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .services-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .services-grid--4 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════
   NEWPORT RIVER HOUSE — FEATURE CARD
═══════════════════════════════════ */
.project-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow var(--transition);
}
.project-feature:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
@media (max-width: 900px) {
  .project-feature { grid-template-columns: 1fr; }
}

.project-feature-gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 3px;
  background: #000;
  min-height: 480px;
}
@media (max-width: 900px) {
  .project-feature-gallery { min-height: 320px; }
}

.project-feature-main {
  overflow: hidden;
  flex: 1;
}
.project-feature-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-feature:hover .project-feature-main img {
  transform: scale(1.03);
}

.project-feature-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.project-feature-thumbs img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.project-feature-thumbs img:hover { opacity: 0.85; }

.project-feature-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
@media (max-width: 900px) { .project-feature-body { padding: 32px 28px; } }
@media (max-width: 640px) { .project-feature-body { padding: 24px 20px; } }

.project-feature-body .work-tag {
  margin-bottom: 12px;
}
.project-feature-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.project-feature-body p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.project-feature-body .work-loc {
  margin-top: 4px;
}

/* ═══════════════════════════════════
   INDUSTRIAL WORK CARD — COMING SOON
═══════════════════════════════════ */
.work-tag--industrial {
  color: #7EB3C8;
}

.work-card--coming-soon {
  border: 1px dashed rgba(0,0,0,0.12);
  background: var(--surface);
}
.work-card--coming-soon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.work-card-img-wrap--industrial {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #1A1714 0%, #252220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.industrial-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.industrial-placeholder span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.industrial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.35);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ═══════════════════════════════════
   LAND DEVELOPMENT — PHOTO STRIP
═══════════════════════════════════ */
.land-strip {
  display: flex;
  gap: 6px;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
}
@media (max-width: 768px) {
  .land-strip {
    height: 140px;
    gap: 4px;
  }
}
@media (max-width: 480px) {
  .land-strip {
    flex-wrap: wrap;
    height: auto;
  }
  .land-strip img {
    flex: 0 0 calc(50% - 3px) !important;
    height: 110px !important;
  }
}

.land-strip img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: flex 0.35s ease, opacity 0.2s ease;
}
.land-strip img:hover {
  flex: 1.6 1 0;
  opacity: 0.95;
}

.land-strip-plat {
  object-fit: contain !important;
  object-position: center !important;
  background: #f0ede8;
  flex: 1 1 0;
  padding: 4px;
}
