/* RESET & BASE */
:root {
  --sand: #f5ede0;
  --red: #b83218;
  --sage: #5a7054;
  --brown: #2e2018;
  --cream: #faf6f0;
  --muted: #6b5c50; /* Darkened from #9a8878 for ADA WCAG AA contrast against cream */
  --warm: #ede3d8;
  --dsage: #3a4d36;
  
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
}

.btn-primary:hover {
  background: #9a2a14;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 50, 24, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* NAVIGATION */
.navbar {
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-bottom: 1px solid rgba(46, 32, 24, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: padding var(--transition-fast), box-shadow var(--transition-fast);
}

/* push main down to account for fixed navbar */
main {
  margin-top: 80px; 
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--brown);
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--brown);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--brown);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 26px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--brown);
  transition: transform 0.3s, opacity 0.3s;
}

/* HERO */
.hero {
  background: var(--brown);
  min-height: calc(100vh - 80px); /* 80px is approx nav height */
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 8vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '◉';
  color: var(--red);
  font-size: 8px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(184, 50, 24, 0.8); }
  100% { opacity: 0.4; }
}

.hero-center {
  padding: 40px 0;
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6.5vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-h1 .em {
  font-style: italic;
  color: var(--red);
}

.hero-desc {
  font-family: 'Fraunces', serif;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(240, 235, 224, 0.55);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-phone {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero-phone:hover {
  color: var(--red);
}

.hero-email {
  font-size: 13px;
  color: rgba(240, 235, 224, 0.4);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.hero-email:hover {
  color: var(--cream);
}

.hero-btn {
  margin-top: 28px;
  padding: 14px 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}

.hero-right {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 40vh;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-out; /* Slow zoom-out effect while active */
  filter: brightness(0.85) contrast(1.1);
}

.hero-slider .slide.active img {
  transform: scale(1);
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.slider-dot:hover {
  background: rgba(250, 246, 240, 0.8);
}

.slider-dot.active {
  background: var(--cream);
  transform: scale(1.3);
}

/* SECTIONS */
.section {
  padding: 10vw 5vw;
}

.s-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.s-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown);
}

.s-h em {
  font-style: italic;
  color: var(--red);
}

.split-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 6vw;
}

.s-intro {
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.75;
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  max-width: 500px;
}

/* SERVICES GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(46, 32, 24, 0.05);
}

.svc-item {
  background: #ede2d4; /* Slightly darker than var(--sand) */
  padding: 44px 28px;
  border-bottom: 4px solid transparent;
  transition: all var(--transition-smooth);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.svc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--warm);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 0;
}

.svc-item > * {
  position: relative;
  z-index: 1;
}

.svc-item:hover {
  border-bottom-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 32, 24, 0.05);
}

.svc-item:hover::before {
  opacity: 1;
}

.svc-n {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(46, 32, 24, 0.08);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--transition-smooth);
}

.svc-item:hover .svc-n {
  color: rgba(184, 50, 24, 0.15);
}

.svc-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-weight: 300;
}

/* PHOTO MOSAIC */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: minmax(280px, 35vh) minmax(280px, 35vh);
  gap: 3px;
  background: rgba(46, 32, 24, 0.05);
}

.mos-item {
  overflow: hidden;
  position: relative;
  background: var(--brown);
}

.mos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0.9;
}

.mos-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.mos-item.span2 {
  grid-column: span 2;
}

.mos-item.tall {
  grid-row: span 2;
}

.mos-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 18px 14px;
  background: linear-gradient(to top, rgba(46, 32, 24, 0.85), transparent);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.9);
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.mos-item:hover .mos-label {
  transform: translateY(0);
  opacity: 1;
}

/* BRANDS */
.brands {
  padding: 8vw 5vw;
  background: var(--sage);
}

.b-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.45);
  text-align: center;
  margin-bottom: 40px;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-pill {
  padding: 12px 24px;
  border: 1px solid rgba(250, 246, 240, 0.18);
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.65);
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: default;
  background: transparent;
}

.brand-pill:hover {
  background: rgba(250, 246, 240, 0.1);
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* PROCESS + QUOTE */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.process-col {
  padding: 8vw 5vw;
  background: var(--brown);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-col .s-kicker {
  color: rgba(184, 50, 24, 0.8);
}

.process-col .s-h {
  color: var(--cream);
}

.process-list {
  margin-top: 48px;
}

.p-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(250, 246, 240, 0.07);
  display: flex;
  gap: 24px;
  transition: background var(--transition-fast);
}

.p-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.p-item:first-child {
  border-top: 1px solid rgba(250, 246, 240, 0.07);
}

.p-n {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.1);
  min-width: 48px;
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.p-item:hover .p-n {
  color: var(--red);
  transform: scale(1.1);
}

.p-t {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.p-d {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.4);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.photo-col {
  overflow: hidden;
  position: relative;
}

.photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-smooth);
}

.photo-col:hover img {
  transform: scale(1.05);
}

/* CTA */
.cta {
  padding: 10vw 5vw;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta > div {
  position: relative;
  z-index: 1;
}

.cta-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-h em {
  font-style: italic;
}

.cta-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(250, 246, 240, 0.75);
  margin-bottom: 48px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.cta-phone {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid rgba(250, 246, 240, 0.3);
  padding-bottom: 4px;
  transition: all var(--transition-fast);
}

.cta-phone:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-email {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  color: rgba(250, 246, 240, 0.7);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cta-email:hover {
  color: var(--cream);
}

.area-tags {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.area-tag {
  background: rgba(250, 246, 240, 0.1);
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.8);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast);
  cursor: default;
}

.area-tag:hover {
  background: rgba(250, 246, 240, 0.2);
}

/* FOOTER */
footer {
  background: var(--brown);
  padding: 40px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.f-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.f-links {
  display: flex;
  gap: 24px;
}

.f-links a {
  font-size: 12px;
  color: rgba(250, 246, 240, 0.4);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.f-links a:hover {
  color: var(--cream);
}

.f-copy {
  font-size: 11px;
  color: rgba(250, 246, 240, 0.3);
  letter-spacing: 0.05em;
}

/* FORMS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(250, 246, 240, 0.5); /* semi-transparent cream */
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  color: var(--brown);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(90, 112, 84, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 300;
}

.submit-btn {
  align-self: flex-start;
  padding: 16px 40px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  font-family: 'Syne', sans-serif;
}

/* ======== ANIMATIONS & STATES ======== */
.reveal {
  visibility: hidden; /* Prevent flash of unstyled content before JS runs */
}

/* When JS adds .active, we animate */
.reveal.active {
  visibility: visible;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-down.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.active {
  opacity: 1;
}

.scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.scale-up.active {
  opacity: 1;
  transform: scale(1);
}

.pop-in {
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pop-in.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }


/* ======== INNER HERO BANNERS & BREADCRUMBS ======== */
.inner-hero {
  position: relative;
  min-height: 45vh;
  margin-top: 80px; /* Offset the fixed nav */
  background: var(--brown);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) grayscale(0.2);
  transform: scale(1.1);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.25); }
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span.separator {
  color: rgba(250, 246, 240, 0.3);
}

.breadcrumb span.current {
  color: rgba(250, 246, 240, 0.4);
}

/* ======== RESPONSIVE DESIGN ======== */

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mosaic {
    grid-template-columns: 1fr 1fr;
  }
  
  .mos-item.span2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 5vw;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(46, 32, 24, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
  }
  
  .nav-menu.open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .menu-toggle {
    display: flex;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .hero {
    display: flex;
    flex-direction: column;
  }
  
  .hero-left {
    padding: calc(80px + 8vw) 5vw 5vw; /* Account for navbar and keep centered */
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  
  .hero-right {
    height: 50vh;
    min-height: 350px;
    width: 100%;
  }
  
  .hero-eyebrow {
    justify-content: center;
  }
  
  .hero-desc {
    margin: 0 auto 32px;
  }
  
  .hero-btn {
    align-self: center;
  }

  .split-hdr {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .mos-item {
    min-height: 350px;
  }
  
  .mos-item.tall {
    grid-row: span 1;
  }
  
  .two-col {
    grid-template-columns: 1fr;
  }
  
  .photo-col {
    min-height: 40vh;
    grid-row: 1; /* Move photo above text on mobile */
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* ======== ADA READABILITY OVERRIDES ======== */
.nav-logo-sub { font-size: 11px; letter-spacing: 0.15em; }
.nav-links a { font-size: 16px; }
.nav-cta { font-size: 15px; padding: 14px 28px; }
.hero-eyebrow { font-size: 13px; }
.hero-eyebrow::before { font-size: 12px; }
.hero-desc { font-size: clamp(16px, 1.8vw, 18px); color: rgba(240, 235, 224, 0.9); font-weight: 400; font-style: normal; }
.hero-email { font-size: 16px; color: rgba(240, 235, 224, 0.9); }
.s-kicker { font-size: 13px; letter-spacing: 0.2em; font-weight: 700; color: #9A2A14; }
.s-intro { font-size: clamp(16px, 1.8vw, 20px); font-weight: 500; font-style: normal; color: var(--brown); opacity: 0.85;}
.svc-name { font-size: 22px; font-weight: 700; }
.svc-body { font-size: 17px; color: var(--brown); opacity: 0.85; font-weight: 500; line-height: 1.6;}
.mos-label { font-size: 13px; letter-spacing: 0.15em; font-weight: 600; padding: 30px 20px 20px;}
.b-label { font-size: 14px; letter-spacing: 0.2em; color: rgba(250, 246, 240, 0.9); }
.brand-pill { font-size: 16px; color: rgba(250, 246, 240, 1); }
.p-t { font-size: 20px; font-weight: 700; }
.p-d { font-size: 17px; font-weight: 400; font-style: normal; color: rgba(250, 246, 240, 0.9); }
.cta-sub { font-size: clamp(16px, 1.8vw, 20px); color: rgba(250, 246, 240, 1); font-style: normal; font-weight: 400;}
.cta-email { font-size: 18px; color: rgba(250, 246, 240, 1); }
.area-tag { font-size: 13px; color: rgba(250, 246, 240, 1); font-weight: 600; }
.f-links a { font-size: 16px; color: rgba(250, 246, 240, 0.9); }
.f-copy { font-size: 14px; color: rgba(250, 246, 240, 0.7); }

/* ADA FOCUS STYLES & SEMANTICS */
*:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--cream);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.cup-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.cup {
  width: 46px;
  height: 38px;
  border: 4px solid var(--brown);
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
  overflow: hidden;
}

.cup::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--brown);
  animation: fill-coffee 2s infinite ease-in-out;
}

.handle {
  width: 16px;
  height: 20px;
  border: 4px solid var(--brown);
  border-left: none;
  border-radius: 0 10px 10px 0;
  position: absolute;
  bottom: 8px;
  right: -2px;
}

.vapour {
  position: absolute;
  display: flex;
  gap: 6px;
  top: -24px;
  left: 10px;
}

.vapour span {
  width: 4px;
  height: 14px;
  background: var(--brown);
  border-radius: 4px;
  opacity: 0;
  animation: rise 2s infinite ease-in;
}

.vapour span:nth-child(2) { animation-delay: 0.4s; }
.vapour span:nth-child(3) { animation-delay: 0.8s; }

@keyframes fill-coffee {
  0% { height: 0%; }
  50% { height: 80%; }
  100% { height: 10%; }
}

@keyframes rise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  25% { opacity: 0.6; }
  100% { transform: translateY(-20px) scaleX(1.5); opacity: 0; }
}

/* ======== FLOATING ACTION BUTTON & POPUP ======== */
.fab-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

.fab-btn {
  width: 65px;
  height: 65px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(184, 50, 24, 0.4);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
  animation: fabPulse 2s infinite ease-out;
}

@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 50, 24, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(184, 50, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 50, 24, 0); }
}

.fab-btn:hover {
  transform: scale(1.1) translateY(-5px);
  background: #9a2a14;
}

.fab-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Modal Overlay */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46, 32, 24, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Card */
.contact-modal {
  background: var(--cream);
  width: 90%;
  max-width: 500px;
  padding: 40px 30px;
  border-radius: 8px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.contact-modal-overlay.active .contact-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(46, 32, 24, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brown);
  transition: all 0.2s ease;
}

.contact-modal-close:hover {
  background: var(--red);
  color: var(--cream);
  transform: rotate(90deg);
}

.contact-modal h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 8px;
}

.contact-modal p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    right: 20px;
  }
}
