:root {
  color-scheme: light;
  --ink: #101510;
  --muted: #617061;
  --paper: #f7f8f3;
  --panel: #ffffff;
  --soft: #edf4e8;
  --line: rgba(16, 21, 16, 0.12);
  --green: #19d90d;
  --deep-green: #078506;
  --beige: #d9c8a9;
  --cream: #fffdf7;
  --black: #050805;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(16, 21, 16, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 0;
  box-shadow: none;
}

.brand span {
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--deep-green);
  color: white;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--deep-green);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  padding: 124px clamp(20px, 5vw, 72px) 150px;
  overflow: hidden;
  background: var(--black);
}

.hero-slideshow,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transform: scale(var(--slide-scale, 1.04));
  transition: opacity 950ms ease-in-out, transform 2200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  transform: scale(var(--active-scale, 1));
}

.hero-slide-photo {
  background-image: url("assets/brand/gunit-plus-exterior.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-slide-video {
  object-fit: cover;
  object-position: center 45%;
  --slide-scale: 1.18;
  --active-scale: 1.16;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 6, 0.42), rgba(6, 24, 6, 0.14) 48%, rgba(6, 24, 6, 0.34)),
    linear-gradient(0deg, rgba(5, 8, 5, 0.4), rgba(5, 8, 5, 0.08));
  transition: background 1100ms ease;
}

.hero.is-video-active .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.54), rgba(5, 8, 5, 0.3) 48%, rgba(5, 8, 5, 0.44)),
    linear-gradient(0deg, rgba(5, 8, 5, 0.5), rgba(5, 8, 5, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(183, 255, 174, 0.94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.54);
  transition: color 1100ms ease, text-shadow 1100ms ease;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 760px;
  font-size: clamp(2.4rem, 5.7vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-inline: auto;
  color: rgba(7, 133, 6, 0.82);
  max-width: 900px;
  font-size: clamp(2.35rem, 5.3vw, 4.8rem);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20pt;
  font-weight: 500;
  line-height: 1.1;
  text-transform: none;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.62);
  transition: color 1100ms ease, text-shadow 1100ms ease;
}

.hero h1 strong {
  color: #ffffff;
  font: inherit;
  display: block;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.66);
  transition: color 1100ms ease, text-shadow 1100ms ease;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.64);
  transition: color 1100ms ease, text-shadow 1100ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--deep-green);
  border-radius: 999px;
  background: var(--deep-green);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.primary {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: white;
}

.button.ghost {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: white;
}

.hero-actions .button:hover {
  transform: translateY(-3px);
  border-color: var(--black);
  background: var(--black);
  color: white;
}

.button:hover {
  border-color: var(--black);
  background: var(--black);
  color: white;
}

.rating-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 140px;
  width: min(430px, calc(100% - 40px));
  padding: 18px 22px;
  border: 1px solid rgba(7, 133, 6, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(16, 21, 16, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.rating-panel:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(16, 21, 16, 0.18);
}

.rating-panel p,
.rating-panel span {
  margin: 0;
  color: var(--muted);
}

.rating-panel p {
  font-weight: 900;
  text-transform: uppercase;
}

.rating-panel strong {
  display: block;
  margin: 3px 0;
  color: var(--deep-green);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1;
}

.rating-panel span {
  display: block;
  font-weight: 800;
}

.rating-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.rating-actions a {
  flex: 1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--deep-green);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.rating-actions a:nth-child(2) {
  background: var(--deep-green);
  color: white;
}

.rating-actions a:hover {
  transform: translateY(-2px);
  background: var(--black);
  color: white;
}

.booking-bar {
  position: relative;
  z-index: 4;
  width: min(1240px, calc(100% - 40px));
  margin: -94px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(7, 133, 6, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(16, 21, 16, 0.16);
}

.booking-bar label {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.booking-bar span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-bar input,
.booking-bar select {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.booking-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--deep-green);
  font-weight: 800;
}

.booking-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 2px;
}

.booking-summary div,
.booking-summary p {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
}

.booking-summary div {
  display: grid;
  gap: 4px;
}

.booking-summary strong {
  color: var(--ink);
}

.booking-summary p {
  grid-column: 1 / -1;
  color: var(--muted);
}

.contact-strip {
  width: min(1240px, calc(100% - 40px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-strip a,
.room-card,
.tool-card,
.offer-grid article,
.hours-list div,
.amenity-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(16, 21, 16, 0.06);
}

.contact-strip a {
  display: grid;
  gap: 4px;
  padding: 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.contact-strip span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-strip strong {
  font-size: 1.15rem;
}

.contact-strip a:hover,
.room-card.is-selected {
  border-color: rgba(7, 133, 6, 0.55);
}

.contact-strip a:hover {
  transform: translateY(-3px);
  background: var(--deep-green);
  color: white;
}

.contact-strip a:hover span,
.contact-strip a:hover strong {
  color: white;
}

.section {
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin-bottom: 34px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.room-card {
  overflow: hidden;
  display: grid;
}

.room-card.featured {
  border-color: rgba(7, 133, 6, 0.42);
  background: linear-gradient(180deg, rgba(25, 217, 13, 0.1), rgba(255, 255, 255, 1));
}

.room-info {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 22px;
}

.room-info span,
.room-info p {
  color: var(--muted);
}

.room-info span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.room-info h3 {
  color: var(--deep-green);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
}

.room-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
}

.room-info li {
  padding: 7px 10px;
  border: 1px solid rgba(7, 133, 6, 0.16);
  border-radius: 999px;
  background: var(--soft);
  color: #304030;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.room-info li:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 133, 6, 0.36);
  background: rgba(25, 217, 13, 0.14);
}

.room-info button {
  align-self: end;
  justify-self: start;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--deep-green);
  border-radius: 999px;
  background: var(--deep-green);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.room-info button:hover {
  transform: translateY(-2px);
  border-color: var(--black);
  background: var(--black);
}

.amenities-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 540px);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: linear-gradient(90deg, rgba(25, 217, 13, 0.12), rgba(255, 255, 255, 0)), var(--cream);
  border-block: 1px solid var(--line);
}

.amenities-copy p:last-child,
.location-copy p:not(.eyebrow),
.dining-feature p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.amenity-list {
  display: grid;
  gap: 12px;
}

.amenity-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 20px;
}

.amenity-list strong {
  color: var(--deep-green);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.amenity-list span {
  max-width: 190px;
  color: var(--muted);
  text-align: right;
}

.venue-section {
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.venue-intro {
  max-width: 880px;
  margin: -12px 0 30px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.venue-grid article {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 21, 16, 0.06);
}

.venue-grid article:nth-child(1),
.venue-grid article:nth-child(4) {
  background: linear-gradient(180deg, rgba(25, 217, 13, 0.09), rgba(255, 255, 255, 0.96)), white;
}

.venue-grid span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--deep-green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-grid h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.14;
}

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

.venue-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 133, 6, 0.18);
  border-radius: 8px;
  background: var(--cream);
}

.venue-cta p {
  flex: 1 1 360px;
  margin: 0;
  color: var(--muted);
}

.dining-section {
  background: var(--paper);
}

.dining-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
}

.dining-feature {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(16, 21, 16, 0.72), rgba(16, 21, 16, 0.12)),
    url("assets/brand/gunit-plus-exterior.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
}

.dining-feature span {
  color: #b7ffae;
  font-weight: 900;
  text-transform: uppercase;
}

.dining-feature p {
  color: rgba(255, 255, 255, 0.86);
}

.hours-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 22px;
}

.hours-list span {
  color: var(--muted);
}

.location-section {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
}

.location-copy {
  display: grid;
  align-content: center;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.offers-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--deep-green);
  color: white;
}

.offers-section .eyebrow {
  color: #b7ffae;
}

.offer-grid {
  display: grid;
  gap: 12px;
}

.offer-grid article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.offer-grid span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.interactive-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.tool-card {
  padding: clamp(22px, 4vw, 34px);
}

.availability-list,
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.availability-list div,
.faq-list button {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
}

.availability-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.availability-list small {
  display: block;
  color: var(--muted);
}

.availability-list strong {
  color: var(--deep-green);
}

.faq-list button {
  display: grid;
  gap: 10px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.faq-list button:hover {
  transform: translateY(-2px);
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: white;
}

.faq-list button:hover span {
  color: rgba(255, 255, 255, 0.86);
}

.faq-list span {
  display: none;
  color: var(--muted);
  font-weight: 400;
}

.faq-list button[aria-expanded="true"] {
  border-color: rgba(7, 133, 6, 0.48);
}

.faq-list button[aria-expanded="true"] span {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer nav a {
  padding: 8px 12px;
  border-radius: 999px;
}

.site-footer nav a:hover {
  background: var(--deep-green);
  color: white;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(255, 253, 247, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

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

  .hero {
    min-height: 86svh;
    padding-bottom: 120px;
  }

  .rating-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 22px;
    border-radius: 28px;
  }

  .booking-bar,
  .booking-summary,
  .contact-strip,
  .room-grid,
  .venue-grid,
  .amenities-section,
  .dining-layout,
  .location-section,
  .offers-section,
  .interactive-section {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    margin-top: -80px;
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 160px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .hero h1 span {
    font-size: 20pt;
  }

  .room-visual {
    min-height: 250px;
  }

  .venue-grid article {
    min-height: 220px;
  }

  .venue-cta .button {
    width: 100%;
  }

  .hours-list div,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
