:root {
  --bg-dark: #0d0d0d;
  --bg-soft: #151515;
  --bg-cream: #f4f1ea;
  --text: #252525;
  --muted: #77716a;
  --white: #ffffff;
  --line: #d8d0c3;
  --accent: #7f1d3a;
  --accent-soft: #6b1731;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-cream);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1220px, 92%);
  margin: 0 auto;
}

.topline {
  position: absolute;
  inset: 0 0 auto;
  z-index: 16;
  border-bottom: 1px solid #ffffff2e;
}

.topline-inner {
  min-height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: #efe6d7;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topline-inner p {
  margin: 0;
}

.topline-inner a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  background: #000;
}

.main-nav {
  position: absolute;
  inset: 0 0 auto;
  transform: none;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 5.2rem;
  width: 100%;
  padding: 0 4%;
  border: 1px solid #c8002f;
  background: #c8002f;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.nav-links {
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  color: #f8f2e8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand img {
  width: 168px;
  height: 50px;
  object-fit: cover;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 38px;
  border: 1px solid #fff;
  background: #fff;
  color: #c8002f !important;
  font-weight: 700 !important;
}

.menu-btn,
.mobile-menu {
  display: none;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  background: center / cover no-repeat var(--bg);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25) 55%),
    radial-gradient(circle at 30% 20%, transparent, rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 14vh 8% 12vh;
  border: 1px solid #ffffff38;
  pointer-events: none;
}

.hero-kicker {
  margin: 0;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #f0e6d7;
}

.hero-content h1 {
  margin: 1rem 0 1.1rem;
  font-family: "Prata", serif;
  font-size: clamp(2.5rem, 6.6vw, 5.8rem);
  line-height: 1.02;
  font-weight: 400;
}

.hero-subtitle {
  margin: 0;
  max-width: 650px;
  color: #f3ebdf;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.hero-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  border: 1px solid var(--accent);
  color: #fbf3e7;
  background: #c9a46b2a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.95rem 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-link:hover {
  background: #c9a46b66;
  transform: translateY(-2px);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 1px solid #ffffff33;
  background: #11111159;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
}

.slider-arrow.prev {
  left: 1.2rem;
}

.slider-arrow.next {
  right: 1.2rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  z-index: 5;
}

.slider-dot {
  width: 24px;
  height: 4px;
  border: 0;
  background: #ffffff50;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--accent);
}

.booking-strip {
  background: var(--bg-dark);
  color: #f4ecde;
  border-top: 1px solid #282828;
  border-bottom: 1px solid #282828;
}

.booking-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: #c9b79e;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.booking-copy h2 {
  margin: 0.4rem 0 0;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.booking-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.booking-btn {
  text-decoration: none;
  color: #ffffff;
  background: #c8002f;
  border: 1px solid #c8002f;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-btn.secondary {
  color: #f8f1e5;
  background: transparent;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.section-heading h2 {
  margin: 0.5rem 0 0;
  font-family: "Prata", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.06;
}

.about-section {
  background: #f7f4ef;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-copy h2 {
  margin: 0.8rem 0 1rem;
  font-family: "Prata", serif;
  font-weight: 400;
  line-height: 1.12;
  font-size: clamp(2rem, 4.1vw, 3.7rem);
}

.about-copy p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.text-link {
  color: var(--accent-soft);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
}

.about-image {
  margin: 0;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.services-section {
  background: var(--bg-dark);
  color: #f2ecdf;
}

.services-section .eyebrow {
  color: #af9673;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid #ffffff1a;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.07);
}

.service-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.3rem;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.88), transparent);
}

.service-caption h3 {
  margin: 0;
  font-family: "Prata", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.service-caption p {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: #dfd4c5;
}

.parallax-section {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.4)),
    url("assets/streetview.jpg") center / cover fixed no-repeat;
  color: #fff;
  padding: 4rem 1rem;
}

.parallax-inner {
  width: min(880px, 92%);
}

.parallax-inner h2 {
  margin: 0.8rem 0 0;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.12;
}

.pricing-section {
  background: #f8f4ec;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-head h2 {
  margin: 0.6rem 0;
  font-family: "Prata", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  font-weight: 400;
}

.pricing-head p {
  margin: 0;
  color: var(--muted);
}

.pricing-list {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem 1.35rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ede5d8;
  padding: 1rem 0;
  font-size: 0.93rem;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: #2c251a;
  font-weight: 600;
}

.portfolio-section {
  background: #111;
  color: #f6efe2;
}

.portfolio-section .eyebrow {
  color: #af9673;
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 0.8rem;
}

.masonry-item {
  break-inside: avoid;
  margin: 0 0 0.8rem;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item:nth-child(1) img {
  aspect-ratio: 4 / 5;
  object-position: center 40%;
}

.masonry-item:nth-child(2) img {
  aspect-ratio: 4 / 5;
  object-position: center 40%;
}

.masonry-item:nth-child(3) img {
  aspect-ratio: 3 / 4;
}

.masonry-item:nth-child(4) img {
  aspect-ratio: 4 / 5;
}

.masonry-item:nth-child(5) img {
  aspect-ratio: 1 / 1;
}

.masonry-item:nth-child(6) img {
  aspect-ratio: 4 / 5;
}

.testimonials-section {
  background: #f7f2e9;
  color: #2c2720;
}

.testimonials-wrap {
  text-align: center;
}

.testimonials-wrap h2 {
  margin: 0.6rem 0 1.3rem;
  font-family: "Prata", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
}

.review-stats {
  margin: -0.35rem auto 1.55rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.6rem 1rem;
  color: #fff7ea;
  background: linear-gradient(135deg, #7f1d3a, #5d142b);
  border: 1px solid #ffffff3d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.04em;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  line-height: 1.3;
}

.star-icon {
  color: #ffd166;
  margin-right: 0.25rem;
  font-size: 0.95rem;
}

.testimonials-slider {
  position: relative;
  min-height: 230px;
}

.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  max-width: 860px;
  margin: 0 auto;
}

.quote.is-active {
  opacity: 1;
  visibility: visible;
}

.quote p {
  margin: 0;
  font-size: 1.01rem;
  color: #5f5548;
}

.quote h3 {
  margin: 1rem 0 0;
  font-family: "Prata", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 24px;
  height: 4px;
  border: 0;
  background: #b9aa95;
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--accent-soft);
}

.site-footer {
  background: #0b0b0b;
  color: #d8cdbb;
  border-top: 1px solid #2a2a2a;
  padding: 3.6rem 0;
}

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

.site-footer h4 {
  margin: 0 0 0.6rem;
  font-family: "Prata", serif;
  color: #f2ebdf;
  font-size: 1.45rem;
  font-weight: 400;
}

.site-footer p {
  margin: 0.3rem 0;
}

.site-footer a {
  color: #f2ebdf;
  text-decoration: none;
}

.footer-social-block p {
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.footer-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3f3a33;
  color: #d8cdbb;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-icons a:hover {
  color: #f2ebdf;
  border-color: #a98a5d;
  transform: translateY(-2px);
}

.footer-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1080px) {
  .main-nav {
    inset: 0 0 auto;
    width: 100%;
    min-height: 4.8rem;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff63;
    background: transparent;
    color: #fff;
    padding: 0.48rem 0.8rem;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .mobile-menu {
    position: absolute;
    top: 4.8rem;
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #c8002f;
    border-top: 1px solid #ffffff52;
    border-bottom: 1px solid #ffffff33;
    padding: 0.55rem 4%;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: #fff;
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    border-bottom: 1px solid #ffffff2e;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    columns: 2 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    inset: 0 0 auto;
    min-height: 5rem;
    width: 100%;
    padding: 0 4%;
  }

  .mobile-menu {
    top: 5rem;
  }

  .brand img {
    width: 152px;
    height: 46px;
  }

  .hero-slider,
  .hero-content {
    min-height: 86vh;
  }

  .hero-content::before {
    inset: 10vh 5% 10vh;
  }

  .hero-subtitle {
    width: min(88%, 420px);
  }

  .slider-arrow {
    display: none;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }

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

  .section {
    padding: 4.8rem 0;
  }

  .masonry-grid {
    columns: 1;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
