:root {
  --maroon: #641038;
  --maroon-deep: #3c0821;
  --olive: #626a4c;
  --ink: #112b36;
  --teal: #173f48;
  --cream: #fff8f1;
  --blush: #e7b4bf;
  --gold: #d8b35d;
  --white: #ffffff;
  --muted: #6d6f67;
  --line: rgba(17, 43, 54, 0.14);
  --shadow: 0 24px 70px rgba(17, 43, 54, 0.18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px 14px 216px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(17, 43, 54, 0.72);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(17, 43, 54, 0.25);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 43, 54, 0.92);
  box-shadow: 0 18px 60px rgba(17, 43, 54, 0.34);
}

.brand-mark {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 161px;
  height: 161px;
  border: 2px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(60, 8, 33, 0.28);
  overflow: hidden;
  transform: rotate(-5deg);
  transition: transform 260ms ease;
}

.brand-mark:hover {
  transform: rotate(0deg) translateY(-2px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.header-cta {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

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

.header-cta {
  color: var(--ink);
  background: var(--gold);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(216, 179, 93, 0.26);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 158px 20px 84px;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(60, 8, 33, 0.92) 0%, rgba(60, 8, 33, 0.84) 34%, rgba(17, 43, 54, 0.58) 68%, rgba(17, 43, 54, 0.22) 100%),
    linear-gradient(180deg, rgba(17, 43, 54, 0.62), rgba(17, 43, 54, 0.2) 50%, rgba(17, 43, 54, 0.78));
}

.hero-pattern {
  opacity: 0.28;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(45deg, rgba(216, 179, 93, 0.18) 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
  animation: patternSlide 20s linear infinite;
}

.hero-content {
  position: relative;
  width: min(1120px, 100%);
  padding-left: 210px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.6rem;
  line-height: 0.94;
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:focus-visible,
.gallery-item:focus-visible,
.lightbox-close:focus-visible,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(216, 179, 93, 0.72);
  outline-offset: 3px;
}

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

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(216, 179, 93, 0.26);
}

.btn-light {
  color: var(--maroon);
  background: var(--white);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-stats {
  margin-top: 42px;
}

.hero-stats div {
  min-width: 140px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 32px;
  height: 52px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--white);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section {
  padding: 92px 20px;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.contact-details h2,
.offer-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
}

.copy-block p:not(.section-kicker),
.contact-details p,
.offer-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(216, 179, 93, 0.18);
  color: var(--ink);
  font-weight: 800;
}

.feature-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 6px;
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services-section,
.contact-section {
  background: var(--white);
}

.gallery-section {
  background: linear-gradient(180deg, #fbf2ea, #fff8f1);
}

.trust-section {
  background: linear-gradient(135deg, rgba(98, 106, 76, 0.16), rgba(231, 180, 191, 0.16));
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.service-card,
.trust-card,
.review-card,
.offer-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(17, 43, 54, 0.08);
}

.service-card,
.trust-card,
.review-card {
  min-height: 220px;
  padding: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.trust-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 16, 56, 0.28);
  box-shadow: 0 22px 60px rgba(17, 43, 54, 0.14);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon), var(--teal));
  font-weight: 900;
}

.service-card h3,
.trust-card h3,
.review-card h3,
.contact-form h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.service-card p,
.trust-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
  box-shadow: 0 16px 40px rgba(17, 43, 54, 0.1);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

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

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

.review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.review-summary strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.review-summary span {
  color: rgba(255, 255, 255, 0.76);
}

.review-summary a {
  flex: none;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  font-weight: 900;
  padding: 12px 16px;
  border-radius: 999px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-grid {
  margin-top: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list a {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: var(--cream);
  font-weight: 800;
}

.contact-list span {
  color: var(--maroon);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-form {
  padding: 26px;
  background: var(--cream);
}

.contact-form label {
  display: block;
  margin: 16px 0 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 43, 54, 0.2);
  border-radius: 8px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
}

.offer-section {
  background: var(--maroon);
  color: var(--white);
}

.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.offer-card p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.btn-offer {
  flex: none;
  color: var(--ink);
  background: var(--gold);
}

.site-footer {
  padding: 56px 20px 120px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 28px;
}

.footer-inner img {
  border: 1px solid var(--white);
  border-radius: 8px;
  background: var(--white);
}

.footer-inner h2 {
  margin: 14px 0 4px;
  font-size: 1.4rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
  text-align: right;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

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

.minipage-credit {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.minipage-credit a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(17, 43, 54, 0.94);
  box-shadow: 0 18px 50px rgba(17, 43, 54, 0.35);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(17, 43, 54, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-8px, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(10px, -8px, 0);
  }
}

@keyframes patternSlide {
  to {
    background-position: 120px 120px, -180px 180px;
  }
}

@keyframes scrollDot {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-left: 182px;
  }

  .brand-mark {
    width: 140px;
    height: 140px;
  }

  .site-nav {
    display: none;
  }

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

  .hero-content {
    padding-left: 170px;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 12px 12px 12px 148px;
  }

  .brand-mark {
    left: 12px;
    top: 30px;
    width: 120px;
    height: 120px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 188px 18px 82px;
    align-items: end;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-media {
    background-image: url("/assets/images/hero-mobile.jpg");
    background-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(60, 8, 33, 0.72), rgba(60, 8, 33, 0.92) 52%, rgba(17, 43, 54, 0.96)),
      linear-gradient(90deg, rgba(17, 43, 54, 0.45), rgba(17, 43, 54, 0.12));
  }

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

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 12px 8px;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .hero-stats span {
    font-size: 0.76rem;
  }

  .section {
    padding: 68px 18px;
  }

  .copy-block h2,
  .section-heading h2,
  .contact-details h2,
  .offer-card h2 {
    font-size: 2.25rem;
  }

  .services-grid,
  .reviews-grid,
  .trust-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .review-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-summary a {
    width: 100%;
    text-align: center;
  }

  .offer-card {
    padding: 24px;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 116px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .copy-block h2,
  .section-heading h2,
  .contact-details h2,
  .offer-card h2 {
    font-size: 2rem;
  }

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

  .mobile-cta a {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
