:root {
  --warm-white: #fbf7f1;
  --ivory: #f6efe6;
  --cream: #eadcc9;
  --wine: #7a263a;
  --wine-dark: #4c1720;
  --gold: #c8a45d;
  --sage: #8b9a7a;
  --charcoal: #252322;
  --muted: #6b625b;
  --line: #dfd0bf;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(37, 35, 34, 0.11);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(234, 220, 201, 0.32), rgba(251, 247, 241, 0) 420px),
    linear-gradient(90deg, rgba(139, 154, 122, 0.08), rgba(251, 247, 241, 0) 38%, rgba(200, 164, 93, 0.06)),
    var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.eyebrow {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
    var(--ivory);
}

.section.deep {
  background: var(--wine-dark);
  color: var(--warm-white);
}

.section-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 780px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.deep .lead,
.deep .eyebrow {
  color: rgba(251, 247, 241, 0.82);
}

.skip-link {
  background: var(--wine);
  color: var(--white);
  left: 1rem;
  padding: 0.65rem 1rem;
  position: absolute;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  background: var(--wine-dark);
  color: var(--warm-white);
  font-size: 0.86rem;
}

.topbar .container {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.45rem 0;
  text-align: center;
}

.site-header {
  background: rgba(255, 251, 245, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(37, 35, 34, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  line-height: 1.1;
  min-width: 245px;
}

.brand-logo {
  height: auto;
  width: 82px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand strong {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.brand span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  align-items: center;
  display: none;
  gap: 1.05rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  color: var(--charcoal);
  padding: 0.5rem 0;
}

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

.header-actions {
  align-items: center;
  display: none;
  gap: 0.8rem;
}

.phone-link {
  color: var(--wine-dark);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--wine-dark);
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
}

.menu-lines {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-lines span {
  background: var(--wine-dark);
  display: block;
  height: 2px;
}

.mobile-panel {
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  display: none;
  padding: 1rem 0 1.25rem;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 0.25rem;
}

.mobile-panel a {
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  padding: 0.9rem 0;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  justify-content: center;
  line-height: 1.15;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.btn-primary {
  background: var(--wine);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--wine-dark);
}

.btn-secondary {
  background: rgba(251, 247, 241, 0.92);
  border-color: var(--wine);
  color: var(--wine-dark);
}

.btn-secondary:hover {
  background: var(--cream);
}

.btn-light {
  background: var(--warm-white);
  color: var(--wine-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.hero {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

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

.hero::after {
  background: linear-gradient(90deg, rgba(37, 35, 34, 0.78), rgba(37, 35, 34, 0.35) 52%, rgba(37, 35, 34, 0.12));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--warm-white);
  display: grid;
  min-height: 620px;
  padding: 96px 0 54px;
  place-items: end start;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy p {
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  margin: 1.25rem 0 1.45rem;
  max-width: 690px;
}

.trust-line {
  color: rgba(251, 247, 241, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  text-transform: uppercase;
}

.page-hero {
  background: var(--wine-dark);
  color: var(--warm-white);
  display: grid;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

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

.page-hero::after {
  background: linear-gradient(90deg, rgba(37, 35, 34, 0.78), rgba(37, 35, 34, 0.28));
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero .container {
  align-content: end;
  display: grid;
  padding-bottom: 54px;
  padding-top: 90px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.12rem;
  margin-top: 1rem;
  max-width: 760px;
}

.quick-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.quick-item {
  background: var(--white);
  padding: 1.1rem;
}

.quick-item strong {
  color: var(--wine-dark);
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.quick-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

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

.card-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.feature {
  align-items: center;
  display: grid;
  gap: 2rem;
}

.feature.reverse .feature-media {
  order: -1;
}

.feature-media {
  display: grid;
  gap: 1rem;
}

.feature-media img,
.image-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-media img:first-child {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.feature-media.duo {
  grid-template-columns: 1fr 0.78fr;
}

.feature-media.duo img:nth-child(2) {
  align-self: end;
  aspect-ratio: 3 / 4;
  margin-top: 22%;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

.check-list.compact {
  font-size: 0.92rem;
  gap: 0.35rem;
  margin: 0.9rem 0 1.05rem;
}

.check-list.compact li {
  padding-left: 1.25rem;
}

.check-list.compact li::before {
  font-size: 1.2rem;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  color: var(--gold);
  content: "•";
  font-size: 1.6rem;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0.05rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.stat {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.stat strong {
  color: var(--wine-dark);
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  cursor: pointer;
  object-fit: cover;
  width: 100%;
}

.gallery-grid .wide {
  aspect-ratio: 2 / 1;
  grid-column: span 2;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
}

.filter-btn.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.testimonial p {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.35;
}

.testimonial cite {
  color: var(--muted);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 1rem;
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card .price {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0.65rem 0;
}

.price-list,
.rental-list {
  display: grid;
  gap: 0.55rem;
}

.price-list div,
.rental-list div {
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.72rem 0.85rem;
}

.price-list span,
.rental-list span {
  color: var(--charcoal);
  min-width: 0;
}

.price-list strong,
.rental-list strong {
  color: var(--wine-dark);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.rental-accordion {
  display: grid;
  gap: 0.85rem;
}

.rental-accordion details {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(37, 35, 34, 0.05);
}

.rental-accordion summary {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.rental-accordion .rental-list {
  margin-top: 1rem;
}

.video-grid {
  display: grid;
  gap: 1.15rem;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  width: 100%;
}

.note {
  background: #fff8ea;
  border: 1px solid #ead8a7;
  border-radius: var(--radius);
  color: #5d4c1a;
  padding: 1rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

label {
  color: var(--wine-dark);
  display: grid;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 0.35rem;
}

input,
select,
textarea {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--charcoal);
  font: inherit;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  color: var(--wine);
  display: none;
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

.location-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-embed {
  border: 0;
  height: 340px;
  width: 100%;
}

.site-footer {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo {
  background: rgba(251, 247, 241, 0.96);
  border: 1px solid rgba(200, 164, 93, 0.55);
  border-radius: 999px;
  margin-bottom: 1rem;
  max-width: 190px;
  padding: 0.35rem 0.6rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--warm-white);
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(251, 247, 241, 0.78);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 241, 0.16);
  color: rgba(251, 247, 241, 0.68);
  font-size: 0.8rem;
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  text-align: center;
}

.fred-credit {
  color: rgba(251, 247, 241, 0.68);
  display: inline-block;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sticky-mobile {
  background: rgba(251, 247, 241, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 0;
  padding: 0.55rem;
  position: fixed;
  right: 0;
  z-index: 60;
}

.sticky-mobile .btn {
  min-height: 44px;
  padding: 0.65rem 0.45rem;
}

.lightbox {
  align-items: center;
  background: rgba(37, 35, 34, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 1.2rem;
  position: fixed;
  z-index: 100;
}

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

.lightbox img {
  border-radius: var(--radius);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  background: var(--warm-white);
  border: 0;
  border-radius: 999px;
  color: var(--wine-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 44px;
  min-width: 44px;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.hero-copy {
  animation: heroRise 780ms ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

}

@media (min-width: 760px) {
  .section {
    padding: 96px 0;
  }

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

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

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

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

  .feature {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .feature.reverse .feature-media {
    order: 1;
  }

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

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

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

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

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

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

@media (min-width: 1060px) {
  .nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: 74px;
  }

  body > *,
  .site-header,
  main,
  footer,
  section,
  .hero,
  .page-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    width: calc(100% - 32px);
  }

  .topbar .container {
    display: block;
    font-size: 0.78rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-logo {
    width: 58px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand span {
    font-size: 0.58rem;
    letter-spacing: 0.07em;
  }

  .menu-toggle {
    flex: 0 0 auto;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .menu-lines {
    width: 16px;
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(37, 35, 34, 0.18), rgba(37, 35, 34, 0.82));
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .trust-line {
    font-size: 0.78rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .quick-item {
    min-width: 0;
    padding: 1rem 0.8rem;
  }

  .quick-item strong {
    font-size: 1.12rem;
  }

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

  .btn-row .btn {
    width: 100%;
  }

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

  .sticky-mobile .btn {
    font-size: 0.85rem;
    min-width: 0;
    white-space: nowrap;
  }

  .sticky-mobile .btn-primary {
    font-size: 0.82rem;
  }

  .gallery-grid,
  .grid,
  .feature,
  .footer-grid,
  .card,
  .form-panel,
  .location-box,
  .section-header {
    min-width: 0;
  }

  .lead,
  p {
    overflow-wrap: break-word;
  }

  .price-list div,
  .rental-list div {
    grid-template-columns: 1fr;
  }

  .price-list strong,
  .rental-list strong {
    text-align: left;
    white-space: normal;
  }
}

@media (min-width: 760px) {
  .sticky-mobile {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    margin-left: 16px;
    margin-right: 16px;
    width: min(calc(100% - 32px), 358px);
  }

  .hero-copy,
  .hero-copy p,
  .trust-line,
  h1 {
    max-width: 358px;
  }

  .sticky-mobile {
    right: auto;
    width: min(100%, 390px);
  }
}
