/* Shipley's Helping Hand
   Refined local-contractor identity: olive, canvas, charcoal, natural wood.
*/

:root {
  --ink: #161813;
  --ink-soft: #242820;
  --olive: #4e5b3d;
  --olive-deep: #35402d;
  --olive-dark: #283123;
  --olive-light: #788665;
  --canvas: #f3efe5;
  --canvas-2: #e8e1d4;
  --paper: #fbf9f4;
  --white: #ffffff;
  --wood: #9b724d;
  --muted: #6e7369;
  --line: rgba(35, 43, 31, .15);
  --red-accent: #8b302f;
  --navy-accent: #27364a;
  --max: 1180px;
  --radius: 10px;
  --shadow: 0 15px 40px rgba(31, 35, 27, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.topbar {
  background: var(--olive-dark);
  color: rgba(255,255,255,.84);
  font-size: 11px;
  letter-spacing: .045em;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.service-area-line { display: inline-flex; align-items: center; gap: 9px; }
.flag-accent {
  width: 25px;
  height: 14px;
  display: inline-block;
  border-radius: 1px;
  opacity: .85;
  background:
    linear-gradient(to bottom,
      #913b38 0 14%, #f0eadf 14% 28%,
      #913b38 28% 42%, #f0eadf 42% 56%,
      #913b38 56% 70%, #f0eadf 70% 84%,
      #913b38 84% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  position: relative;
}
.flag-accent::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 10px; height: 8px;
  background: var(--navy-accent);
}
.topbar-phones { display: flex; align-items: center; gap: 10px; }
.topbar a { color: white; font-weight: 700; }
.dot { color: #aeb89f; }

.site-header {
  height: 86px;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 242, 232, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57, 67, 49, .13);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(36,42,31,.09); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; }
.brand-logo {
  width: 76px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}
.brand-copy { display: flex; flex-direction: column; line-height: .92; min-width: 0; }
.brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  letter-spacing: .045em;
}
.brand-copy small {
  margin-top: 6px;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--olive);
}

.main-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 2px;
  background: var(--olive);
  transition: right .22s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  color: white;
  background: var(--olive-deep);
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.08);
}
.nav-cta:hover { background: var(--olive-dark); }

.menu-toggle {
  display: none;
  width: 46px; height: 42px;
  border: 0; background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 25px; height: 2px; background: var(--ink); transition: .2s; }

.hero {
  min-height: 755px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background: #1b2119;
  overflow: hidden;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25,31,23,.94) 0%, rgba(35,43,31,.82) 39%, rgba(30,37,27,.28) 76%),
    linear-gradient(0deg, rgba(17,20,15,.60), transparent 52%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  background-image: radial-gradient(rgba(255,255,255,.55) .5px, transparent .5px);
  background-size: 5px 5px;
}
.hero-content { position: relative; z-index: 2; padding: 130px 0 190px; }
.eyebrow {
  margin: 0 0 16px;
  color: #c5d2b4;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .19em;
}
.eyebrow.dark { color: var(--olive); }
.hero h1,
.section-heading h2,
.section-title h2,
.about-content h2,
.cta-inner h2,
.contact-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: -.02em;
  line-height: .96;
  margin: 0;
}
.hero h1 {
  max-width: 840px;
  font-size: clamp(62px, 7.7vw, 104px);
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 span { color: #c3cdb5; }
.hero-text {
  max-width: 650px;
  margin: 27px 0 34px;
  font-size: 17px;
  color: rgba(255,255,255,.83);
}
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  transition: transform .16s ease, background .16s ease, color .16s ease, border .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #d9dfcf; color: #22291e; border-color: rgba(0,0,0,.05); }
.btn-primary:hover { background: white; }
.btn-ghost {
  border-color: rgba(255,255,255,.38);
  color: white;
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.hero-note {
  display: inline-block;
  margin-top: 42px;
  padding-left: 17px;
  border-left: 3px solid var(--olive-light);
  color: #d8ddd4;
  font-style: italic;
  font-size: 14px;
}
.hero-stats {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  background: rgba(38,47,33,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.09);
}
.hero-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.hero-stats-grid > div {
  min-height: 104px;
  padding: 22px 26px;
  border-right: 1px solid rgba(255,255,255,.10);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-stats-grid > div:first-child { padding-left: 0; }
.hero-stats-grid > div:last-child { border-right: 0; }
.hero-stats strong {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 24px;
}
.hero-stats span { color: #c1c7bc; font-size: 12px; }

.section { padding: 108px 0; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 95px; align-items: start; }
.section-heading h2, .section-title h2, .about-content h2, .contact-copy h2 {
  font-size: clamp(46px, 5.5vw, 72px);
  text-transform: uppercase;
}
.intro { background: var(--paper); }
.intro-copy { padding-top: 12px; }
.intro-copy p { font-size: 17px; color: #62675e; margin-top: 0; }
.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  border-bottom: 2px solid var(--olive-light);
  padding-bottom: 4px;
}

.workmanship-strip {
  background: var(--olive-deep);
  color: white;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.workmanship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.workmanship-grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.12);
}
.workmanship-grid span:last-child { border-right: 0; }
.workmanship-grid span::before {
  content: "★";
  font-size: 9px;
  margin-right: 9px;
  color: #d8ddce;
}

.services { background: var(--canvas-2); }
.section-title { max-width: 760px; margin-bottom: 47px; }
.section-title > p:last-child { max-width: 620px; color: #686d64; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid #c8c0b1;
  border-left: 1px solid #c8c0b1;
}
.service-card {
  padding: 36px 31px 40px;
  min-height: 255px;
  border-right: 1px solid #c8c0b1;
  border-bottom: 1px solid #c8c0b1;
  background: rgba(255,255,255,.12);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  background: #f9f6ef;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(54,61,48,.10);
  z-index: 1;
}
.service-number {
  color: var(--olive);
  font-family: "Barlow Condensed";
  font-weight: 800;
  letter-spacing: .08em;
}
.service-card h3 {
  margin: 45px 0 10px;
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 29px;
  line-height: 1;
}
.service-card p { margin: 0; color: #6a6f66; font-size: 14px; }

.featured-work { background: #171b16; color: white; }
.section-title.light > p:last-child { color: #aeb4aa; }
.gallery {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 270px;
  gap: 12px;
}
.gallery-card {
  grid-column: span 4;
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #262b24;
  color: white;
  text-align: left;
}
.gallery-card.wide { grid-column: span 8; }
.gallery-card.tall { grid-row: span 2; }
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent);
}
.gallery-card:hover img { transform: scale(1.025); filter: brightness(.9); }
.gallery-label {
  position: absolute;
  z-index: 2;
  left: 21px; right: 21px; bottom: 17px;
  display: flex; flex-direction: column;
}
.gallery-label b {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1;
}
.gallery-label small {
  color: #c0cab1;
  margin-top: 6px;
  font-weight: 700;
}

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 82px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }
.about-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: var(--olive-deep);
  color: white;
  border: 7px solid var(--paper);
  box-shadow: 0 12px 30px rgba(35,42,31,.2);
}
.about-badge span { font-size: 10px; font-weight: 800; letter-spacing: .18em; color: #c7cfbc; }
.about-badge strong { font-family: "Barlow Condensed"; font-size: 23px; line-height: 1; margin-top: 6px; }
.about-content > p:not(.eyebrow) { color: #60665d; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 27px 0; }
.founders > div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f3ea;
}
.founders small { display: block; color: #7f857a; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.founders strong { font-family: "Barlow Condensed"; font-size: 28px; }
.phone-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.phone-stack a {
  background: var(--olive-deep);
  color: white;
  border-radius: 6px;
  padding: 12px 16px;
  min-width: 190px;
}
.phone-stack span { display: block; color: #bdc7af; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.phone-stack strong { font-size: 16px; }

.cta-strip {
  background: #d9dccf;
  border-top: 1px solid #c5c9bc;
  border-bottom: 1px solid #c5c9bc;
  padding: 58px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-inner .eyebrow { color: var(--olive); margin-bottom: 10px; }
.cta-inner h2 { font-size: clamp(42px,5vw,68px); text-transform: uppercase; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-dark { background: var(--olive-deep); color: white; }
.btn-outline-dark { border-color: var(--olive-deep); color: var(--olive-deep); }
.btn-outline-dark:hover { background: var(--olive-deep); color: white; }

.contact { background: var(--canvas); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: #666b62; }
.contact-cards { display: grid; gap: 10px; margin-top: 30px; }
.contact-card {
  padding: 18px 20px;
  background: #f9f6ef;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  transition: .2s;
}
.contact-card:hover { transform: translateX(3px); border-color: var(--olive-light); }
.contact-card span { color: #858a81; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.contact-card strong { font-family: "Barlow Condensed"; font-size: 28px; }
.contact-card small { color: var(--olive); font-weight: 700; }


.footer { background: #121511; color: white; padding: 68px 0 22px; }
.footer-top { display: grid; grid-template-columns: 2fr .7fr 1fr; gap: 70px; padding-bottom: 46px; }
.footer-logo .brand-copy strong { color: white; }
.footer-logo .brand-copy small { color: #b7c0aa; }
.footer-brand-logo {
  filter: invert(1);
  opacity: .94;
}
.footer-brand p { color: #9ea49b; margin: 15px 0 0; }
.footer-brand .tagline { color: #bcc5b1; font-style: italic; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong, .footer-contact strong {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 7px;
}
.footer-links a, .footer-contact a, .footer-contact span { color: #aeb3ac; font-size: 13px; }
.footer-links a:hover, .footer-contact a:hover { color: #c8d0bd; }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #282c27;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777d76;
  font-size: 11px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 30px;
  background: rgba(11,13,10,.94);
  display: none;
  place-items: center;
}
.lightbox.open { display: grid; }
.lightbox-inner { max-width: min(1100px, 94vw); max-height: 90vh; }
.lightbox-inner img { max-height: 80vh; width: auto; max-width: 100%; margin: auto; object-fit: contain; border-radius: 5px; }
.lightbox-inner p { color: white; text-align: center; font-family: "Barlow Condensed"; font-size: 24px; text-transform: uppercase; }
.lightbox-close { position: fixed; right: 26px; top: 16px; border: 0; background: none; color: white; font-size: 44px; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.mobile-callbar { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-card img, .service-card, .btn { transition: none; }
}

@media (max-width: 900px) {
  .topbar-inner > span:first-child { display: none; }
  .topbar-inner { justify-content: center; }
  .site-header { height: 74px; }
  .brand-logo { width: 58px; height: 48px; }
  .brand-copy strong { font-size: 23px; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    left: 0; right: 0; top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 20px 22px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 4px; }
  .nav-cta { text-align: center; margin-top: 6px; padding: 11px 16px !important; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 110px; }
  .hero-overlay {
    background:
      linear-gradient(90deg,rgba(27,34,24,.91),rgba(32,39,28,.48)),
      linear-gradient(0deg,rgba(14,17,13,.72),transparent 52%);
  }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-grid > div { min-height: 78px; padding: 14px 16px; }
  .hero-stats-grid > div:first-child { padding-left: 16px; }
  .split, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .workmanship-grid { grid-template-columns: 1fr 1fr; }
  .workmanship-grid span:nth-child(2) { border-right: 0; }
  .workmanship-grid span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-rows: 240px; }
  .gallery-card, .gallery-card.wide { grid-column: span 6; }
  .about-photo { max-width: 700px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar { font-size: 11px; }
  .topbar-phones { gap: 7px; }
  .brand-copy small { letter-spacing: .15em; }
  .hero { min-height: 770px; }
  .hero-content { padding: 85px 0 185px; }
  .hero h1 { font-size: clamp(53px, 16.5vw, 76px); }
  .hero-text { font-size: 16px; margin-top: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats strong { font-size: 20px; }
  .hero-stats span { font-size: 10px; }
  .section { padding: 76px 0; }
  .section-heading h2, .section-title h2, .about-content h2, .contact-copy h2 { font-size: 47px; }
  .workmanship-grid { grid-template-columns: 1fr; }
  .workmanship-grid span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); min-height: 52px; }
  .workmanship-grid span:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 215px; }
  .service-card h3 { margin-top: 34px; }
  .gallery { display: block; }
  .gallery-card { width: 100%; height: 280px; margin-bottom: 11px; }
  .gallery-card.tall { height: 390px; }
  .about-photo img { aspect-ratio: 1/1.2; }
  .about-badge { width: 132px; height: 132px; right: -5px; bottom: -20px; }
  .founders, .form-row { grid-template-columns: 1fr; }
  .phone-stack { flex-direction: column; }
  .phone-stack a { width: 100%; }
  .contact-card { grid-template-columns: 1fr; gap: 3px; }
  .contact-card small { margin-top: 4px; }
  .estimate-form { padding: 26px 20px; }
  .footer { padding-bottom: 88px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-callbar {
    display: block;
    position: fixed;
    left: 10px; right: 10px; bottom: 10px;
    z-index: 90;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,.25));
  }
  .mobile-callbar a {
    height: 54px;
    border-radius: 6px;
    background: var(--olive-deep);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.12);
  }
}


/* ========================================
   PHONE-ONLY CONTACT + GOOGLE REVIEW LINK
   ======================================== */
.contact-phone-layout {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 88px;
  align-items: center;
}

.review-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 38px;
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 45%),
    var(--olive-dark);
  color: white;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.review-panel::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -85px;
  top: -90px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.review-panel::after {
  content: "★";
  position: absolute;
  right: 22px;
  bottom: -28px;
  color: rgba(255,255,255,.035);
  font-size: 120px;
  line-height: 1;
}

.review-stars {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  color: #d1c592;
  letter-spacing: .18em;
  font-size: 17px;
}

.review-eyebrow {
  color: #c8d0bd !important;
}

.review-panel h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  max-width: 500px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(37px, 4vw, 52px);
  line-height: .98;
  text-transform: uppercase;
}

.review-panel p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  color: #c7cdc3;
  margin-bottom: 25px;
}

.review-button {
  position: relative;
  z-index: 2;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border-radius: 6px;
  background: #f3f0e7;
  color: var(--olive-deep);
  font-size: 13px;
  font-weight: 900;
  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.review-button:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.review-button span {
  font-size: 19px;
  transition: transform .2s ease;
}

.review-button:hover span {
  transform: translate(2px, -2px);
}

.review-panel > small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 12px;
  color: #969f92;
  font-size: 10px;
}

.phone-contact-card {
  will-change: transform;
}

/* ========================================
   SECTION MOTION / EXTRA JS ANIMATIONS
   ======================================== */
.section-motion {
  position: relative;
}

.hero-photo {
  will-change: transform;
  transform: scale(1.035);
}

.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity .7s cubic-bezier(.2,.75,.25,1),
    transform .7s cubic-bezier(.2,.75,.25,1);
}

.reveal-left {
  transform: translate3d(-34px, 12px, 0);
}

.reveal-right {
  transform: translate3d(34px, 12px, 0);
}

.reveal-scale {
  transform: scale(.96) translateY(14px);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.service-card,
.gallery-card,
.contact-card,
.phone-stack a,
.founders > div {
  will-change: transform;
}

.section-title h2,
.section-heading h2,
.about-content h2,
.contact-copy h2 {
  transform-origin: left center;
}

.motion-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .46s ease,
    transform .46s cubic-bezier(.2,.75,.25,1);
}

.motion-word.word-visible {
  opacity: 1;
  transform: translateY(0);
}

.workmanship-strip {
  overflow: hidden;
}

.workmanship-grid span {
  transition:
    background .25s ease,
    letter-spacing .25s ease,
    color .25s ease;
}

.workmanship-grid span:hover {
  background: rgba(255,255,255,.055);
  letter-spacing: .085em;
  color: #f5f6f1;
}

@media (max-width: 900px) {
  .contact-phone-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 640px) {
  .review-panel {
    padding: 31px 23px;
  }

  .review-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .motion-word {
    transform: none !important;
    opacity: 1 !important;
  }
}

.section-motion > .container {
  transform: translateY(var(--section-shift, 0));
  transition: transform .12s linear;
}
