:root {
  --ink: #23171b;
  --muted: #675961;
  --paper: #fffaf7;
  --soft: #f5ebe6;
  --rose: #b85d73;
  --berry: #7d3148;
  --gold: #d4a24e;
  --sage: #8ea88b;
  --shadow: 0 18px 45px rgba(65, 36, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 247, 0.94);
  border-bottom: 1px solid rgba(125, 49, 72, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--rose));
  border-radius: 50%;
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--berry);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #fff !important;
  background: var(--berry);
  box-shadow: 0 10px 22px rgba(125, 49, 72, 0.22);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 49, 72, 0.18);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 23, 27, 0.82), rgba(35, 23, 27, 0.32) 58%, rgba(35, 23, 27, 0.08));
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: clamp(92px, 13vw, 150px) clamp(20px, 6vw, 80px) clamp(54px, 8vw, 96px);
  color: #fff;
}

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

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(17px, 2vw, 21px);
}

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

.section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.split,
.team-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.contact h2,
.cta-panel h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.feature-card,
.team-photo,
.rental-grid article,
.review-card,
.contact-form,
.contact-card {
  border: 1px solid rgba(125, 49, 72, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card,
.team-photo {
  overflow: hidden;
  border-radius: 8px;
}

.feature-card img {
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
}

.text-link {
  color: var(--berry);
  font-weight: 900;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.image-stack img {
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  height: 360px;
}

.team-section {
  grid-template-columns: minmax(280px, 430px) minmax(0, 720px);
  justify-content: center;
  background: var(--soft);
}

.team-photo {
  padding: 14px;
}

.team-photo img {
  height: auto;
  border-radius: 6px;
}

.team-photo-caption {
  display: grid;
  gap: 4px;
  padding: 18px 6px 4px;
}

.team-photo-caption span {
  color: var(--berry);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-photo-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.slider-section {
  background: #fff;
}

.reviews {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.slides {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.slide.is-active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(35, 23, 27, 0.78);
  font-size: 34px;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(125, 49, 72, 0.28);
  cursor: pointer;
}

.slider-dots button[aria-current="true"] {
  background: var(--berry);
}

.services-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--ink);
}

.service-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.service-tile img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 320ms ease;
}

.service-tile:hover img {
  transform: scale(1.04);
}

.service-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 800;
}

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

.review-card,
.rental-grid article,
.contact-form,
.contact-card {
  border-radius: 8px;
  padding: 26px;
}

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

.review-card span {
  color: var(--berry);
  font-weight: 900;
}

.event-marquee {
  position: relative;
  width: calc(100% + clamp(40px, 10vw, 144px));
  margin: clamp(34px, 5vw, 56px) 0 0 calc(clamp(20px, 5vw, 72px) * -1);
  overflow: hidden;
}

.event-marquee::before,
.event-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(48px, 10vw, 160px);
  pointer-events: none;
}

.event-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fffaf7, rgba(255, 250, 247, 0));
}

.event-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fffaf7, rgba(255, 250, 247, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee-slide 34s linear infinite;
}

.event-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  width: clamp(220px, 24vw, 360px);
  height: clamp(180px, 19vw, 280px);
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(65, 36, 44, 0.14);
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 42px);
}

.social-links a {
  padding: 10px 14px;
  border: 1px solid rgba(125, 49, 72, 0.18);
  border-radius: 999px;
  color: var(--berry);
  font-weight: 800;
  text-decoration: none;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background: #fffdfb;
}

.faq-copy {
  position: sticky;
  top: 106px;
}

.faq-copy h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.faq-copy p {
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
}

.faq-copy .button {
  margin-top: 14px;
}

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

details {
  border: 1px solid rgba(125, 49, 72, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(65, 36, 44, 0.08);
  overflow: hidden;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--berry);
  background: rgba(184, 93, 115, 0.1);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact {
  position: relative;
  gap: clamp(30px, 5vw, 64px);
  background: linear-gradient(180deg, #f8efeb 0%, #f3e6e0 100%);
  align-items: start;
}

.contact-copy {
  max-width: 640px;
}

.contact-card {
  display: grid;
  gap: 6px;
  max-width: 460px;
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--berry);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
}

.form-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.form-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(125, 49, 72, 0.2);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fffdfc;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(125, 49, 72, 0.62);
  box-shadow: 0 0 0 4px rgba(184, 93, 115, 0.12);
}

.contact-form textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form ::placeholder {
  color: rgba(103, 89, 97, 0.62);
}

.contact-form button {
  justify-self: start;
  min-width: 150px;
  margin-top: 2px;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 23, 27, 0.86), rgba(35, 23, 27, 0.24));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: clamp(110px, 13vw, 160px) clamp(20px, 6vw, 80px) 62px;
}

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

.gallery-grid img {
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rental-list {
  background: #fff;
}

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

.rental-grid img {
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.rental-grid h3 {
  margin: 0 0 8px;
}

.rental-grid p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.check-list {
  padding-left: 20px;
  color: var(--muted);
}

.site-footer {
  padding: clamp(44px, 6vw, 70px) clamp(20px, 5vw, 72px) 26px;
  color: #fff;
  background: #1c1216;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(160px, 0.6fr) minmax(240px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  color: #fff;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links,
.footer-contact,
.footer-socials {
  display: flex;
}

.footer-links,
.footer-contact {
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-socials a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: #fff;
}

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

.footer-contact > a {
  color: #fff;
  font-weight: 800;
}

.footer-socials {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-socials a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(125, 49, 72, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .intro-grid,
  .split,
  .split.reverse,
  .team-section,
  .contact,
  .faq {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-band,
  .review-grid,
  .gallery-grid,
  .rental-grid {
    grid-template-columns: 1fr;
  }

  .event-marquee {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .service-tile {
    min-height: 260px;
  }

  .feature-card img,
  .gallery-grid img {
    height: 360px;
  }

  .team-photo {
    max-width: 430px;
    margin: 0 auto;
  }

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

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

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 180px;
    line-height: 1.1;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(35, 23, 27, 0.9), rgba(35, 23, 27, 0.34));
  }

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

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child {
    height: 310px;
  }

  .slides {
    aspect-ratio: 4 / 5;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }
}

/* Premium editorial layer */
:root {
  --ink: #24171b;
  --paper: #fffdfb;
  --soft: #f7eeea;
  --berry: #762d45;
  --rose: #b85f76;
  --gold: #d6a958;
  --line: rgba(87, 46, 59, 0.13);
  --shadow: 0 24px 70px rgba(55, 28, 37, 0.13);
  --shadow-hover: 0 30px 80px rgba(55, 28, 37, 0.2);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 169, 88, 0.08), transparent 26rem),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  min-height: 86px;
  padding-inline: clamp(20px, 5vw, 76px);
  transition: min-height 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(255, 253, 251, 0.9);
  box-shadow: 0 12px 38px rgba(55, 28, 37, 0.08);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 24px rgba(118, 45, 69, 0.25);
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--berry);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.nav-cta {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(118, 45, 69, 0.28);
}

.hero {
  min-height: min(850px, calc(100vh - 86px));
}

.hero img,
.page-hero img {
  transform: scale(1.02);
  animation: hero-settle 1.7s cubic-bezier(.2,.8,.2,1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(27, 15, 19, 0.9) 0%, rgba(27, 15, 19, 0.56) 50%, rgba(27, 15, 19, 0.12) 82%),
    linear-gradient(0deg, rgba(27, 15, 19, 0.55), transparent 40%);
}

.hero-content {
  max-width: 880px;
  padding-left: clamp(24px, 8vw, 124px);
  padding-bottom: clamp(70px, 10vw, 120px);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.93;
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255,255,255,.82);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .16em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-heading .eyebrow,
.section-heading .eyebrow {
  justify-content: center;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: -36px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 251, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px clamp(20px, 3vw, 38px);
}

.trust-strip > div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.trust-strip span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.section {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding: clamp(84px, 10vw, 150px) clamp(22px, 7vw, 104px);
}

.section-copy {
  max-width: 690px;
}

.section-copy h2,
.section-heading h2,
.contact h2,
.cta-panel h2,
.faq-copy h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  text-wrap: balance;
}

.section-copy p,
.contact-copy p,
.cta-panel p {
  line-height: 1.85;
}

.intro-grid {
  min-height: 760px;
}

.intro-grid::before,
.split.reverse::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(214, 169, 88, .24);
  border-radius: 50%;
}

.intro-grid::before {
  top: 12%;
  right: -180px;
}

.feature-card,
.team-photo,
.image-stack img,
.gallery-grid img {
  border-radius: 6px;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), box-shadow 500ms ease;
}

.feature-card {
  position: relative;
  overflow: visible;
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(214, 169, 88, .55);
  border-radius: inherit;
}

.feature-card:hover,
.team-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.split.reverse {
  max-width: none;
  background: linear-gradient(115deg, #26171c 0%, #3b2029 100%);
  color: #fff;
}

.split.reverse .section-copy p {
  color: rgba(255,255,255,.68);
}

.image-stack img:first-child {
  transform: translateY(-22px);
}

.image-stack img:last-child {
  border: 8px solid #fff;
  transform: translateX(-36px);
}

.team-section {
  max-width: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(214,169,88,.17), transparent 27rem),
    linear-gradient(180deg, #f8efeb, #f4e7e1);
}

.slider-section {
  max-width: none;
  background: #fff;
}

.slides {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

.slide {
  transform: scale(1.04);
  transition: opacity 600ms ease, transform 1.2s ease;
}

.slide.is-active {
  transform: scale(1);
}

.services-band {
  max-width: none;
  padding-inline: clamp(22px, 5vw, 72px);
  background: #211419;
}

.service-tile {
  min-height: 500px;
  border-radius: 4px;
}

.service-tile::after {
  content: "Explore service  →";
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
}

.service-tile span {
  bottom: 42px;
  font-size: clamp(28px, 3vw, 42px);
  transition: transform .3s ease;
}

.service-tile:hover span {
  transform: translateY(-28px);
}

.service-tile:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.reviews {
  max-width: none;
  background: linear-gradient(180deg, #fffdfb, #f8efeb);
}

.review-card {
  position: relative;
  min-height: 240px;
  padding: 54px 34px 32px;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 28px;
  color: rgba(184,95,118,.22);
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
}

.review-card:hover,
.rental-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.review-card,
.rental-grid article {
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.faq {
  max-width: none;
  padding-inline: max(clamp(22px, 7vw, 104px), calc((100vw - 1440px) / 2 + 104px));
}

details {
  border-radius: 4px;
  box-shadow: none;
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

details[open] {
  border-color: rgba(118,45,69,.3);
  box-shadow: 0 18px 46px rgba(55,28,37,.08);
}

.contact {
  max-width: none;
  padding-inline: max(clamp(22px, 7vw, 104px), calc((100vw - 1440px) / 2 + 104px));
  background:
    radial-gradient(circle at 8% 80%, rgba(214,169,88,.22), transparent 24rem),
    linear-gradient(120deg, #f7ece7, #efe0da);
}

.contact-form {
  border-top: 4px solid var(--berry);
  border-radius: 4px;
}

.page-hero {
  min-height: 640px;
}

.page-hero-copy {
  padding-left: clamp(24px, 9vw, 140px);
  padding-bottom: 90px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 92px);
  text-wrap: balance;
}

.gallery-grid {
  grid-template-columns: 1.15fr .85fr 1fr;
  grid-auto-rows: 260px;
  max-width: 1400px;
}

.gallery-grid img {
  height: 100%;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-row: span 2;
}

.gallery-grid img:hover {
  z-index: 2;
  transform: scale(1.018);
  box-shadow: var(--shadow-hover);
}

.rental-grid article {
  padding: 12px 12px 28px;
}

.rental-grid h3,
.rental-grid p {
  margin-inline: 12px;
}

.cta-panel {
  max-width: 1180px;
  margin-block: 80px;
  padding: clamp(70px, 9vw, 120px);
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(214,169,88,.28), transparent 22rem),
    #28171d;
}

.cta-panel p:not(.eyebrow) {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(255,255,255,.7);
}

.site-footer {
  padding-top: clamp(70px, 8vw, 100px);
}

/* Viewport reveal choreography */
.reveal > *,
.reveal .review-grid > *,
.reveal .rental-grid > *,
.reveal.gallery-grid > *,
.reveal .faq-list > * {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 750ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform 750ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}

.reveal.is-visible > *,
.reveal.is-visible .review-grid > *,
.reveal.is-visible .rental-grid > *,
.reveal.gallery-grid.is-visible > *,
.reveal.is-visible .faq-list > * {
  opacity: 1;
  transform: none;
}

@keyframes hero-settle {
  from { opacity: .65; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.02); }
}

@media (max-width: 900px) {
  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .trust-strip {
    width: calc(100% - 32px);
  }

  .trust-strip > div {
    padding: 20px 16px;
  }

  .section {
    padding-block: clamp(76px, 13vw, 110px);
  }

  .split.reverse {
    padding-inline: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid img:nth-child(n) {
    grid-row: auto;
  }

  .gallery-grid img:first-child {
    grid-row: span 2;
  }

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

  .service-tile {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  main,
  .section,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .section,
  .intro-grid,
  .split,
  .team-section,
  .contact,
  .faq {
    min-width: 0;
    overflow: hidden;
  }

  .section > *,
  .section-copy,
  .feature-card,
  .image-stack,
  .team-photo,
  .contact-copy,
  .contact-form,
  .faq-copy,
  .faq-list {
    min-width: 0;
    max-width: 100%;
  }

  .site-header {
    min-height: 74px;
  }

  .hero {
    min-height: calc(100svh - 74px);
    align-items: center;
  }

  .hero-content {
    width: 100%;
    padding: 38px 22px 34px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(38px, 10.2vw, 44px);
    line-height: .98;
  }

  .hero p:not(.eyebrow) {
    margin-block: 18px 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin: 16px auto 0;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(55, 28, 37, 0.1);
  }

  .trust-strip > div {
    min-height: 72px;
    gap: 14px;
    padding: 14px 20px;
  }

  .trust-strip strong {
    min-width: 42px;
    font-size: 24px;
  }

  .trust-strip span {
    font-size: 13px;
    line-height: 1.35;
  }

  .trust-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-card::before {
    inset: 10px 0 -10px 10px;
  }

  .intro-grid::before,
  .split.reverse::after {
    display: none;
  }

  .image-stack img:first-child {
    transform: none;
  }

  .image-stack img:last-child {
    transform: none;
  }

  .event-marquee {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .gallery-grid,
  .rental-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: min(110vw, 480px);
    grid-row: auto;
  }

  .cta-panel {
    width: calc(100% - 32px);
    margin-block: 32px 80px;
  }

  .page-hero {
    min-height: 570px;
  }
}

@media (max-width: 380px), (max-height: 720px) and (max-width: 640px) {
  .hero-content {
    padding-block: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.8vw, 40px);
  }

  .hero p:not(.eyebrow) {
    font-size: 14px;
  }

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

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