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

:root {
  --clay:     #C4977A;
  --bark:     #3D2B1F;
  --straw:    #F5F0E8;
  --cream:    #FDFBF7;
  --charcoal: #1E1E1E;
  --warm-mid: #7A6652;
  --clay-deep: #8A6240;
}

html { scroll-behavior: smooth; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bark);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
}

/* ── ICONS ── */
.icon {
  width: 1.5em; height: 1.5em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon-sm { width: 1em; height: 1em; }

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

/* ── SHARED SECTION LAYOUT ── */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bark);
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  color: var(--clay-deep);
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bark);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--straw);
  text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--clay); font-style: italic; }

.nav-links {
  display: flex;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bark);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease; /* Change from max-height */
  flex-direction: column;
  z-index: 99;
}

.nav-links.active {
  max-height: 500px; overflow-y: auto; /* Toggle display instead of height */
}
.nav-links-group { display: flex; flex-direction: column; gap: 0; width: 100%; padding: 0.5rem 0; list-style: none; align-items: center;}
.nav-links-group li { width: 100%; }
.nav-links-group .nav-link,
.nav-links-group .dropdown-trigger {
  display: block; padding: 0.75rem 1.5rem; width: 100%;
}
.nav-link {
  color: rgba(245,240,232,0.7); text-decoration: none;
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--straw); }
.nav-link.active { color: var(--clay); }
.nav-link.active:hover { color: var(--clay); }
.nav-cta {
  margin: 0.75rem 1.5rem 1rem; display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--clay); color: var(--cream);
  padding: 0.55rem 1.25rem; border-radius: 2px;
  font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #b5866a; }

.nav-call {
  margin: 0.5rem 1.5rem 0.75rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  color: var(--straw); text-decoration: none;
  border: 1px solid rgba(196,151,122,0.55);
  padding: 0.45rem; border-radius: 2px;
  font-weight: 500; letter-spacing: 0.04em; font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-call svg { color: var(--clay); }
.nav-call:hover { background: rgba(196,151,122,0.12); border-color: var(--clay); color: var(--clay); }

.nav-mail {
  margin: 0.5rem 1.5rem 0.75rem; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; padding: 0.45rem; border-radius: 2px;
  color: var(--straw); text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-mail:hover { color: var(--clay); background: rgba(196,151,122,0.12); border-color: rgba(196,151,122,0.35); }

.dropdown { position: relative; }
.dropdown-trigger {
  background: none; border: none; cursor: pointer;
  color: rgba(245,240,232,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 4px;
  padding: 0; transition: color 0.2s;
}
.dropdown-trigger:hover { color: var(--straw); }
.dropdown-trigger.is-current { color: var(--clay); }
.dropdown-trigger.is-current:hover { color: var(--clay); }
.dropdown-menu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  position: static;
  background: rgba(0,0,0,0.2);
  border: none;
  min-width: 200px; padding: 0; z-index: 200;
  list-style: none;
}
.dropdown.active .dropdown-menu {
  max-height: 500px;
  padding: 0.5rem 0;
}
.dropdown-menu a {
  display: block; padding: 0.6rem 1.25rem;
  color: rgba(245,240,232,0.75);
  font-size: 0.875rem; white-space: nowrap; text-decoration: none;
}
.dropdown-menu a:hover { color: var(--clay); background: rgba(255,255,255,0.04); }
.arrow { font-size: 0.6rem; margin-left: 2px; }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 150;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--straw);
  transition: all 0.3s ease; border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
  background: var(--bark);
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(61,43,31,0.92) 0%, rgba(61,43,31,0.7) 60%, rgba(74,92,58,0.5) 100%);
  z-index: 1;
}
.hero-rule {
  position: absolute; left: 1.5rem; top: 0; bottom: 0;
  width: 2px; background: var(--clay); opacity: 0.4;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; width: 100%;
  padding-left: 1rem;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay);
  margin-bottom: 1.25rem; font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700; line-height: 1.08;
  color: var(--straw);
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--clay); font-style: italic; }
.hero-sub {
  font-size: 1.1rem; color: rgba(245,240,232,0.75);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }

.hero-contact {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.hero-contact-sep { color: var(--straw); opacity: 0.5; }

.hero-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.15rem; font-weight: 500;
  color: var(--straw); text-decoration: none;
  transition: color 0.2s;
}
.hero-phone:hover { color: var(--clay); }
.hero-phone .icon { color: var(--clay); }

.btn-primary {
  display: inline-block;
  background: var(--clay); color: var(--bark);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  text-align: center;
}
.btn-primary:hover { background: #b5866a; }
.btn-primary::after {
  content: '\2192';
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.2s;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(245,240,232,0.4); color: var(--straw);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-weight: 400; font-size: 0.9rem;
  letter-spacing: 0.06em; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}
.btn-ghost:hover { border-color: var(--straw); color: var(--straw); }

.hero-stats {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 3rem auto 0; width: 100%;
  padding-left: 1rem;
  display: flex; gap: 2rem;
}
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--clay); line-height: 1;
}
.stat-label {
  font-size: 0.8rem; color: rgba(245,240,232,0.55);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── STRIP ── */
.strip {
  background: var(--clay);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.strip-track {
  display: inline-block;
  animation: strip-scroll 30s linear infinite;
}
.strip-track span {
  display: inline-block;
  margin: 0 2rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bark);
}
.strip-track span::before {
  content: '·';
  margin-right: 2rem;
  opacity: 0.5;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#services { background: var(--straw); }

.services-intro {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; align-items: end;
  margin-bottom: 3rem;
}
.services-intro-right {
  color: var(--warm-mid); font-size: 1rem;
  line-height: 1.75; padding-bottom: 0.5rem;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.area-card {
  background: rgba(245,240,232,0.10);
  padding: 1.75rem;
  border-radius: 4px;
  text-align: left;
}
.area-card svg { margin-bottom: 0.5rem; }
.area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--straw);
  margin-bottom: 0.35rem;
}
.area-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.65;
}
a.area-card {
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
a.area-card:hover {
  background: rgba(245,240,232,0.18);
  transform: translateY(-2px);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.step-card {
  background: var(--straw);
  padding: 2rem 2rem 2rem 3.5rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.step-num {
  position: absolute;
  left: 1.25rem;
  top: 2rem;
  width: 1.75rem; height: 1.75rem;
  background: var(--bark);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.step-card:hover .step-num {
  transform: scale(1.1);
  background: var(--clay);
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 0.4rem;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--warm-mid);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: rgba(61,43,31,0.1);
  border: 1.5px solid rgba(61,43,31,0.1);
}
.service-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--straw); }
.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--clay-deep); letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.card-icon {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
  margin-bottom: 0.75rem;
}
.card-icon .icon { width: 1.8rem; height: 1.8rem; stroke-width: 1.5; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--bark); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--warm-mid); line-height: 1.65; }
.service-card-link {
  display: inline-block; margin-top: 0.85rem; font-size: 0.85rem;
  font-weight: 500; color: var(--clay-deep); text-decoration: none;
}
.service-card-link:hover { text-decoration: underline; }

/* ── ABOUT ── */
#about { background: var(--cream); }

.about-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 12px rgba(61,43,31,0.04);
}
.about-badge {
  position: absolute; bottom: -1rem; left: 1.5rem;
  background: var(--bark); color: var(--straw);
  padding: 1.1rem 1.5rem; text-align: center;
  border-left: 3px solid var(--clay);
  border-radius: 0 6px 6px 0;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--clay);
  line-height: 1;
}
.badge-text { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; opacity:0.8; }

.about-text p {
  color: var(--warm-mid); margin-bottom: 1.25rem; font-size: 1rem;
}
.areas-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.area-chip {
  background: var(--straw); color: var(--bark);
  padding: 0.35rem 0.85rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid rgba(61,43,31,0.04);
}
.area-chip .icon { color: var(--clay); }

/* ── CONTACT ── */
#contact { background: var(--bark); }
#contact .section-label { color: var(--clay); }
#contact .section-title { color: var(--straw); }

/* Light Contact Section variant for /contact page */
.contact-section--light {
  background: var(--cream) !important;
}
.contact-section--light .section-label {
  color: var(--clay-deep) !important;
}
.contact-section--light .section-title {
  color: var(--bark) !important;
}
.contact-section--light .contact-intro p {
  color: rgba(61,43,31,0.8) !important;
}
.contact-section--light .contact-detail {
  background: #ffffff !important;
  border: 1px solid rgba(61,43,31,0.08) !important;
  box-shadow: 0 4px 12px rgba(61,43,31,0.04) !important;
  color: rgba(61,43,31,0.7) !important;
  transition: all 0.25s ease !important;
  border-radius: 8px !important;
}
.contact-section--light .contact-detail:hover {
  background: #ffffff !important;
  border-color: rgba(196,151,122,0.4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(61,43,31,0.08) !important;
}
.contact-section--light .contact-detail .icon {
  color: var(--clay-deep) !important;
}
.contact-section--light .contact-detail strong {
  color: var(--bark) !important;
}
.contact-section--light .contact-detail a {
  color: var(--bark) !important;
  font-weight: 500;
}
.contact-section--light .contact-detail a:hover {
  color: var(--clay-deep) !important;
}

.contact-section--light .contact-form {
  background: #ffffff !important;
  border: 1px solid rgba(61,43,31,0.1) !important;
  box-shadow: 0 12px 32px rgba(61,43,31,0.06) !important;
  border-radius: 12px !important;
  padding: 2.25rem !important;
}
.contact-section--light .form-group label {
  color: var(--bark) !important;
  font-weight: 600 !important;
}
.contact-section--light .form-group input,
.contact-section--light .form-group textarea,
.contact-section--light .form-group select {
  background: #F9F7F5 !important;
  border: 1.5px solid #E2D9D0 !important;
  color: var(--charcoal) !important;
  border-radius: 6px !important;
}
.contact-section--light .form-group input::placeholder,
.contact-section--light .form-group textarea::placeholder {
  color: #A09387 !important;
}
.contact-section--light .form-group select option {
  background: #ffffff !important;
  color: var(--charcoal) !important;
}
.contact-section--light .form-group input:focus,
.contact-section--light .form-group textarea:focus,
.contact-section--light .form-group select:focus {
  border-color: var(--clay) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(196,151,122,0.18) !important;
}

.contact-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: start;
  margin-top: 1rem;
}
.contact-intro p {
  color: rgba(245,240,232,0.65); font-size: 1rem;
  margin-bottom: 2rem; line-height: 1.75;
}
.contact-detail {
  margin-bottom: 0.75rem;
  color: rgba(245,240,232,0.55); font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(245,240,232,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.contact-detail:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,240,232,0.12);
}
.contact-detail .icon { color: var(--clay); flex-shrink: 0; }
.contact-detail strong { color: var(--clay); margin-right: 0.5rem; }
.contact-detail a { color: var(--straw); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--clay); }

.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem;
  background: rgba(255,255,255,0.03);
  padding: 2rem;
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  transition: color 0.2s;
}
.form-group:focus-within label { color: var(--clay); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,240,232,0.15);
  color: var(--straw);
  padding: 0.75rem 1rem; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-group select option { background: #2b1f16; color: var(--straw); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clay);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 2px rgba(196,151,122,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { align-self: flex-start; }

.btn-submit {
  background: var(--clay); color: var(--cream);
  padding: 0.85rem 2rem; border-radius: 2px;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; align-self: flex-start;
}
.btn-submit:hover { background: #b5866a; }

/* ── SERVICE AREA LAYOUT ── */
.area-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
}
.area-communities {
  background: rgba(245,240,232,0.06);
  padding: 1.75rem; border-radius: 4px;
}
.area-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.area-list li {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(245,240,232,0.7); font-size: 0.9rem;
}
.area-list .icon { color: var(--clay); font-size: 0.85rem; }

#service-area .area-communities {
  background: rgba(61,43,31,0.03);
  border: 1px solid rgba(61,43,31,0.06);
  transition: background 0.2s;
}
#service-area .area-communities:hover { background: rgba(61,43,31,0.05); }
#service-area .area-list li { color: rgba(61,43,31,0.65); }
#service-area .area-list .icon { color: var(--clay); }
.area-map { margin-top: 0.5rem; }
.area-map iframe { display: block; }
.area-map-clip {
  overflow: hidden;
  border-radius: 4px;
  height: 400px;
}
.area-map-clip iframe {
  margin-top: -60px;
  height: 460px;
}
.area-map-caption {
  margin-top: 0.75rem; font-size: 0.85rem; color: var(--warm-mid);
}
.area-map-caption a { color: var(--clay); font-weight: 600; }
@media (max-width: 640px) {
  .area-map-clip { height: 300px; }
  .area-map-clip iframe { margin-top: -40px; height: 380px; }
}


/* ── TESTIMONIALS ── */
#testimonials { background: var(--straw); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  padding: 2rem;
  position: relative;
  border-bottom: 3px solid var(--clay);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card::before {
  content: "\201C";
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 0.8;
  color: var(--clay);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.testimonial-stars { color: var(--clay); margin-bottom: 0.5rem; display: flex; gap: 0.2rem; }
.testimonial-stars .icon { width: 0.95rem; height: 0.95rem; fill: var(--clay); stroke: none; }
.testimonial-card p { font-size: 0.95rem; color: var(--warm-mid); line-height: 1.7; }
.testimonial-author {
  margin-top: 1.25rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--bark); letter-spacing: 0.04em;
}

/* ── TEAM ── */
#team { background: var(--cream); }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem; margin-top: 1rem;
}
.team-card {
  text-align: left; padding: 2rem 1.75rem;
  border: 1px solid rgba(61,43,31,0.06);
  border-radius: 10px;
  background: var(--cream);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  box-shadow: 0 1px 2px rgba(61,43,31,0.02);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(61,43,31,0.06);
  border-color: rgba(61,43,31,0.12);
}
.team-avatar {
  width: 72px; height: 72px;
  margin: 0 0 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--avatar-a, var(--clay)), var(--avatar-b, var(--bark)));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-avatar span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.team-avatar-badge {
  position: absolute; bottom: -4px; right: -4px;
  width: 26px; height: 26px;
  background: var(--bark);
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
}
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--bark); margin-bottom: 0.15rem;
}
.team-title {
  font-size: 0.78rem; color: var(--clay);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.team-card p { font-size: 0.88rem; color: var(--warm-mid); line-height: 1.65; margin:0; }

/* ── TEAM TAGS ── */
.team-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.85rem; }
.team-tag {
  font-size: 0.68rem; padding: 0.2rem 0.55rem;
  background: rgba(196,151,122,0.08); border: 1px solid rgba(196,151,122,0.15);
  border-radius: 4px; color: var(--clay); letter-spacing: 0.03em;
  text-transform: uppercase; font-weight: 500;
}

/* ── JOURNEY ── */
.journey-grid {
  display: flex; flex-direction: column; gap: 0;
  max-width: 560px; margin: 2.5rem auto 0; position: relative;
}
.journey-grid::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 1px; background: rgba(61,43,31,0.1);
}
.journey-item {
  display: flex; gap: 1.25rem; padding-bottom: 2.25rem; position: relative;
}
.journey-item:last-child { padding-bottom: 0; }
.journey-dot {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--cream); border: 1.5px solid var(--clay);
  border-radius: 50%; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.journey-dot::after {
  content: ''; width: 8px; height: 8px;
  background: var(--clay); border-radius: 50%; opacity: 0.5;
}
.journey-content { padding-top: 0.15rem; }
.journey-year {
  font-size: 0.72rem; color: var(--clay); font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.journey-content h3 {
  font-family:'Playfair Display',serif; font-size:1.05rem;
  color:var(--bark); margin:0.1rem 0 0.2rem;
}
.journey-content p { font-size:0.85rem; color:var(--warm-mid); line-height:1.65; margin:0; max-width:400px; }

/* ── TESTIMONIAL PULL ── */
.testimonial-pull {
  position: relative; padding: 1.25rem 1.5rem 1.25rem 3rem;
  background: var(--straw); border-radius: 10px;
  border-left: 3px solid var(--clay);
}
.testimonial-pull-icon {
  position: absolute; left: 1rem; top: 1.25rem;
  width: 1.1rem; height: 1.1rem; color: var(--clay); opacity: 0.3;
}
.testimonial-pull-icon .icon { width: 100%; height: 100%; }
.testimonial-pull p {
  font-size: 0.9rem !important; color: var(--charcoal) !important;
  font-style: italic; line-height: 1.65 !important; margin-bottom: 0.35rem !important;
}
.testimonial-pull-author {
  font-size: 0.78rem; color: var(--warm-mid);
}

/* ── STATS ROW ── */
.stats-row {
  display: flex; flex-wrap: wrap; gap: 0;
  max-width: 640px; margin: 3rem auto 0;
  border-top: 1px solid rgba(61,43,31,0.06);
  padding-top: 2.5rem;
}
.stats-row .stat-item {
  flex: 1 1 50%;
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.75rem 0.5rem; text-align: center;
}
@media (min-width: 600px) {
  .stats-row .stat-item { flex: 1 1 25%; }
}
.stats-row .stat-num { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; line-height:1.1; }
.stats-row .stat-label { font-size:0.78rem; letter-spacing:0.06em; text-transform:uppercase; }

/* ── VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.value-card {
  background: var(--straw); border: 1px solid rgba(61,43,31,0.06);
  border-radius: 8px; padding: 1.75rem 1.5rem; text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  box-shadow: 0 1px 2px rgba(61,43,31,0.03);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(61,43,31,0.08);
}
.value-icon {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clay); border: 1px solid rgba(61,43,31,0.06);
}
.value-icon .icon { width: 1.3rem; height: 1.3rem; }
.value-card h3 {
  font-family:'Playfair Display',serif; font-size:1.05rem;
  color:var(--bark); margin-bottom:0.5rem;
}
.value-card p { font-size:0.88rem; color:var(--warm-mid); line-height:1.6; }

/* ── FAQ ── */
#faq { background: var(--straw); }

.faq-container { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid rgba(61,43,31,0.12);
}
.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
}
.faq-question {
  font-size: 1rem; font-weight: 500; color: var(--bark);
  line-height: 1.4;
}
.faq-icon {
  font-size: 1.4rem; color: var(--clay);
  flex-shrink: 0; margin-left: 1rem;
  transition: transform 0.25s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p { font-size: 0.95rem; color: var(--warm-mid); line-height: 1.7; }

/* ── NEWSLETTER ── */
#newsletter { background: var(--bark); }
#newsletter .section-label { color: var(--clay-deep); }
#newsletter .section-title { color: var(--straw); }

.newsletter-form {
  display: flex; flex-direction: column; gap: 0; max-width: 480px; margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 2px;
  color: var(--straw);
  padding: 0.8rem 1.25rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--clay); }
.newsletter-form input[type="email"]::placeholder { color: rgba(245,240,232,0.3); }
.newsletter-form .btn-primary {
  border-radius: 2px; white-space: nowrap; text-align: center;
}
.newsletter-consent {
  flex-basis: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--bark); font-size: 0.8rem; opacity: 0.75;
}
.newsletter-consent input { width: 15px; height: 15px; accent-color: var(--clay); cursor: pointer; flex-shrink: 0; }
.newsletter-consent a { color: var(--clay-deep); text-decoration: underline; }

/* ── TRUST BADGES ── */
#trust { background: var(--cream); border-top: 1px solid #E8E0D0; }
.trust-badges {
  display: flex; flex-direction: column;
  gap: 2rem; align-items: flex-start;
}
.trust-badge {
  display: flex; align-items: center; gap: 1rem;
  min-width: 200px;
}
.badge-icon {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
  flex-shrink: 0;
}
.badge-icon .icon { width: 1.6rem; height: 1.6rem; }
.trust-badge p { font-size: 0.9rem; color: var(--charcoal); line-height: 1.45; }
.trust-badge strong { color: var(--bark); }
.trust-badge small { color: var(--warm-mid); font-size: 0.8rem; }

/* ── PORTFOLIO FILTER BAR ── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1rem; justify-content: center;
  position: sticky; top: 64px; z-index: 5;
  background: var(--cream); padding: 1rem 0;
}
.filter-info {
  text-align: center; font-size: 0.82rem; color: var(--warm-mid);
  margin-bottom: 0.5rem; min-height: 1.2em;
}
.filter-empty {
  display: none; text-align: center;
  padding: 3rem 1rem; color: var(--warm-mid);
  font-size: 0.9rem;
}
.filter-empty.visible { display: block; }
.filter-btn {
  background: transparent; color: var(--warm-mid);
  border: 1px solid rgba(61,43,31,0.15);
  padding: 0.5rem 1.25rem; border-radius: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 500; cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.filter-btn:hover { border-color: var(--clay); color: var(--bark); transform: translateY(-1px); }
.filter-btn.active { background: var(--clay); color: var(--cream); border-color: var(--clay); transform: translateY(-1px); }

/* ── PORTFOLIO STATS STRIP ── */
.stats-strip {
  background: var(--bark);
  padding: 2.5rem 1.5rem;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 30% 0%, rgba(196,151,122,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.stats-strip-inner {
  display: flex; flex-wrap: wrap;
  max-width: 960px; margin: 0 auto;
  position: relative; z-index: 1;
}
.stat-item {
  flex: 1 1 50%;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.25rem 1rem;
  text-align: center; gap: 0.35rem;
  position: relative;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(245,240,232,0.08);
}
@media (min-width: 700px) {
  .stat-item { flex: 1 1 25%; padding: 0.75rem 1rem; }
}
.stat-icon .icon {
  width: 1.5rem; height: 1.5rem;
  color: var(--clay); opacity: 0.6;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--straw);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem; color: rgba(245,240,232,0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
}
@media (min-width: 700px) {
  .stat-num { font-size: 2.25rem; }
  .stat-icon .icon { width: 1.65rem; height: 1.65rem; }
}

/* ── PROJECT TAG ── */
.project-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--straw); color: var(--warm-mid);
  padding: 0.25rem 0.7rem; border-radius: 3px;
  font-size: 0.78rem; line-height: 1.4;
  transition: background 0.2s, color 0.2s;
}
.project-tag .icon { width: 0.85rem; height: 0.85rem; flex-shrink: 0; }

/* ── PORTFOLIO PAGE ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: clamp(1.5rem, 5vw, 2.5rem);
  margin-top: 2.5rem;
}
.portfolio-item {
  background: var(--cream);
  border: 1px solid rgba(196,151,122,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(61,43,31,0.04);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease, border-color 0.3s, opacity 0.35s ease;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(61,43,31,0.1), 0 4px 8px rgba(61,43,31,0.06);
  border-color: var(--clay);
}
.portfolio-item:hover .comparison-img img {
  transform: scale(1.06);
}
.portfolio-item:hover .expand-btn {
  opacity: 1; transform: translateY(0);
}
.portfolio-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--bark);
  margin-top: 1.1rem; margin-bottom: 0.5rem;
}
.portfolio-item-desc {
  font-size: 0.85rem; color: var(--warm-mid);
  margin-bottom: 1.1rem; line-height: 1.6;
}
.project-meta {
  display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;
  font-size: 0.82rem; color: var(--warm-mid);
  border-top: 1px solid rgba(61,43,31,0.1);
  padding-top: 1rem;
}
.project-meta-link {
  margin-left: auto;
  color: var(--clay); font-weight: 500; text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.project-meta-link:hover { color: var(--bark); }

/* ── FEATURED PROJECT ── */
@media (min-width: 700px) {
  .portfolio-item--featured {
    grid-column: span 2;
  }
  .portfolio-item--featured h3 { font-size: 1.4rem; }
  .portfolio-item--featured .portfolio-item-desc { font-size: 0.9rem; }
}

/* ── FILTER ANIMATION ── */
.portfolio-grid.is-filtering .portfolio-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.portfolio-item.filter-hidden {
  opacity: 0; transform: scale(0.95);
  pointer-events: none;
}

/* ── BEFORE/AFTER COMPARISON SLIDER ── */
.portfolio-img-wrap {
  position: relative; overflow: hidden;
  border-radius: 4px;
}
.portfolio-comparison {
  user-select: none;
}
.portfolio-comparison:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-radius: 10px;
}
.comparison-img img {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.expand-btn {
  position: absolute; bottom: 0.6rem; right: 0.6rem;
  z-index: 20;
  background: rgba(61,43,31,0.7); color: var(--straw);
  border: none; border-radius: 2px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.95rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s, opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  opacity: 0; transform: translateY(4px);
}
.expand-btn:hover { background: var(--clay); }
.expand-btn .icon { width: 1.1rem; height: 1.1rem; }
@media (hover: none) {
  .expand-btn { opacity: 1; transform: translateY(0); }
}
.comparison-slider {
  position: relative; width: 100%;
  aspect-ratio: 4/3; overflow: hidden;
  cursor: ew-resize;
}
.comparison-img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
}
.comparison-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.comparison-img-after {
  clip-path: inset(0 0 0 50%);
  transition: none;
}
.comparison-slider-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 40px; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.comparison-divider {
  width: 2px; height: 100%;
  background: var(--clay);
  display: flex; align-items: center; justify-content: center;
}
.comparison-knob {
  width: 36px; height: 36px;
  background: var(--clay); color: var(--cream);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.comparison-hint {
  position: absolute; bottom: 0.75rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 0.72rem; letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem; border-radius: 20px;
  pointer-events: none; transition: opacity 0.3s;
}

/* ── PORTFOLIO CTA ── */
.portfolio-cta {
  margin-top: 4rem; text-align: center;
  padding: 3.5rem 3rem; background: var(--bark); border-radius: 6px;
  position: relative; overflow: hidden;
}
.portfolio-cta::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 0%, rgba(196,151,122,0.18) 0%, transparent 60%);
}
.portfolio-cta-inner { position: relative; z-index: 1; }
.portfolio-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--straw); margin-bottom: 0.75rem;
}
.portfolio-cta p { color: rgba(245,240,232,0.65); font-size: 1rem; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000;
  display: flex;
  justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1; pointer-events: auto;
}
.lightbox-body {
  position: relative;
  width: 90vw; max-width: 1100px;
}
.lightbox .portfolio-comparison {
  position: relative; width: 100%;
  height: 70vh; max-height: 600px;
  overflow: hidden; border-radius: 4px;
}
.lightbox .comparison-img-before,
.lightbox .comparison-img-after {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.lightbox .comparison-slider-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 4px;
  background: rgba(255,255,255,0.9);
  cursor: ew-resize; z-index: 10;
  pointer-events: auto; transform: translateX(-50%);
}
.lightbox .comparison-slider-handle::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.lightbox-caption {
  text-align: center; margin-top: 1rem;
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none;
  font-size: 2rem; color: var(--straw);
  cursor: pointer; line-height: 1; z-index: 10;
  transition: color 0.2s, transform 0.2s;
  opacity: 0.7;
}
.lightbox-close:hover { color: var(--clay); opacity: 1; transform: scale(1.1); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: var(--straw);
  border: 1px solid rgba(255,255,255,0.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  opacity: 0.6;
}
.lightbox-arrow:hover { background: var(--clay); opacity: 1; transform: translateY(-50%) scale(1.05); }
.lightbox-arrow--prev { left: -1.5rem; }
.lightbox-arrow--next { right: -1.5rem; }
@media (max-width: 700px) {
  .lightbox-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
  .lightbox-arrow--prev { left: 0.5rem; }
  .lightbox-arrow--next { right: 0.5rem; }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--clay); color: var(--cream);
  width: 44px; height: 44px; border: none; border-radius: 2px;
  font-size: 1.2rem; cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #b5866a; }

/* ── FOOTER ── */
.footer {
  background: var(--bark);
  border-top: 2px solid rgba(196,151,122,0.2);
}
.footer-content {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; padding: 3rem 1.5rem 2rem;
}
.footer-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--straw);
  margin-bottom: 1rem;
}
.footer-section p {
  font-size: 0.875rem; color: rgba(245,240,232,0.85);
  line-height: 1.7; margin-bottom: 1rem;
}
.footer-section ul { list-style: none; }
.footer-section ul li {
  font-size: 0.875rem; color: rgba(245,240,232,0.85);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-section ul li .icon { color: var(--clay); }
.footer-section ul li a {
  color: rgba(245,240,232,0.85); text-decoration: none;
  transition: color 0.2s;
}
.footer-section ul li a:hover { color: var(--clay); }
.hours-list li { line-height: 1.9; }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.25rem; }
.footer-contact strong { color: var(--clay); }
.footer-contact a { color: rgba(245,240,232,0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--clay); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 1.25rem 2.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.8); }

/* ── PAGE HERO (sub-pages: services, hub) ── */
.page-hero {
  background: var(--bark);
  padding: 3.5rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse 80% 100% at 70% 0%, rgba(196,151,122,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,151,122,0.3), transparent);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(245,240,232,0.55);
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(245,240,232,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb .sep { color: rgba(245,240,232,0.3); }
.breadcrumb .current { color: var(--clay); }
.page-hero .section-label { color: var(--clay); }
.page-hero .section-title { color: var(--straw); margin-bottom: 1rem; }
.page-hero-sub {
  color: rgba(245,240,232,0.7); font-size: 1.05rem; max-width: 640px; line-height: 1.7;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* ── SERVICE DETAIL LAYOUT ── */
.service-detail-layout {
  display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: start;
}
.service-detail-main p.lead {
  font-size: 1.05rem; color: var(--warm-mid); line-height: 1.8; margin-bottom: 2.25rem;
  position: relative; padding-top: 1.5rem;
}
.service-detail-main p.lead::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--clay); border-radius: 2px;
}
.service-include-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.service-include-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.98rem; color: var(--charcoal); line-height: 1.6;
  transition: transform 0.2s ease;
}
.service-include-list li:hover { transform: translateX(3px); }
.service-include-list .icon {
  color: var(--clay); flex-shrink: 0; margin-top: 0.15rem; width: 1.3rem; height: 1.3rem;
  transition: transform 0.2s ease;
}
.service-include-list li:hover .icon { transform: scale(1.15); }
.service-sidebar {
  background: var(--straw); border: 1px solid rgba(61,43,31,0.08);
  border-radius: 8px; padding: 2rem; position: static;
  box-shadow: 0 2px 4px rgba(61,43,31,0.03);
}
.service-sidebar h4 {
  font-family: 'Playfair Display', serif; color: var(--bark);
  font-size: 1.15rem; margin-bottom: 1rem;
}
.service-sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.service-sidebar-list li a {
  color: var(--warm-mid); text-decoration: none; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(61,43,31,0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.service-sidebar-list li a::before {
  content: '→';
  font-size: 0.75rem; color: var(--clay); opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.service-sidebar-list li a:hover { color: var(--clay); padding-left: 0.25rem; }
.service-sidebar-list li a:hover::before { opacity: 1; transform: translateX(2px); }
.service-sidebar .btn-primary { width: 100%; text-align: center; display: block; margin-bottom: 0.75rem; }
.service-sidebar-contact { font-size: 0.85rem; color: var(--warm-mid); text-align: center; }
.service-sidebar-contact a { color: var(--clay); text-decoration: none; }

.related-portfolio-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 1rem;
}
.related-portfolio-card {
  background: var(--cream); border: 1px solid rgba(61,43,31,0.08);
  border-radius: 8px; overflow: hidden; text-decoration: none; display: block;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  box-shadow: 0 1px 2px rgba(61,43,31,0.03);
}
.related-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(61,43,31,0.08);
}
.related-portfolio-card img {
  width: 100%; height: 150px; object-fit: cover; display: block;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.related-portfolio-card:hover img { transform: scale(1.05); }
.related-portfolio-card-body { padding: 1rem 1.1rem; }
.related-portfolio-card h5 { color: var(--bark); font-size: 0.95rem; margin-bottom: 0.25rem; }
.related-portfolio-card span { color: var(--clay); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── SERVICES HUB GRID ── */
.hub-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem;
}
.hub-card {
  background: var(--cream); border: 1px solid rgba(61,43,31,0.08);
  border-radius: 8px; padding: 2rem; text-decoration: none; display: block;
  transition: border-color 0.3s ease, transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s ease;
  box-shadow: 0 1px 2px rgba(61,43,31,0.03);
}
.hub-card:hover {
  border-color: var(--clay); transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(61,43,31,0.08), 0 4px 8px rgba(61,43,31,0.04);
}
.hub-card .card-icon {
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
}
.hub-card:hover .card-icon {
  transform: scale(1.05) translateY(-2px);
  color: var(--clay);
}
.hub-card h3 { color: var(--bark); margin-bottom: 0.6rem; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.hub-card p { font-size: 0.9rem; color: var(--warm-mid); line-height: 1.6; margin-bottom: 1rem; }
.hub-card .hub-link {
  color: var(--clay); font-size: 0.85rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.25s ease;
}
.hub-card:hover .hub-link { gap: 0.6rem; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .trust-badges { flex-direction: row; justify-content: center; }
  .hero-actions { flex-direction: row; }
}

@media (min-width: 769px) {
  .hamburger { display: none; }

  .nav { padding: 0 2.5rem; }
  .nav-links {
    position: static;
    flex-direction: row;
    gap: 2rem;
    max-height: none;
    overflow: visible;
    padding: 0;
  }
  .nav-links.active { max-height: none; }
  .nav-links-group { flex-direction: row; gap: 2rem; width: auto; padding: 0; }
  .nav-links-group li { width: auto; }
  .nav-links-group .nav-link,
  .nav-links-group .dropdown-trigger {
    display: inline-flex; padding: 0; width: auto;
  }
  .nav-cta { margin: 0; }
  .nav-call { margin: 0; }
  .nav-mail { margin: 0; }

  .dropdown-menu {
    max-height: none; overflow: visible;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bark);
    border-top: 2px solid var(--clay);
    padding: 0.5rem 0;
    margin-top: -10px;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu,
  .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero { min-height: 88vh; padding: 5rem 2.5rem 4rem; }
  .hero-rule { left: 2.5rem; }
  .hero-content { padding-left: 2rem; }
  .hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
  .hero-stats { gap: 3rem; padding-left: 2rem; }

  .section { padding: 5rem 2.5rem; }

  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: none; position: relative; }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: rgba(61,43,31,0.08);
    pointer-events: none;
  }
  .step-card { padding: 2.5rem 1.5rem 1.5rem; text-align: center; }
  .step-num { position: static; margin: 0 auto 1rem; }
  .area-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: none; }
  .area-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .area-map { grid-column: 1 / -1; }

  .services-intro { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .hub-grid { grid-template-columns: repeat(4, 1fr); }

  .about-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-badge { bottom: -1.5rem; left: 2rem; }

  .contact-layout { grid-template-columns: 1fr 1.6fr; gap: 4rem; }
  .form-row { grid-template-columns: 1fr 1fr; }

  .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

  .footer-content { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding: 4rem 2.5rem 3rem; }

  .newsletter-form { flex-direction: row; flex-wrap: wrap; }
  .newsletter-form input[type="email"] { border-right: none; border-radius: 2px 0 0 2px; }
  .newsletter-form .btn-primary { border-radius: 0 2px 2px 0; }
}

@media (min-width: 861px) {
  .service-detail-layout { grid-template-columns: 1.3fr 1fr; }
  .service-sidebar { position: sticky; top: 6rem; }
}

/* ── PORTFOLIO SLIDESHOW ── */
.portfolio-slideshow {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.slideshow-container {
  position: relative;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}


.slide-caption {
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  color: var(--straw);
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  background: rgba(61,43,31,0.5);
  border: none;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background: var(--clay); }

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}



