/* ================================================================
   TRADIE WEBSITE TEMPLATE — style.css
   ----------------------------------------------------------------
   To customise per client: change --primary, --copper, --cream in :root.
   Fonts: Fraunces (serif display) + Epilogue (humanist sans).
   ================================================================ */

:root {
  /* ── Brand colours — override per client ── */
  --primary:      #1a1209;
  --copper:       #c4622d;
  --copper-dark:  #a34e22;

  /* ── Page palette ── */
  --cream:        #f5ede0;
  --stone:        #ede4d4;

  /* ── Text ── */
  --text:         #1a1209;
  --text-light:   #5a4e44;
  --text-muted:   #9c8f84;

  /* ── Borders ── */
  --border:       #d9cec1;
  --border-dark:  #c4b8a8;

  /* ── Misc ── */
  --max-width: 1200px;
}


/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Epilogue', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── Headings — Fraunces serif ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.05;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 6vw, 5.25rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }

/* ── Section label — uppercase Epilogue + copper rule prefix ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.875rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--copper);
  flex-shrink: 0;
}

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section    { padding: 6rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border: 2px solid transparent;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-accent        { background: var(--copper);  color: var(--cream);  border-color: var(--copper); }
.btn-accent:hover  { background: var(--copper-dark); border-color: var(--copper-dark); }
.btn-primary       { background: var(--text);    color: var(--cream);  border-color: var(--text); }
.btn-primary:hover { background: #000; border-color: #000; }
.btn-outline       { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--cream); }
.btn-outline-white { background: transparent; color: var(--cream); border-color: rgba(245,237,224,0.55); }
.btn-outline-white:hover { background: var(--cream); color: var(--text); border-color: var(--cream); }
.btn-lg { padding: 1.0625rem 2.25rem; font-size: 0.85rem; }


/* ================================================================
   HEADER / NAV
   Always cream. Subtle border + shadow appear on scroll.
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(26,18,9,0.07);
}

.nav-inner-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.logo-name em {
  font-style: italic;
  color: var(--copper);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: 'Epilogue', sans-serif;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-right { flex-shrink: 0; }
.nav-phone {
  color: var(--copper);
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--copper-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--stone);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  font-family: 'Epilogue', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--text); background: var(--cream); }
.mobile-menu .mobile-phone {
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--copper);
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-dark);
}


/* ================================================================
   HERO — cream bg, text left, image in editorial box right
   ================================================================ */
.hero {
  background: var(--cream);
  min-height: 100svh;
  padding: 0;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  overflow: hidden;
}

/* Left: text content */
.hero-content {
  padding: 10rem 3rem 6rem max(2rem, calc((100vw - var(--max-width)) / 2 + 1.5rem));
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--copper);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper);
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right: image column */
.hero-image-col {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 5rem max(1.5rem, calc((100vw - var(--max-width)) / 2 + 1.5rem)) 5rem 1rem;
}

.hero-frames {
  width: 100%;
  height: clamp(420px, 65vh, 600px);
  display: grid;
  grid-template-columns: 55fr 45fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.hero-frame {
  position: relative;
  overflow: hidden;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--stone);
}

.hf-1 { grid-column: 1; grid-row: 1; }
.hf-2 {
  grid-column: 2;
  grid-row: 1 / 3;
  box-shadow: 10px 10px 0 var(--copper);
}
.hf-3 { grid-column: 1; grid-row: 2; }

.hero-img-badge {
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 3;
  background: var(--copper);
  color: var(--cream);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


/* ================================================================
   SERVICES — stone bg, numbered editorial rows
   ================================================================ */
.services {
  background: var(--stone);
  padding: 6rem 0;
}

.services-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}
.services-header h2 { margin-top: 0.25rem; }

.services-rows {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 6rem 1fr 1.6fr;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
}

.sr-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.55;
}

.sr-name {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sr-desc {
  font-family: 'Epilogue', sans-serif;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

.sr-rule {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin: 0;
}


/* ================================================================
   STATS STRIP — ink bg, Fraunces italic copper numbers
   ================================================================ */
.stats-strip {
  background: var(--primary);
  padding: 5.5rem 0;
}
.stats-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.ss-item {
  padding: 0 2rem;
}
.ss-item + .ss-item {
  border-left: 1px solid rgba(245,237,224,0.08);
}
.ss-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.ss-label {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.7rem;
  color: rgba(245,237,224,0.4);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}


/* ================================================================
   ABOUT — side by side, image left / text right, dark bg
   ================================================================ */
.about {
  background: var(--primary);
  display: grid;
  grid-template-columns: 25fr 75fr;
  overflow: hidden;
  min-height: 360px;
}

.about-img-col {
  position: relative;
  overflow: hidden;
}
.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-width: none;
}

.about-years-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: var(--copper);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 3;
}
.ayb-number {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ayb-text {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
  opacity: 0.85;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem max(2rem, calc((100vw - var(--max-width)) / 2 + 1.5rem)) 5rem 4rem;
}
.about-heading {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.about-text-col p {
  color: rgba(245,237,224,0.72);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}


/* ================================================================
   PROCESS — cream bg, copper squares, horizontal line
   ================================================================ */
.process {
  background: var(--cream);
  padding: 5.5rem 0 6.5rem;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}
.process-header h2 { margin-top: 0.25rem; }

.process-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.pt-line {
  position: absolute;
  top: 21px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--copper);
  opacity: 0.25;
}

.pt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.pt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.pt-dot {
  width: 42px; height: 42px;
  background: var(--copper);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.pt-step h3 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.pt-step p {
  font-family: 'Epilogue', sans-serif;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ================================================================
   GALLERY — ink bg, horizontal scroll strip
   ================================================================ */
.gallery {
  background: var(--primary);
  padding: 6rem 0;
  overflow: hidden;
}

.gallery-header {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.gallery-header .section-label { color: var(--copper); opacity: 0.85; }
.gallery-header h2 { color: var(--cream); }

.gallery-strip-wrap {
  overflow: hidden;
  margin-top: 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gallery-strip {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}
.gallery-strip:hover { animation-play-state: paused; }

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gs-item {
  flex-shrink: 0;
  width: 340px;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.gs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  transition: transform 0.45s ease;
}
.gs-item:hover img { transform: scale(1.05); }

.gs-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,18,9,0.82));
  color: var(--cream);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.03em;
}
.gs-item:hover .gs-caption { opacity: 1; transform: translateY(0); }


/* ================================================================
   BEFORE & AFTER SLIDERS
   ================================================================ */
.ba-sliders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: var(--max-width);
  margin: 0 auto 2px;
  padding: 0 2rem;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  height: 360px;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 360px !important;
  max-width: none;
  object-fit: cover;
}
.ba-after  { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.ba-line  { flex: 1; width: 2px; background: #fff; }
.ba-circle {
  width: 44px; height: 44px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--ink);
  font-size: 0.75rem;
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  background: rgba(26,18,9,0.7);
  color: #fff;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  pointer-events: none;
}
.ba-label--before { left: 1rem; }
.ba-label--after  { right: 1rem; }

@media (max-width: 600px) {
  .ba-sliders-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  .ba-slider { height: 260px; }
  .ba-slider img { height: 260px !important; }
}


/* ================================================================
   TESTIMONIALS — stone bg, sharp cream cards, Fraunces quote mark
   ================================================================ */
.testimonials {
  background: var(--stone);
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testi-header h2 { margin-top: 0.25rem; }

.testi-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testi-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: testi-scroll 38s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }

@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.testi-card-stars {
  color: var(--copper);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testi-card-quote {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-top: 2rem;
}
.testi-card-quote::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-style: italic;
  color: var(--copper);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: -0.75rem;
  left: -0.25rem;
}
.testi-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.testi-initials {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--cream);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card-author strong {
  display: block;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.testi-card-author span {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ================================================================
   CONTACT — top: copper CTA bar / bottom: cream form area
   ================================================================ */
.contact { padding: 0; }

.contact-cta-bar {
  background: var(--copper);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.ccb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.ccb-label {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.65;
}
.ccb-phone {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: opacity 0.2s;
}
.ccb-phone:hover { opacity: 0.75; }
.ccb-sub {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.6;
  font-weight: 500;
}

.contact-form-area {
  background: var(--cream);
  padding: 6rem 1.5rem;
}
.contact-form-inner {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-inner h2 {
  margin-bottom: 0.75rem;
}
.contact-form-intro {
  font-family: 'Epilogue', sans-serif;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact-form-intro a { color: var(--copper-dark); text-decoration: underline; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.375rem; }
.form-group label {
  display: block;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid var(--border-dark);
  border-radius: 0;
  font-size: 0.93rem;
  color: var(--text);
  background: #fff;
  font-family: 'Epilogue', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 0.85rem; padding: 1.0625rem; }
.form-note {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  padding: 1.375rem;
  text-align: center;
  color: #166534;
  font-family: 'Epilogue', sans-serif;
  font-weight: 600;
  margin-top: 1rem;
}


/* ================================================================
   FLOATING CALL BUTTON (mobile only)
   ================================================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  background: var(--copper);
  color: var(--cream);
  width: 58px; height: 58px;
  font-size: 1.4rem;
  align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 var(--copper-dark);
  animation: float-pulse 2.5s infinite;
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 4px 4px 0 var(--copper-dark); }
  50%       { box-shadow: 6px 6px 0 var(--copper-dark); }
}


/* ================================================================
   FOOTER — ink bg
   ================================================================ */
.site-footer { background: var(--primary); }

.footer-top {
  border-bottom: 1px solid rgba(245,237,224,0.07);
  padding: 2rem 0;
}
.footer-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  flex-shrink: 0;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Epilogue', sans-serif;
  color: rgba(245,237,224,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--copper); }
.footer-phone {
  color: rgba(245,237,224,0.72);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--copper); }
.footer-phone i { color: var(--copper); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.78rem;
  color: rgba(245,237,224,0.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom-inner a { color: rgba(245,237,224,0.42); transition: color 0.2s; }
.footer-bottom-inner a:hover { color: var(--copper); }


/* ================================================================
   RESPONSIVE — 768px
   ================================================================ */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  /* Nav */
  .nav-inner-wrap { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { font-size: 0; }
  .nav-phone i { font-size: 1.1rem; color: var(--copper); }

  /* Hero */
  .hero { grid-template-columns: 1fr; align-items: start; }
  .hero-content { padding: 7.5rem 1.5rem 2.5rem; order: 1; }
  .hero-image-col { padding: 0 1.5rem 4rem; order: 2; }
  .hero-frames { height: 55vw; min-height: 260px; }
  .hf-2 { box-shadow: 6px 6px 0 var(--copper); }

  /* Services */
  .service-row {
    grid-template-columns: 4rem 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding: 1.75rem 0;
  }
  .sr-number { font-size: 2.5rem; }
  .sr-name   { font-size: 1.4rem; }
  .sr-desc   { grid-column: 1 / -1; margin-top: 0.25rem; }

  /* Stats */
  .stats-strip { padding: 4rem 0; }
  .stats-strip-inner { gap: 0; }
  .ss-item { padding: 0 1rem; }

  /* About */
  .about { grid-template-columns: 1fr; }
  .about-img-col { min-height: 400px; }
  .about-years-badge { top: 1rem; right: 1rem; }
  .about-text-col { padding: 3rem 1.5rem; }

  /* Process */
  .process { padding: 4rem 0 5rem; }
  .pt-line { display: none; }
  .pt-steps {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 3rem;
  }
  .pt-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 1.25rem; }
  .pt-dot { margin-bottom: 0; flex-shrink: 0; }

  /* Gallery */
  .gallery { padding: 3.5rem 0; }
  .gs-item { width: 260px; height: 320px; }

  /* Testimonials */
  .testi-card { width: 280px; }

  /* Contact */
  .contact-cta-bar { padding: 3.5rem 1.5rem; }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
  .footer-phone { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .float-call { display: flex; }
}


/* ================================================================
   RESPONSIVE — 480px
   ================================================================ */
@media (max-width: 480px) {
  /* Hero */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Services */
  .service-row { grid-template-columns: 1fr; }
  .sr-number { font-size: 2rem; }

  /* Stats */
  .stats-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .ss-item + .ss-item { border-left: none; border-top: 1px solid rgba(245,237,224,0.08); padding-top: 2.5rem; }

  /* About */
  .about-img-col { min-height: 280px; }

  /* Gallery */
  .gs-item { width: 220px; height: 270px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-area { padding: 3rem 1.5rem; }

  /* Footer */
  .footer-nav { gap: 1rem; }
}
