:root {
  --paper: #fbfaf7;
  --cream: #f7eddc;
  --mist: #eef3ef;
  --ink: #1f2521;
  --green: #24342d;
  --green-soft: #42564d;
  --berry: #8c304f;
  --berry-dark: #712541;
  --gold: #f2c64d;
  --gold-soft: #f8db7b;
  --line: #d9d1c3;
  --muted: #52645b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand img {
  width: 8.4rem;
  height: 3.7rem;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  color: var(--green-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-nav a:hover {
  color: var(--berry);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.76rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--berry);
  color: #fff;
}

.button-primary:hover {
  background: var(--berry-dark);
}

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

.button-gold:hover {
  background: var(--gold-soft);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--cream);
}

.button-green {
  margin-top: 1.6rem;
  background: var(--green);
  color: #fff;
}

.button-green:hover {
  background: #121b16;
}

.button-outline,
.button-outline-dark {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-outline-dark {
  border-color: var(--green-soft);
  color: var(--green);
}

.button-outline-dark:hover {
  background: rgba(66, 86, 77, 0.1);
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8.5rem 1.25rem 4.5rem;
  color: #fff;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 25, 21, 0.88), rgba(18, 25, 21, 0.58) 48%, rgba(18, 25, 21, 0.26)),
    linear-gradient(0deg, rgba(18, 25, 21, 0.72), rgba(18, 25, 21, 0.18));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  align-items: end;
  gap: 3rem;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 47rem;
}

.hero-kicker,
.section-kicker {
  margin: 0;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--gold);
}

.hero h1,
.service-hero h1 {
  margin: 0.55rem 0 0;
  font-size: clamp(3.15rem, 8vw, 6.6rem);
  line-height: 1.02;
  font-weight: 800;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 43rem;
  margin: 1.45rem 0 0;
  color: var(--cream);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-note {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  padding-left: 1.25rem;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-note p {
  margin: 0;
}

.hero-note p:nth-child(odd) {
  margin-top: 1.35rem;
  color: #fff;
  font-weight: 900;
}

.hero-note p:first-child {
  margin-top: 0;
}

.section {
  padding: 5.25rem 1.25rem;
}

.section-white {
  background: #fff;
}

.section-dark {
  background: var(--green);
  color: #fff;
}

.section-muted {
  background: var(--mist);
}

.section-cream {
  background: var(--cream);
}

.section-contact {
  background: var(--ink);
  color: #fff;
}

.section-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.section h2 {
  margin: 0.8rem 0 0;
  max-width: 42rem;
  color: inherit;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.08;
  font-weight: 800;
}

.section p,
.service-hero p {
  color: var(--muted);
  line-height: 1.75;
}

.section-dark p,
.section-contact p {
  color: var(--cream);
}

.section-dark .section-kicker,
.section-contact .section-kicker {
  color: var(--gold);
}

.section-heading {
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.section-heading p {
  max-width: 44rem;
}

.section-heading-narrow {
  display: block;
  max-width: 52rem;
}

.split,
.reviews-split,
.about-grid,
.contact-grid,
.detail-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.reviews-split {
  grid-template-columns: 0.75fr 1.25fr;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  display: grid;
  align-content: start;
  min-height: 19rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  transition: border-color 160ms ease, transform 160ms ease;
}

.service-tile:hover {
  border-color: var(--berry);
  transform: translateY(-2px);
}

.service-tile span,
.service-tile strong {
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-tile h3 {
  margin: 0.9rem 0 0;
  color: var(--green);
  font-size: 1.42rem;
  line-height: 1.18;
}

.service-tile p {
  margin: 0.9rem 0 1.4rem;
}

.service-tile strong {
  align-self: end;
  margin-top: auto;
}

.info-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-grid {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.info-grid h3,
.process-grid h3,
.rate-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.08rem;
  line-height: 1.25;
}

.info-grid p,
.process-grid p {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  padding-top: 1rem;
  border-top: 2px solid var(--berry);
}

.reviews-section {
  border-top: 1px solid var(--line);
}

.review-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.review-card {
  min-height: 16rem;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
  scroll-snap-align: start;
}

.review-card blockquote {
  margin: 0;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 800;
}

.review-card figcaption {
  margin-top: 1.5rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-grid {
  grid-template-columns: 20rem minmax(0, 1fr);
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: var(--green);
}

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

.about-copy p {
  max-width: 44rem;
}

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-details {
  margin-top: 1.6rem;
}

.contact-details a:not(.button),
.site-footer a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

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

.field-label {
  display: grid;
  gap: 0.45rem;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  border: 1px solid #cfc7b7;
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
}

.field-input:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(140, 48, 79, 0.18);
}

textarea.field-input {
  min-height: 9rem;
  resize: vertical;
}

.submit-button {
  margin-top: 0.4rem;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-hero {
  padding: 5.5rem 1.25rem;
  background: var(--mist);
}

.service-hero-grid {
  align-items: center;
}

.service-hero h1 {
  max-width: 46rem;
  color: var(--ink);
  font-size: clamp(2.65rem, 6vw, 5rem);
}

.service-hero p {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
}

.service-hero .button-row {
  margin-top: 2rem;
}

.service-hero-image {
  position: relative;
  margin: 0;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green);
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.service-hero-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-grid {
  align-items: start;
}

.detail-grid p {
  max-width: 46rem;
}

.rate-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.rate-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.rate-card li {
  color: var(--muted);
  line-height: 1.45;
}

.price-list li {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 0.8rem;
  align-items: baseline;
}

.price-list span:first-child,
.price-list strong {
  color: var(--green);
  font-weight: 900;
}

.gallery-section .section-heading {
  margin-bottom: 2rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 14.5rem;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green);
}

.gallery-trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-caption,
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 20, 18, 0.78);
  cursor: zoom-out;
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  width: min(100%, 960px);
  max-height: 90vh;
}

.gallery-dialog img {
  width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.gallery-dialog p {
  margin: 0;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.gallery-close {
  justify-self: end;
  min-height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  color: var(--green-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-inner img {
  width: 5rem;
  height: 2.1rem;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }

  .hero-inner,
  .split,
  .reviews-split,
  .about-grid,
  .contact-grid,
  .detail-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    max-width: 36rem;
  }

  .service-card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .image-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 0.65rem 1rem;
    gap: 0.8rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 6.5rem;
    height: 2.9rem;
  }

  .header-button {
    min-height: 2.35rem;
    padding: 0.62rem 0.85rem;
    font-size: 0.84rem;
  }

  .home-hero {
    min-height: 84svh;
    padding: 6.5rem 1rem 3.5rem;
  }

  .hero-overlay {
    background: rgba(18, 25, 21, 0.74);
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 1rem;
  }

  .hero-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    padding: 1rem 0 0;
  }

  .section,
  .service-hero {
    padding: 4rem 1rem;
  }

  .section-heading {
    display: block;
  }

  .form-row,
  .process-grid,
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .service-tile {
    min-height: auto;
  }

  .service-hero-image,
  .service-hero-image img {
    min-height: 18rem;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .image-gallery {
    grid-auto-rows: 16rem;
  }

  .gallery-featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}
