/* ============================================
   OASIS OUTDOOR SERVICES — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #faf8f3;
  --surface: #f0ece3;
  --white: #ffffff;
  --green-dark: #2d4a30;
  --green-mid: #3d6642;
  --green-light: #5a8f62;
  --border: #ddd8cc;
  --text: #1a1a14;
  --text-muted: #6b6852;
  --accent: #2d4a30;
  --accent-hover: #3d6642;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Transparent nav (home page hero) */
nav.nav-transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

nav.nav-transparent .nav-logo img {
  filter: brightness(0) invert(1);
  height: 80px;
}

nav.nav-transparent .nav-links a { color: rgba(255,255,255,0.8); }
nav.nav-transparent .nav-links a::after { background: #fff; }
nav.nav-transparent .nav-links a:hover { color: #fff; }
nav.nav-transparent .nav-links a.active { color: #fff; }

nav.nav-transparent .nav-cta {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

nav.nav-transparent .nav-cta:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

nav.nav-transparent .nav-hamburger span { background: #fff; }

/* After scrolling past hero */
nav.nav-transparent.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

nav.nav-transparent.scrolled .nav-logo img {
  filter: none;
  height: 68px;
}

nav.nav-transparent.scrolled .nav-links a { color: var(--green-dark); }
nav.nav-transparent.scrolled .nav-links a::after { background: var(--green-dark); }
nav.nav-transparent.scrolled .nav-links a:hover { color: var(--green-dark); }
nav.nav-transparent.scrolled .nav-links a.active { color: var(--green-dark); }
nav.nav-transparent.scrolled .nav-cta { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
nav.nav-transparent.scrolled .nav-hamburger span { background: var(--green-dark); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 88px;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease, filter 0.35s ease;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--green-dark);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-dark); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--green-dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 7rem;
}

/* Strip directly below hero with CTA buttons */
.hero-cta-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.05) 25%,
    rgba(0,0,0,0.0) 50%,
    rgba(20,35,20,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h1 {
  color: #ffffff;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: 0.06em;
}

.hero-logo {
  margin: 0 auto 2rem;
  width: 220px;
}

.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  margin-left: 1rem;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }

.section-header { max-width: 680px; margin-bottom: 4rem; }
.section-header .label { margin-bottom: 1rem; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  font-weight: 300;
}

.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

/* ── DIVIDERS ── */
.divider {
  width: 50px;
  height: 1px;
  background: var(--green-light);
  margin: 1.5rem 0;
}

.divider-centered { margin: 1.5rem auto; }

/* ── FEATURED PROJECTS GRID ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

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

.project-card img { transition: transform 0.7s ease; }
.project-card:hover img { transform: scale(1.05); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,20,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s;
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(20,35,20,0.92) 0%, rgba(0,0,0,0.15) 60%);
}

.project-card-overlay .label { color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.project-card-overlay h3 { color: #fff; margin-bottom: 0.4rem; font-size: 1.5rem; }
.project-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

.project-card-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.project-card:hover .project-card-link { opacity: 1; transform: translateY(0); }
.project-card-link::after { content: '→'; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.gallery-item { aspect-ratio: 1; overflow: hidden; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green-dark);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step { display: flex; gap: 2rem; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.step-content h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonial-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 4rem;
}

.testimonial-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--green-dark);
}

.testimonial-attribution {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SCROLL CUE ── */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2.2s ease-in-out infinite;
  opacity: 1;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.hero-scroll-cue:hover { opacity: 1; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ── PROJECT DETAIL PAGE ── */
.project-hero {
  height: 92vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  margin-top: 88px;
}

.project-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  max-width: 600px;
}

.meta-item .label { margin-bottom: 0.5rem; }
.meta-item p { font-size: 0.95rem; color: var(--text); }

.project-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.project-body h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 3.5rem;
}

.project-body h2:first-child { margin-top: 0; }

.project-body p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.project-photo-grid { display: grid; gap: 2px; padding: 0 4rem 6rem; }
.project-photo-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.project-photo-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.project-photo-grid .photo-item { aspect-ratio: 4/3; overflow: hidden; }
.project-photo-grid .photo-wide { grid-column: span 2; aspect-ratio: 16/7; }

/* ── CRAFTSMANSHIP GRID ── */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.detail-item { position: relative; overflow: hidden; }
.detail-item.tall { aspect-ratio: 3/4; }
.detail-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.detail-item.square { aspect-ratio: 1; }

.detail-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(20,35,20,0.85) 0%, transparent 100%);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s;
}

.detail-item:hover .detail-caption { opacity: 1; }

/* ── ABOUT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image { aspect-ratio: 3/4; overflow: hidden; }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── BUTTON GROUP ── */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-group .btn-outline { margin-left: 0; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 680px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

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

.form-group textarea { resize: vertical; min-height: 140px; }

/* ── SERVICES LIST ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-item { border-top: 2px solid var(--green-dark); padding-top: 2rem; }
.service-item h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-item p { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  padding: 4.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }

.footer-bottom {
  background: #1e3422;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── PHOTO PLACEHOLDERS ── */
.photo-slot {
  background: var(--surface);
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--border);
}

.photo-slot::before {
  content: '+';
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1;
  color: var(--border);
}

.photo-slot span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── GOOGLE REPUTATION STRIP ── */
.reputation-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: auto 1px 1fr 1px 1fr;
  gap: 0 4rem;
  align-items: center;
}

.reputation-rating {
  text-align: center;
  flex-shrink: 0;
}

.rating-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
}

.rating-stars {
  color: var(--green-mid);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin: 0.4rem 0;
}

.rating-source {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reputation-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

.reputation-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.reputation-quote cite {
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── PLACEHOLDER LABELS ── */
.placeholder {
  display: block;
  background: rgba(45,74,48,0.07);
  border: 1px dashed var(--green-mid);
  color: var(--green-mid);
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  padding: 0.5rem 0.75rem;
  margin: 0.4rem 0;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 11rem 4rem 5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  margin-top: 88px;
}

/* Split page-header: text left, photo right */
.page-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 88px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-header-split .phs-text {
  padding: 6rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header-split .phs-photo {
  overflow: hidden;
  min-height: 320px;
}

.page-header-split .phs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Project hero — label text should be white over photo */
.project-hero .label { color: rgba(255,255,255,0.75); }
.project-hero .hero-overlay { background: none; }

.page-header .label { margin-bottom: 1rem; }
.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 1.2rem;
  font-weight: 300;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.bg-surface { background: var(--surface); }
.full-width-img { aspect-ratio: 16/7; overflow: hidden; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  width: auto;
  height: auto;
  cursor: default;
}
.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
  transition: color 0.2s;
  z-index: 1001;
}
.lightbox-close:hover { color: #fff; }
.lightbox-img { cursor: zoom-in !important; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  /* Nav — always solid on mobile (no transparent effect on small screens) */
  .nav-inner { padding: 0 1.5rem; height: 72px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 52px; }
  nav.nav-transparent .nav-logo img { filter: brightness(0) invert(1); height: 52px; }

  /* Hamburger → X animation */
  .nav-hamburger span { transition: transform 0.3s ease, opacity 0.3s ease; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile nav dropdown */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 2rem 2rem 3rem;
    gap: 2rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav-links.open a { font-size: 1.1rem; letter-spacing: 0.08em; color: var(--green-dark) !important; }

  /* General layout */
  .hero { padding: 0 1.5rem 1.5rem; margin-top: 0; height: 70vh; min-height: 360px; }
  .hero-bg img { object-position: 62% bottom; }
  .hero .hero-content h1 { font-size: 2.3rem; letter-spacing: 0.01em; }
  .project-hero { margin-top: 72px; padding: 0; height: 55vh; min-height: 260px; }
  .page-header { padding: 6rem 1.5rem 3rem; margin-top: 72px; }
  .page-header-split { grid-template-columns: 1fr; margin-top: 72px; }
  .page-header-split .phs-text { padding: 4rem 1.5rem 2rem; }
  .page-header-split .phs-photo { min-height: 240px; }

  section { padding: 4rem 1.5rem; }

  /* Hero CTA strip */
  .hero-cta-strip { flex-direction: column; padding: 2rem 1.5rem; gap: 0.75rem; }
  .hero-cta-strip .btn { width: 100%; text-align: center; }
  .btn-outline { margin-left: 0; }

  /* Reputation strip */
  .reputation-strip { grid-template-columns: 1fr; gap: 2rem 0; padding: 2.5rem 1.5rem; }
  .reputation-divider { width: 40px; height: 1px; }

  /* Grids */
  .projects-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-portraits { gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }
  .detail-grid { grid-template-columns: 1fr; }
  .project-detail-meta { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }

  /* Project pages */
  .project-body { padding: 4rem 1.5rem; }
  .project-photo-grid { padding: 0 1.5rem 4rem; }

  /* Featured portfolio cards — stack image above text */
  .feat-card { display: grid !important; grid-template-columns: 1fr !important; grid-template-rows: auto !important; gap: 0 !important; margin-top: 1.5rem !important; }
  .feat-img { order: 1; min-height: 280px !important; height: auto !important; }
  .feat-text { order: 2; padding: 2rem 1.5rem !important; min-height: unset !important; }

  /* Featured page header */
  .featured-page-header { margin-top: 72px !important; padding: 2.5rem 1.5rem 2rem !important; }

  /* Home page craftsmanship teaser */
  .craft-teaser-header { flex-wrap: wrap; align-items: flex-start !important; gap: 1.25rem; }
  .craft-teaser-header .btn { flex-shrink: unset; width: 100%; text-align: center; }
  .craft-teaser-grid { grid-template-columns: 1fr 1fr !important; }

  /* Craftsmanship sections */
  .craft-section { margin-top: 1.5rem !important; padding-top: 2rem !important; background: var(--surface) !important; border-top: none !important; }
  .craft-header { padding: 0 0 1.5rem !important; }
  .craft-grid-3 { grid-template-columns: 1fr !important; }
  .craft-grid-2 { grid-template-columns: 1fr !important; }

  /* Project photo grids */
  .photo-grid { grid-template-columns: 1fr 1fr !important; }
  .photo-focus { grid-template-columns: 1fr !important; }

  /* Plan + video side by side */
  .plan-video { grid-template-columns: 1fr !important; }
  .video-panel { min-height: 220px !important; }

  /* Project content text blocks */
  .project-content { padding: 3rem 1.5rem !important; }
  .project-content-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 0 !important; }
  .project-title { padding: 2rem 1.5rem 1.5rem !important; }
  .next-project { padding: 2.5rem 1.5rem !important; }
  .back-link { padding: 1.25rem 1.5rem 1.5rem !important; }

  /* Portfolio gallery Row 1 */
  .portfolio-row1 { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .portfolio-row1 > div { grid-row: span 1 !important; aspect-ratio: 4/3; }

  /* Contact page layout */
  .contact-layout { grid-template-columns: 1fr !important; gap: 3rem !important; }
}
