:root {
  --ink: #101010;
  --charcoal: #1a1a1a;
  --muted: #626262;
  --paper: #ffffff;
  --soft: #f5f1ec;
  --cream: #fbf7f2;
  --brand-blue: #16181d;
  --brand-blue-dark: #0e1014;
  --brand-blue-light: #991923;
  --gold: #991923;
  --gold-dark: #991923;
  --line: rgba(16, 16, 16, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  height: 3px;
  width: 0;
  background: var(--brand-blue-light);
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--brand-blue);
  border-bottom: 0;
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.nav-shell {
  width: min(100% - 180px, 1600px);
  min-height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-wrap {
  display: grid;
  width: 210px;
  height: 92px;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
}

.brand-logo {
  width: 210px;
  height: 92px;
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: none;
  letter-spacing: 0;
}

.brand strong {
  color: var(--paper);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-menu a {
  padding: 12px 0;
  color: var(--paper);
  font-size: 19px;
  font-weight: 500;
  text-transform: none;
}

.nav-menu a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.nav-phone {
  display: none;
}

.nav-cta {
  min-width: 186px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  background: var(--brand-blue-light);
  color: var(--paper) !important;
  border-radius: 999px;
  font-weight: 800 !important;
}

.nav-cta::after {
  content: "->";
  margin-left: 10px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.nav-toggle svg,
.btn svg,
.why-card svg,
.contact-facts svg {
  width: 18px;
  height: 18px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--paper);
  border-radius: 999px;
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  color: var(--paper);
}

.btn-dark {
  background: var(--brand-blue);
  color: var(--paper);
  border-radius: 999px;
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline-light {
  border-color: var(--line-light);
  color: var(--paper);
}

.btn-outline-dark {
  border-color: rgba(16, 16, 16, 0.26);
  color: var(--ink);
  border-radius: 999px;
}

.btn-outline-dark:hover {
  border-color: var(--brand-blue-light);
  color: var(--brand-blue-light);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 900ms ease;
}

.hero-bg.is-ready img {
  opacity: 0;
}

.hero-bg.is-ready img.is-active {
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(47, 67, 150, 0.34), rgba(0, 0, 0, 0.22));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 34px;
  background: var(--brand-blue);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 0.9fr;
  align-items: center;
  gap: 58px;
  padding: 42px 0 62px;
}

.hero .container {
  width: min(100% - 180px, 1600px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(46px, 4.6vw, 70px);
  font-weight: 800;
  line-height: 1.14;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.44;
}

.hero .eyebrow {
  color: var(--paper);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-actions .btn {
  min-width: 206px;
  min-height: 54px;
  font-size: 18px;
  text-transform: none;
}

.quote-card,
.contact-form {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero .quote-card {
  align-self: center;
  min-height: 0;
  padding: 22px 42px 28px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.hero .quote-card > h2,
.hero .quote-card > p {
  display: none;
}

.quote-card h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.quote-card p {
  color: var(--muted);
}

.quote-card a {
  color: var(--gold-dark);
  font-weight: 900;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #2a2a2a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fbfbfb;
  color: var(--ink);
  padding: 14px;
  outline: 0;
  border-radius: 0;
  font-size: 15px;
  text-transform: none;
}

.hero .quote-card label {
  color: rgba(255, 255, 255, 0);
  font-size: 0;
}

.hero .quote-card input,
.hero .quote-card select,
.hero .quote-card textarea {
  min-height: 48px;
  border: 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: var(--paper);
  padding: 6px 0 11px;
  font-size: 18px;
  border-radius: 0;
}

.hero .quote-card textarea {
  min-height: 96px;
}

.hero .quote-card input::placeholder,
.hero .quote-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.hero .quote-card select {
  color: rgba(255, 255, 255, 0.68);
}

.hero .quote-card option {
  color: var(--ink);
}

.hero .quote-card .btn {
  min-height: 50px;
  margin-top: 6px;
  font-size: 17px;
}

.hero .quote-card .form-note {
  display: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 173, 99, 0.2);
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: none;
}

.form-note.light {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: 92px 0;
}

.about,
.transformation,
.location {
  background: var(--cream);
}

.services,
.why,
.faq {
  background: var(--paper);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 62px;
}

.image-panel {
  min-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.content-panel p,
.section-heading p,
.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  width: 100%;
  display: grid;
  padding: 0;
  min-height: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.12);
}

.service-card:focus-visible {
  outline: 3px solid rgba(153, 25, 35, 0.28);
  outline-offset: 4px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.service-card h3 {
  margin-top: 22px;
  font-family: "Libre Baskerville", Georgia, serif;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

.service-detail-section {
  background: var(--paper);
}

.service-detail-list {
  display: grid;
  gap: 56px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.05fr 0.95fr;
}

.service-detail:nth-child(even) img {
  order: 2;
}

.service-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-detail img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.2vw, 44px);
}

.service-detail p {
  color: var(--muted);
  font-size: 17px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-strip img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.why-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--gold-dark);
}

.why-card p,
.process-step p,
blockquote p,
.faq-answer p {
  color: var(--muted);
}

.process {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 260px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.process-step span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 26px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.reviews {
  background: var(--charcoal);
  color: var(--paper);
}

.reviews .section-heading p {
  color: var(--gold);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
}

blockquote p {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.testimonial-hero .hero-bg img {
  object-position: center 46%;
}

.testimonial-proof {
  background: var(--paper);
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.testimonial-stats div {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 16, 20, 0.08);
}

.testimonial-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
}

.testimonial-stats span {
  color: var(--muted);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonials-page .testimonial-grid {
  grid-template-columns: 1fr;
  max-width: 940px;
  margin: 0 auto;
  gap: 24px;
}

.testimonial-card {
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonials-page .testimonial-card {
  min-height: 0;
  padding: 34px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-left: 5px solid var(--red);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.review-head cite {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}

.review-date {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #d8dce2;
  background: #f1f3f4;
  color: #202124;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials-page .testimonial-card .review-date {
  background: #f1f3f4;
  color: #202124;
}

.testimonials-page .testimonial-card .google-mark {
  margin-left: auto;
}

.testimonials-page .testimonial-card p {
  max-width: 780px;
  margin: 0;
  color: #292929;
  font-size: 1.04rem;
  line-height: 1.85;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0;
}

.testimonials-page .stars {
  color: #fbbc04 !important;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 82px;
  height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 18px rgba(0, 0, 0, 0.16);
}

.google-mark::before {
  content: none;
}

.google-mark span {
  line-height: 1;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #ea4335;
}

.g-yellow {
  color: #fbbc05;
}

.g-green {
  color: #34a853;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.review-link svg {
  width: 15px;
  height: 15px;
}

.review-link:hover,
.review-link:focus-visible {
  color: var(--ink);
}

.contact-facts {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-facts div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-facts svg {
  color: var(--gold-dark);
}

.map-card {
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--cream);
}

.faq-item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.contact-section {
  background: var(--ink);
  color: var(--paper);
  padding: 92px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.contact-quote-page {
  background: #f2f2f2;
  padding: 74px 0 82px;
}

.contact-quote-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 78px;
  align-items: center;
}

.contact-quote-copy h1 {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--brand-blue);
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: 1.05;
}

.contact-quote-copy p {
  max-width: 520px;
  color: #2f3034;
  font-size: 22px;
  font-weight: 700;
}

.contact-quote-copy a {
  font-weight: 900;
}

.contact-quote-form {
  gap: 18px;
}

.contact-quote-form label {
  color: transparent;
  font-size: 0;
}

.contact-quote-form input,
.contact-quote-form textarea {
  min-height: 54px;
  border: 0;
  border-bottom: 3px solid #2b2c31;
  background: transparent;
  color: var(--ink);
  padding: 8px 0 12px;
  font-size: 20px;
}

.contact-quote-form textarea {
  min-height: 116px;
}

.contact-quote-form input::placeholder,
.contact-quote-form textarea::placeholder {
  color: rgba(16, 16, 16, 0.58);
}

.contact-quote-form .btn {
  min-height: 54px;
  margin-top: 4px;
}

.contact-map-section {
  height: 430px;
}

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-grid > div > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form {
  box-shadow: none;
}

.footer {
  background: #0b0b0b;
  color: var(--paper);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr;
  gap: 58px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-brand .brand-logo-wrap {
  width: 350px;
  height: 224px;
  background: transparent;
}

.footer-brand .brand-logo {
  width: 350px;
  max-width: 100%;
  max-height: 224px;
  height: auto;
  object-fit: contain;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  width: 96px;
  min-height: 92px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--gold);
  background: rgba(153, 25, 35, 0.22);
  color: #fff;
}

.footer-social img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.sticky-quote {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 65;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(26px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-quote.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-quote span {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sticky-quote a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-page .hero {
  min-height: 430px;
}

.gallery-page .hero-grid {
  min-height: 430px;
  grid-template-columns: 1fr;
}

.gallery-page .hero-copy {
  max-width: 820px;
}

.contact-page .hero-copy {
  max-width: 760px;
}

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--ink);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  color: var(--paper);
}

.gallery-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-item h3 {
  margin: 6px 0 0;
}

.portfolio-simple {
  background: #f2f2f2;
  padding: 104px 0;
}

.portfolio-simple .container {
  display: grid;
  justify-items: center;
  max-width: 1600px;
}

.portfolio-heading {
  width: 100%;
  margin: 0 auto 42px;
  text-align: center;
}

.portfolio-heading h1 {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
  text-align: center;
}

.simple-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.simple-gallery-item {
  display: block;
  width: 100%;
  min-height: 330px;
  border: 0;
  background: var(--ink);
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.simple-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.simple-gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.9;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(5, 6, 9, 0.9);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  width: 100%;
  height: 100%;
  place-items: center;
  margin: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-caption {
  max-width: calc(100vw - 48px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox svg {
  width: 28px;
  height: 28px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  background: rgba(8, 9, 12, 0.82);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-panel {
  position: relative;
  width: min(100%, 1080px);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: auto;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.service-modal.is-open .service-modal-panel {
  transform: translateY(0) scale(1);
}

.service-modal-media {
  min-height: 100%;
  background: var(--ink);
}

.service-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-modal-content {
  display: grid;
  align-content: center;
  padding: 54px;
}

.service-modal-content h2 {
  margin-bottom: 22px;
  color: var(--brand-blue);
  font-size: clamp(30px, 3.2vw, 46px);
}

.service-modal-copy {
  display: grid;
  gap: 14px;
}

.service-modal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.service-modal-close svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .faq-grid,
  .service-detail,
  .service-detail:nth-child(even),
  .contact-quote-grid {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) img {
    order: 0;
  }

  .quote-card {
    max-width: 620px;
  }

  .service-grid,
  .why-grid,
  .review-grid,
  .testimonial-grid,
  .testimonial-stats,
  .gallery-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .portfolio-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    min-height: 74px;
  }

  .brand-logo-wrap {
    width: 160px;
    height: 72px;
  }

  .brand-logo {
    width: 160px;
    height: 72px;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
  }

  .footer-brand .brand-logo-wrap {
    width: min(100%, 320px);
    height: 204px;
  }

  .footer-brand .brand-logo {
    width: min(100%, 320px);
    max-height: 204px;
    object-fit: contain;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    display: grid;
    background: var(--brand-blue);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 15px;
    color: var(--paper);
    font-size: 18px;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 58px 0 78px;
    gap: 34px;
  }

  .hero .container {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions .btn {
    min-width: 0;
    min-height: 56px;
    font-size: 17px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .contact-quote-page {
    padding: 54px 0 62px;
  }

  .contact-quote-grid {
    gap: 34px;
  }

  .contact-quote-copy h1 {
    font-size: 42px;
  }

  .contact-quote-copy p {
    font-size: 18px;
  }

  .contact-quote-form input,
  .contact-quote-form textarea {
    min-height: 50px;
    font-size: 18px;
  }

  .contact-quote-form textarea {
    min-height: 96px;
  }

  .contact-map-section {
    height: 360px;
  }

  .portfolio-simple {
    padding: 68px 0;
  }

  .simple-gallery {
    grid-template-columns: 1fr;
  }

  .simple-gallery-item,
  .simple-gallery-item img {
    min-height: 280px;
  }

  .testimonial-grid,
  .testimonial-stats {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .service-modal {
    padding: 14px;
  }

  .service-modal-panel {
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
  }

  .service-modal-media img {
    min-height: 260px;
    max-height: 34vh;
  }

  .service-modal-content {
    padding: 34px 24px 30px;
  }

  .service-modal-actions {
    width: 100%;
  }

  .service-grid,
  .why-grid,
  .review-grid,
  .process-grid,
  .portfolio-strip,
  .gallery-grid-page,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .image-panel img,
  .service-detail img {
    min-height: 380px;
  }

  .quote-card,
  .contact-form {
    padding: 24px;
  }

  .hero .quote-card {
    min-height: auto;
    padding: 26px 24px 30px;
    border-radius: 18px;
  }

  .hero .quote-card input,
  .hero .quote-card select,
  .hero .quote-card textarea {
    min-height: 52px;
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .contact-actions,
  .hero-actions {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    display: flex;
  }

  .sticky-quote {
    display: none;
  }
}

@media (max-width: 440px) {
  .brand-logo-wrap {
    width: 136px;
    height: 62px;
  }

  .brand-logo {
    width: 136px;
    height: 62px;
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
  }

  .footer-brand .brand-logo-wrap {
    width: min(100%, 285px);
    height: 182px;
  }

  .footer-brand .brand-logo {
    width: min(100%, 285px);
    max-height: 182px;
    object-fit: contain;
  }

  .brand strong {
    font-size: 14px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
