:root {
  --ink: #1f2426;
  --muted: #637075;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #dde5e1;
  --teal: #0f766e;
  --teal-dark: #0a4f4a;
  --coral: #d95438;
  --sun: #f4b84d;
  --blue: #2c70b8;
  --green: #4d8a62;
  --shadow: 0 24px 70px rgba(20, 35, 36, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(20, 35, 36, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: var(--radius);
}

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: var(--teal);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle svg,
.button svg,
.text-link svg,
.highlight-band svg,
.amenity-grid svg,
.nearby-list svg,
.contact-card svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  background-image: url("assets/property/wins-04.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 22, 24, 0.88) 0%, rgba(13, 22, 24, 0.54) 42%, rgba(13, 22, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 22, 24, 0.72) 0%, rgba(13, 22, 24, 0.04) 48%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

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

.hero .eyebrow {
  color: var(--sun);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.8rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.booking-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-strip div {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.booking-strip div:last-child {
  border-right: 0;
}

.booking-strip strong {
  color: var(--teal);
  font-size: 1.4rem;
}

.booking-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-pad {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid,
.location-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.intro-copy p:last-child,
.feature-copy p:last-child,
.location-copy p:last-child {
  margin-bottom: 0;
}

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

.highlight-band article {
  min-height: 260px;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.highlight-band svg {
  color: var(--coral);
  margin-bottom: 22px;
}

.highlight-band p {
  color: var(--muted);
  line-height: 1.7;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title-row h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
  white-space: nowrap;
}

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

.room-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 35, 36, 0.08);
}

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

.room-card div {
  padding: 24px;
}

.room-card p {
  color: var(--muted);
  line-height: 1.7;
}

.room-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.room-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.room-card li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.amenities-section {
  border-top: 1px solid var(--line);
}

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

.amenity-grid article {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.amenity-grid svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: #13302f;
  color: var(--white);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: 72px max(24px, calc((100vw - var(--max)) / 2)) 72px 64px;
}

.feature-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stats span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
}

.mini-stats strong {
  display: block;
  color: var(--sun);
  font-size: 1.34rem;
  margin-bottom: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.gallery-large {
  grid-row: span 2;
}

.location-section {
  align-items: center;
  border-top: 1px solid var(--line);
}

.location-copy p {
  color: var(--muted);
  line-height: 1.8;
}

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

.nearby-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.nearby-list svg {
  color: var(--coral);
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    #eef7f3;
  background-size: 42px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-path {
  position: absolute;
  height: 20px;
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.15);
  box-shadow: 0 10px 24px rgba(20, 35, 36, 0.08);
}

.map-path-one {
  width: 92%;
  left: -8%;
  top: 24%;
  transform: rotate(-18deg);
}

.map-path-two {
  width: 70%;
  right: -18%;
  top: 54%;
  transform: rotate(24deg);
}

.map-path-three {
  width: 76%;
  left: 12%;
  bottom: 18%;
  transform: rotate(-2deg);
}

.map-pin-card {
  position: absolute;
  left: 50%;
  top: 44%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(217, 84, 56, 0.28);
  transform: translate(-50%, -50%);
}

.map-pin-card svg {
  width: 30px;
  height: 30px;
}

.map-label {
  position: absolute;
  left: 50%;
  top: calc(44% + 54px);
  display: grid;
  gap: 4px;
  min-width: 250px;
  padding: 16px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 35, 36, 0.14);
  transform: translateX(-50%);
}

.map-label span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding: 48px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.contact-actions {
  align-content: start;
}

.contact-card {
  display: flex;
  width: calc(50% - 6px);
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-card:hover,
.contact-card:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.contact-card svg {
  color: var(--sun);
  flex: 0 0 auto;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 32px;
  align-items: start;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: #102322;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.footer-links a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  background: var(--sun);
  outline: none;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 14, 15, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1024px);
  max-height: 86svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  cursor: pointer;
}

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

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

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

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: 78svh;
  }

  .booking-strip,
  .highlight-band,
  .room-grid,
  .amenity-grid,
  .split-feature,
  .intro-grid,
  .location-section,
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .booking-strip div:nth-child(2) {
    border-right: 0;
  }

  .booking-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .room-grid {
    gap: 16px;
  }

  .room-card:last-child,
  .contact-panel > div:first-child {
    grid-column: 1 / -1;
  }

  .feature-copy {
    padding: 48px 24px;
  }

  .mini-stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-large {
    grid-row: span 1;
  }

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

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

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

  .site-nav {
    inset: 68px 12px auto 12px;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 22, 24, 0.92) 0%, rgba(13, 22, 24, 0.52) 58%, rgba(13, 22, 24, 0.2) 100%);
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 126px 0 52px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .booking-strip {
    width: calc(100% - 24px);
    margin-top: -22px;
  }

  .booking-strip,
  .highlight-band,
  .room-grid,
  .amenity-grid,
  .split-feature,
  .intro-grid,
  .location-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .booking-strip div {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-strip div:last-child {
    border-bottom: 0;
  }

  .section-pad {
    width: calc(100% - 32px);
    padding: 70px 0;
  }

  .section-title-row {
    display: block;
  }

  .text-link {
    margin-top: 18px;
  }

  .highlight-band article {
    min-height: auto;
    padding: 34px 16px;
  }

  .feature-image img {
    min-height: 320px;
  }

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

  .map-card {
    min-height: 360px;
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-card {
    width: 100%;
  }
}
