:root {
  --ink: #171716;
  --muted: #66615b;
  --paper: #fbfaf7;
  --white: #ffffff;
  --sage: #ead8cf;
  --sage-dark: #ead8cf;
  --blush: #ead8cf;
  --clay: #7d4f3d;
  --line: #ded8cf;
  --shadow: 0 18px 45px rgba(30, 29, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #2f6f8f;
  outline-offset: 3px;
}

main[id],
section[id] {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px 6vw;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(222, 216, 207, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span {
  max-width: 180px;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78svh;
  padding: 74px 6vw 82px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.38) 58%, rgba(18, 18, 18, 0.12)),
    url("assets/hero-collage-background.webp") center / cover no-repeat;
}

.hero-content {
  width: min(720px, 100%);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 54px;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--sage);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--sage-dark);
  color: var(--ink);
}

.button.cta-pop {
  box-shadow: 0 14px 28px rgba(174, 127, 104, 0.26);
  transform: translateY(0);
}

.button.cta-pop:hover,
.button.cta-pop:focus-visible {
  box-shadow: 0 18px 34px rgba(174, 127, 104, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.contact .button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 12vw));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 22px;
  background: var(--white);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 94px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
}

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

.pricing-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-panel p {
  color: var(--muted);
  font-size: 18px;
}

.pricing-panel p:last-child {
  margin-bottom: 0;
}

.pricing-details {
  padding: 28px;
  border-radius: 8px;
  background: var(--blush);
}

.pricing-details h3 {
  margin-top: 0;
}

.pricing-details ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.pricing-details li {
  color: var(--ink);
  font-weight: 700;
}

.pricing-details .button {
  margin-top: 8px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: stretch;
  background: var(--sage-dark);
  color: var(--ink);
}

.split-image {
  min-height: 520px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 6vw;
}

.split-content .eyebrow {
  color: var(--clay);
}

.split-content p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
}

.gallery {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  padding: 4px 6vw 14px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--clay) rgba(234, 216, 207, 0.7);
}

.gallery figure {
  position: relative;
  flex: 0 0 min(430px, 84vw);
  height: 430px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-band {
  padding: 76px 6vw;
  background: var(--blush);
}

.review-intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 36px;
  align-items: center;
}

.review-intro p:last-child {
  margin: 0;
  color: #4c4540;
  font-size: 20px;
}

.review-scroll {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  padding: 4px 6vw 12px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--clay) rgba(255, 255, 255, 0.6);
}

.review-card {
  flex: 0 0 min(430px, 84vw);
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  scrollbar-color: var(--clay) rgba(234, 216, 207, 0.7);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 18px;
  font-weight: 800;
}

.review-card p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 18px;
}

.review-card strong {
  display: block;
  color: var(--clay);
  font-size: 14px;
  text-transform: uppercase;
}

.contact {
  padding-bottom: 68px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-panel .email-line {
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink);
}

.email-popup-trigger {
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-popup-trigger:hover,
.email-popup-trigger:focus-visible {
  color: var(--clay);
}

.email-modal[hidden] {
  display: none;
}

.email-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 22, 0.58);
}

.email-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(23, 23, 22, 0.28);
}

.email-modal-panel h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.email-modal-panel p:not(.eyebrow) {
  color: var(--muted);
}

.email-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.email-modal-close:hover,
.email-modal-close:focus-visible {
  background: var(--blush);
}

.email-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.email-provider-grid a {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.email-provider-grid a:hover,
.email-provider-grid a:focus-visible {
  background: var(--blush);
  border-color: var(--clay);
}

.email-provider-grid strong {
  font-size: 16px;
}

.email-provider-grid span {
  color: var(--muted);
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .trust-strip,
  .service-grid,
  .intro,
  .split-band,
  .review-intro,
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    gap: 14px;
  }

  .split-content {
    padding: 54px 6vw;
  }

  .gallery {
    padding-right: 5vw;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 10px 5vw;
  }

  .brand span {
    max-width: none;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 8px 14px;
  }

  .hero {
    min-height: 74svh;
    padding: 56px 5vw 72px;
    background:
      linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.46)),
      url("assets/hero-collage-background.webp") center / cover no-repeat;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-copy,
  .intro-copy,
  .split-content p,
  .contact-panel p {
    font-size: 17px;
  }

  .trust-strip {
    width: min(100% - 10vw, 1120px);
    margin-top: -34px;
  }

  .trust-strip div {
    min-height: 96px;
    padding: 18px;
  }

  .trust-strip strong {
    font-size: 28px;
  }

  .section {
    width: min(100% - 10vw, 1120px);
    padding: 70px 0;
  }

  .intro,
  .service-grid,
  .pricing-panel,
  .split-band,
  .review-intro,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 390px;
  }

  .gallery figure {
    height: 360px;
  }

  .contact-panel {
    padding: 26px;
  }

  .pricing-panel,
  .pricing-details {
    padding: 26px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 30px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .email-modal-panel {
    padding: 26px;
  }

  .email-provider-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
