/* ══════════════════════════════════════════════════════
   Rudd Bespoke Joinery — Tenacity-Accurate Stylesheet
   ══════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --bg:        #f1ece0;   /* warm cream – main background */
  --bg-mid:    #f8f5ee;   /* lighter cream – alternate sections */
  --dark:      #1c2b26;   /* very dark teal-forest – dark sections & nav CTA */
  --dark-hover:#243530;
  --text:      #1a1a18;   /* near-black body text */
  --text-body: #5a5855;   /* medium warm gray */
  --text-light:#9a9895;   /* muted gray */
  --white:     #ffffff;
  --border:    rgba(26,26,24,0.14);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 70px;
  --max:   1300px;
  --pad:   clamp(24px, 4vw, 60px);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
select { font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* ─── LAYOUT ─── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── NAV ─── */
#nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.nav-logo:hover .logo-mark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 1px;
}
/* Nav links – center */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.nav-links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
/* Nav CTA – right */
.nav-right { display: flex; justify-content: flex-end; }
.btn-nav {
  background: var(--dark);
  color: var(--white);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--dark-hover); }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}
.mobile-menu a:hover { color: var(--dark); }

/* ─── BUTTONS ─── */
.btn-outline-dark {
  display: inline-block;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-solid-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-solid-dark:hover { background: var(--dark-hover); border-color: var(--dark-hover); }

/* ─── HERO ─── */
.hero {
  width: 100%;
  height: 78vh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ─── DISPLAY HEADLINE SECTION ─── */
.headline-section {
  background: var(--bg);
  padding: 52px var(--pad) 48px;
  text-align: left;
}
.headline-section h1,
.headline-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 1000px;
}
.headline-section h1 em,
.headline-section h2 em {
  font-style: italic;
}

/* ─── SERVICE CARDS (3-col) ─── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.8s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,32,28,0.78) 0%, rgba(20,32,28,0.15) 55%, transparent 100%);
  transition: background 0.4s ease;
}
.service-card:hover::after {
  background: linear-gradient(to top, rgba(20,32,28,0.88) 0%, rgba(20,32,28,0.25) 55%, transparent 100%);
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ─── CENTERED INTRO / EYEBROW SECTION ─── */
.intro-section {
  background: var(--bg);
  padding: 80px var(--pad);
  text-align: center;
}
.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.eyebrow-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border);
}
.eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.intro-body {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-body);
}
.intro-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SPLIT SECTIONS (50/50) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.split-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split:hover .split-img img { transform: scale(1.03); }
.split-body {
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Dark split variant */
.split--dark { background: var(--dark); }
.split--dark .split-body { background: var(--dark); }
.split--dark h2, .split--dark h3 {
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.split--dark p { color: rgba(241,236,224,0.7); font-size: 0.88rem; line-height: 1.85; margin-bottom: 32px; }
/* Cream split variant */
.split--cream { background: var(--bg); }
.split--cream .split-body { background: var(--bg); }
.split--cream h2, .split--cream h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.split--cream p { color: var(--text-body); font-size: 0.88rem; line-height: 1.85; margin-bottom: 32px; }

/* ─── FULL-WIDTH PHOTO BANNER ─── */
.photo-banner {
  position: relative;
  height: clamp(340px, 45vw, 580px);
  overflow: hidden;
}
.photo-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.photo-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* ─── CATEGORY STRIP ─── */
.category-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px var(--pad);
}
.category-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.cat-link {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 6px 28px;
  border-right: 1px solid var(--border);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.cat-link:first-child { border-left: 1px solid var(--border); }
.cat-link:hover { color: var(--text); }
.cat-logo {
  padding: 4px 24px;
  border-right: 1px solid var(--border);
}
.cat-logo .logo-mark { width: 32px; height: 32px; font-size: 1rem; }

/* ─── WHY CHOOSE (3-col: img | text | img) ─── */
.why-section {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 520px;
}
.why-img {
  position: relative;
  overflow: hidden;
}
.why-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.why-img:hover img { transform: scale(1.05); }
.why-body {
  background: var(--bg);
  padding: clamp(48px, 5vw, 80px) clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.why-body p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* ─── GALLERY GRID ─── */
.gallery-section {
  background: var(--dark);
  padding: 4px;
}
.gallery-grid {
  columns: 4;
  column-gap: 4px;
}
.gallery-grid img {
  width: 100%;
  display: block;
  margin-bottom: 4px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.gallery-grid img:hover { opacity: 0.85; }
/* Vary heights for mosaic effect */
.gallery-grid .tall { aspect-ratio: 3/4; }
.gallery-grid .wide { aspect-ratio: 4/3; }
.gallery-grid .sq   { aspect-ratio: 1/1; }

/* ─── DARK CTA BAND ─── */
.cta-band {
  background: var(--dark);
  padding: 64px var(--pad);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-band p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(241,236,224,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-band-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT FORM SECTION ─── */
.contact-section {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) var(--pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
}
.contact-left p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 380px;
}
/* Underline-style form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,26,24,0.25);
  padding: 8px 0 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--dark);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath stroke='%239a9895' stroke-width='1.2' stroke-linecap='round' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
  color: var(--text-light);
}
.form-select.has-value { color: var(--text); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-field--error .form-input,
.form-field--error .form-select,
.form-field--error .form-textarea { border-bottom-color: #c0392b; }
.form-error-msg {
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}
.form-field--error .form-error-msg { display: block; }
.form-submit-row { margin-top: 8px; }
.btn-submit {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 13px 44px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
/* Success */
.form-success {
  display: none;
  padding: 40px 0;
  text-align: center;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.form-success p { font-size: 0.88rem; color: var(--text-body); }

/* ─── FOOTER ─── */
#footer {
  background: var(--dark);
  padding: 60px var(--pad) 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
/* Footer services nav column */
.footer-nav-col h5 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.35);
  margin-bottom: 18px;
}
.footer-nav-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(241,236,224,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: rgba(241,236,224,0.85); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-wrap .logo-mark {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  width: 44px; height: 44px;
  font-size: 1.4rem;
}
.footer-logo-wrap .logo-name { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.footer-logo-wrap .logo-sub { color: rgba(255,255,255,0.35); }
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(241,236,224,0.45);
  max-width: 380px;
  margin-bottom: 16px;
}
.footer-credit {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(241,236,224,0.25);
}
.footer-contact h5 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.35);
  margin-bottom: 18px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.fc-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.3);
  width: 52px;
  flex-shrink: 0;
  padding-top: 1px;
}
.fc-val {
  font-size: 0.83rem;
  color: rgba(241,236,224,0.6);
  line-height: 1.6;
  transition: color 0.2s;
}
.fc-val a { color: inherit; }
.fc-val a:hover { color: rgba(241,236,224,0.9); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(241,236,224,0.22);
  letter-spacing: 0.06em;
}
.footer-nav-links {
  display: flex;
  gap: 24px;
}
.footer-nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.3);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: rgba(241,236,224,0.7); }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 1200px; width: 100%; }
.lb-img { width: 100%; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
}
.lb-close:hover { background: rgba(255,255,255,0.1); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible    { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* ─── PAGE-SPECIFIC ─── */

/* Inner page hero (smaller) */
.hero--inner {
  height: 55vh;
  min-height: 380px;
}

/* Sub-service 2-col image grid */
.sub-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sub-service-item {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.sub-service-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.8s ease;
}
.sub-service-item:hover img { transform: scale(1.05); }
.sub-service-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,32,28,0.65));
  padding: 32px 28px 24px;
  z-index: 2;
}
.sub-service-label h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* Thin dark separator */
.dark-bar {
  width: 100%;
  height: 6px;
  background: var(--dark);
}

/* Feature list */
.feature-list {
  list-style: none;
  margin-bottom: 32px;
}
.feature-list li {
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-light);
  flex-shrink: 0;
}

/* Kitchen-specific process section */
.process-section {
  background: var(--bg-mid);
  padding: clamp(60px, 6vw, 100px) var(--pad);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .gallery-grid { columns: 3; }
}

@media (max-width: 860px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }

  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }

  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 320px; }
  .split--dark .split-img, .split--cream .split-img { order: -1; }

  .why-section { grid-template-columns: 1fr; }
  .why-img { min-height: 280px; }

  .gallery-grid { columns: 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .sub-service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .headline-section h1,
  .headline-section h2 { font-size: 2.2rem; }
  .gallery-grid { columns: 2; }
  .footer-nav-links { display: none; }
}
