/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --tc:        #A8714A;
  --tc-light:  #C29070;
  --tc-pale:   #EAD8C8;
  --tc-faint:  #F5ECE4;
  --br-deep:   #7A5C3E;
  --br-mid:    #9B7352;
  --br-soft:   #B8956E;
  --linen:     #F8F3EC;
  --cream:     #FBF8F3;
  --sand:      #EFE5D8;
  --sand-dark: #DECCB8;
  --ink:       #4A3520;
  --ink-mid:   #7A5C3E;
  --ink-soft:  #A88868;
  --white:     #FFFFFF;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--linen);
  color: var(--ink);
  overflow-x: hidden;
  cursor: auto;
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════ */
.cursor {
  width: 8px; height: 8px;
  background: var(--tc);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
  display: none;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--tc);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s;
  opacity: 0.6;
  display: none;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp    { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp   { from{opacity:0;transform:translateY(105%)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:.5} 50%{transform:scaleY(.5);opacity:1} }
@keyframes marqueeRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes rotateSlow  { to{transform:rotate(360deg)} }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 6%;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(249,244,238,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 6%;
  box-shadow: 0 1px 0 var(--sand-dark);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; letter-spacing: 0.06em;
  color: rgba(251,248,243,0.92); text-decoration: none;
  line-height: 1.3; transition: color 0.4s;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}
nav.scrolled .nav-logo { color: var(--br-deep); }

.nav-logo small {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(251,248,243,0.5);
  margin-top: 0.15rem; transition: color 0.4s;
  white-space: nowrap;
}
nav.scrolled .nav-logo small { color: var(--ink-soft); }

.nav-logo-img {
  width: 38px; height: 38px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
nav.scrolled .nav-logo-img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(600%) hue-rotate(15deg);
}

.nav-links {
  display: flex; gap: 2.8rem; list-style: none;
}
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,248,243,0.8); text-decoration: none; transition: color 0.25s;
}
nav.scrolled .nav-links a { color: var(--ink-mid); }
.nav-links a:hover { color: var(--tc-pale) !important; }

.nav-btn {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.65rem 1.4rem; background: transparent;
  border: 1px solid rgba(251,248,243,0.5); color: rgba(251,248,243,0.9);
  text-decoration: none; transition: all 0.3s; white-space: nowrap;
  flex-shrink: 0;
}
nav.scrolled .nav-btn { border-color: var(--tc); color: var(--tc); }
.nav-btn:hover { background: var(--br-deep); border-color: var(--br-deep); color: var(--white) !important; }

/* ══════════════════════════════════════════
   HAMBURGER
══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(251,248,243,0.9);
  transition: all 0.3s;
}
nav.scrolled .nav-hamburger span { background: var(--br-deep); }

.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); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(248,243,236,0.35) 0%,
    rgba(74,53,32,0.18) 40%,
    rgba(74,53,32,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 8rem 8% 7rem; max-width: 900px; width: 100%;
}
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(251,248,243,0.8);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease both 0.3s;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 2rem; height: 1px;
  background: rgba(251,248,243,0.6);
}
.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 400; line-height: 1.0; color: var(--cream);
  letter-spacing: 0.04em; margin-bottom: 0.6rem;
  text-shadow: 0 2px 40px rgba(74,53,32,0.3);
  animation: fadeUp 0.9s ease both 0.4s;
}
.hero-brand-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: italic; font-weight: 300;
  color: var(--tc-pale); margin-bottom: 2.5rem; letter-spacing: 0.06em;
  animation: fadeUp 0.9s ease both 0.55s;
}
.hero-divider {
  width: 4rem; height: 1px;
  background: rgba(251,248,243,0.45);
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s ease both 0.65s;
}
.hero-subtitle {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 300; line-height: 1.9;
  color: rgba(251,248,243,0.82);
  max-width: 520px; margin: 0 auto 3.2rem;
  animation: fadeUp 0.8s ease both 0.8s;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s ease both 1s;
}
.hero-stats {
  display: flex; gap: 4rem; margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(251,248,243,0.18);
  animation: fadeUp 0.8s ease both 1.2s;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 300; color: var(--tc-pale);
  display: block; line-height: 1;
}
.stat-lbl {
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,248,243,0.5); margin-top: 0.35rem; display: block;
}
.scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; animation: fadeUp 0.8s ease both 1.6s;
}
.scroll-hint span {
  font-size: 0.54rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(251,248,243,0.4); display: block; margin-bottom: 0.7rem;
}
.scroll-line {
  width: 1px; height: 2.5rem;
  background: linear-gradient(to bottom, rgba(251,248,243,0.45), transparent);
  margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-block; padding: 1rem 2.6rem;
  background: var(--br-deep); color: var(--cream);
  text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--br-mid); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block; padding: 1rem 2.6rem;
  border: 1px solid rgba(251,248,243,0.55); color: rgba(251,248,243,0.9);
  text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(251,248,243,0.12); border-color: rgba(251,248,243,0.85); }

.btn-white {
  display: inline-block; padding: 1rem 2.4rem;
  background: white; color: var(--tc);
  text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s;
}
.btn-white:hover { background: var(--br-deep); color: white; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-block; padding: 1rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.5); color: white;
  text-decoration: none; font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase; transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-strip {
  background: var(--tc); padding: 1rem 0;
  overflow: hidden; display: flex;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeRoll 28s linear infinite;
}
.marquee-item {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.marquee-item::after { content: '✦'; color: rgba(255,255,255,0.45); font-size: 0.5rem; }

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
section { padding: 7rem 8%; }

.s-label {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--tc); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.s-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--tc); }

.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; color: var(--br-deep);
}
.s-title em { font-style: italic; color: var(--tc); }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section { background: var(--sand); overflow: hidden; }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 0;
}
.about-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: auto; }

.photo-main {
  position: relative; top: auto; left: auto;
  width: 100%; height: 900px;
  background: var(--tc-pale); overflow: hidden;
}
.photo-secondary {
  position: relative; bottom: auto; right: auto;
  width: 100%; height: 900px;
  border: none; margin-top: 2rem;
  background: var(--sand-dark); overflow: hidden;
  border: 6px solid var(--sand);
}
.photo-main img, .photo-secondary img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.photo-main:hover img, .photo-secondary:hover img { transform: scale(1.05); }

.photo-year {
  position: relative; bottom: auto; left: auto;
  display: inline-block; margin-top: 1rem;
  width: fit-content;
  background: var(--br-deep); color: var(--cream);
  padding: 1rem 1.4rem;
}
.photo-year strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--tc-light);
  display: block; line-height: 1;
}
.photo-year small {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,248,243,0.45);
}
.photo-accent-line { display: none; }

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem; font-style: italic; color: var(--br-deep);
  line-height: 1.7; padding-left: 1.6rem;
  border-left: 2px solid var(--tc); margin: 2.2rem 0;
}
.about-text p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.95;
  color: var(--ink-mid); margin-bottom: 1rem;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag {
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 1.1rem; border: 1px solid var(--sand-dark);
  color: var(--ink-soft); transition: all 0.25s;
}
.tag:hover { border-color: var(--tc); color: var(--tc); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section { background: var(--linen); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 4.5rem;
}
.services-header p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); align-self: end;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--sand-dark);
}
.svc {
  padding: 3.2rem 2.8rem; border-right: 1px solid var(--sand-dark);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.svc:last-child { border-right: none; }
.svc::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--tc);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.svc:hover { background: var(--sand); }
.svc:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; font-weight: 300; color: var(--tc-pale);
  line-height: 1; margin-bottom: 1.8rem; display: block;
}
.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--br-deep); margin-bottom: 0.9rem;
}
.svc-desc {
  font-size: 0.83rem; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); margin-bottom: 1.8rem;
}
.svc-list { list-style: none; }
.svc-list li {
  font-size: 0.7rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.4rem 0;
  border-bottom: 1px solid var(--sand-dark);
  display: flex; align-items: center; gap: 0.7rem;
}
.svc-list li::before { content: '—'; color: var(--tc); font-size: 0.55rem; }

/* ══════════════════════════════════════════
   IMAGE BAND
══════════════════════════════════════════ */
.image-band {
  height: 440px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #4A2E1F 0%, var(--br-deep) 40%, #5C3020 100%);
}
.image-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(58,36,24,0.85) 0%, rgba(58,36,24,0.3) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 8%;
}
.band-text { position: relative; z-index: 2; max-width: 560px; }
.band-text blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.4; margin-bottom: 1.5rem;
}
.band-text cite {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tc-light); font-style: normal;
  display: flex; align-items: center; gap: 0.8rem;
}
.band-text cite::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--tc-light); }

/* ══════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════ */
.clients-section { background: var(--br-deep); padding: 6rem 8%; }
.clients-section .s-label { color: var(--tc-light); }
.clients-section .s-label::before { background: var(--tc-light); }
.clients-section .s-title { color: var(--cream); }
.clients-intro-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 4rem;
}
.clients-intro-row p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.85;
  color: rgba(251,248,243,0.55);
}
.clients-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(251,248,243,0.06);
}
.client-card {
  background: var(--br-deep); padding: 2.2rem;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.client-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--tc);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.client-card:hover { background: rgba(192,123,90,0.08); }
.client-card:hover::before { transform: scaleY(1); }
.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: rgba(251,248,243,0.9); margin-bottom: 0.35rem;
}
.client-desc {
  font-size: 0.7rem; letter-spacing: 0.05em;
  color: rgba(251,248,243,0.35); line-height: 1.6;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: var(--sand); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream); padding: 2.5rem;
  border-left: 3px solid var(--tc);
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic;
  line-height: 1.9; color: var(--ink-mid);
  margin-bottom: 1.5rem;
}
.testimonial-name {
  font-size: 0.82rem; font-weight: 500;
  color: var(--br-deep); letter-spacing: 0.05em;
}
.testimonial-company {
  font-size: 0.72rem; color: var(--tc);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-section { background: var(--cream); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--sand-dark); margin-top: 4rem;
}
.process-step {
  padding: 3rem 2.5rem; border-right: 1px solid var(--sand-dark);
  position: relative; transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--sand); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--tc-pale);
  line-height: 1; display: block; margin-bottom: 1.8rem; transition: color 0.3s;
}
.process-step:hover .step-num { color: var(--tc-light); }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--br-deep); margin-bottom: 0.7rem;
}
.step-desc { font-size: 0.82rem; font-weight: 300; line-height: 1.8; color: var(--ink-mid); }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
  background: var(--tc); padding: 6rem 8%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; background: rgba(0,0,0,0.08);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; color: white; line-height: 1.2;
}
.cta-title em { font-style: italic; }
.cta-sub {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.75; margin-top: 1rem;
}
.cta-right {
  display: flex; flex-direction: column;
  gap: 1rem; align-items: flex-start; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--ink); padding: 5.5rem 8% 2.5rem; color: var(--cream);
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(251,248,243,0.08); margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 300; letter-spacing: 0.08em;
  color: var(--cream); margin-bottom: 0.9rem;
}
.footer-desc {
  font-size: 0.78rem; font-weight: 300; line-height: 1.9;
  color: rgba(251,248,243,0.4); margin-bottom: 1.8rem; max-width: 260px;
}
.footer-h {
  font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--tc-light); margin-bottom: 1.3rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(251,248,243,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--tc-light); }
.footer-contact-row {
  font-size: 0.78rem; font-weight: 300;
  color: rgba(251,248,243,0.45); margin-bottom: 0.7rem;
  display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5;
}
.footer-contact-row a {
  color: rgba(251,248,243,0.8);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-row a:hover { color: var(--tc-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(251,248,243,0.2);
}
.footer-bottom a { color: rgba(251,248,243,0.35); text-decoration: none; }
.footer-logo {
  width: 100px; height: 100px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════ */
@media(max-width:1024px){
  nav { padding: 1rem 4%; }

  /* Show hamburger, hide desktop nav items */
  .nav-hamburger { display: flex; }
  .nav-btn { display: none; }
  .nav-logo small { display: none; }

  /* Mobile menu — fullscreen overlay */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--br-deep);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Layout adjustments */
  .hero-content { padding: 6rem 6% 5rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-brand-name { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-brand-tagline { font-size: 1rem; }
  .hero-subtitle { font-size: 0.85rem; max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-photos { display: grid; grid-template-columns: 1fr 1fr; height: auto; }
  .photo-main { height: 500px; }
  .photo-secondary { height: 500px; margin-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; border-bottom: 1px solid var(--sand-dark); }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .clients-intro-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--sand-dark); }
  .cta-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-header { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
══════════════════════════════════════════ */
@media(max-width:640px){
  section { padding: 5rem 6%; }
  .hero-brand-name { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-brand-tagline { font-size: 0.9rem; }
  .hero-subtitle { font-size: 0.82rem; }
  .hero-content { padding: 5.5rem 5% 4rem; }
  .hero-stats { gap: 1.2rem; margin-top: 2.5rem; }
  .stat-num { font-size: 1.5rem; }
  .hero-img { object-position: center top; }
  .about-grid { display: block; }
  .about-photos { display: flex; flex-direction: column; height: auto; gap: 1rem; }
  .photo-main { height: 500px; width: 100%; }
  .photo-secondary { height: 500px; width: 100%; margin-top: 0; border: none; }
  .photo-main img, .photo-secondary img { object-fit: cover; object-position: center top; }
  .photo-year { margin-top: 1rem; }
  .about-content { margin-top: 2rem; }
  .clients-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .image-band { height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}