:root {
  --ink: #22201b;
  --muted: #6f675c;
  --paper: #fffaf2;
  --soft: #f4ead8;
  --line: #decdb2;
  --green: #0f5c4c;
  --green-dark: #0b3e35;
  --coral: #d84e3a;
  --gold: #c8953d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(41, 31, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero {
  min-height: 94vh;
  padding: 22px clamp(18px, 4vw, 58px) 64px;
  background:
    linear-gradient(105deg, rgba(15, 92, 76, 0.93) 0%, rgba(15, 92, 76, 0.75) 42%, rgba(216, 78, 58, 0.08) 72%),
    url("assets/02-_dsc0207-copy-20200518140440.jpg") center/cover;
  color: var(--white);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 62, 53, 0.28);
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.hero-grid {
  max-width: 1160px;
  min-height: calc(94vh - 90px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.15;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

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

.btn.primary:hover,
.card-cta:hover,
.sticky-contact a:first-child:hover {
  background: #bd3f2e;
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn.light {
  color: var(--white);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.quick-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.quick-stats dt {
  font-size: 28px;
  font-weight: 800;
}

.quick-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
}

.hero-photo {
  height: min(62vh, 560px);
  margin: 0;
  border: 10px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 68px clamp(18px, 4vw, 28px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.intro h2 {
  max-width: 560px;
}

.intro > p,
.section-head + p {
  color: var(--muted);
}

.intro > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 20px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.room-card,
.service-grid article,
.review-grid blockquote,
.reason-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(72, 53, 27, 0.08);
}

.room-card,
.service-grid article {
  display: flex;
  flex-direction: column;
}

.room-card img,
.service-grid img {
  height: 260px;
}

.room-card div,
.service-grid article {
  padding: 22px;
}

.room-card div,
.service-grid article > p {
  flex: 1;
}

.price {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green-dark);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.room-card p:not(.price),
.service-grid p,
.reason-grid p,
blockquote p {
  color: var(--muted);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.reasons {
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2 + 28px));
  padding-right: max(18px, calc((100vw - 1160px) / 2 + 28px));
  background: var(--green-dark);
  color: var(--white);
}

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

.reason-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.reason-grid span {
  color: var(--gold);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

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

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

.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  aspect-ratio: 1;
  height: auto;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(6) img {
  aspect-ratio: 2 / 1;
}

.reviews {
  padding-top: 18px;
}

blockquote {
  margin: 0;
  padding: 26px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-photo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 3px solid var(--soft);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(72, 53, 27, 0.14);
}

.review-meta {
  min-width: 0;
  flex: 1;
}

.review-source {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.review-source.facebook {
  background: #dfe8ff;
  color: #244c9f;
}

.review-source.google {
  background: #d8eadf;
  color: #164d3d;
}

.review-source.booking {
  background: #e0e9ff;
  color: #153f89;
}

.stars {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

cite {
  display: block;
  color: var(--green);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.services {
  padding-top: 42px;
}

.service-grid article {
  min-width: 0;
  padding: 0 0 20px;
  border-radius: 8px;
  overflow: hidden;
}

.service-grid img {
  height: 190px;
}

.service-grid h3,
.service-grid p {
  padding: 0 22px;
}

.service-grid h3 {
  margin-top: 18px;
  font-size: clamp(22px, 2vw, 30px);
}

.service-grid p {
  margin-bottom: 18px;
}

.service-grid .card-cta {
  width: calc(100% - 44px);
  margin-top: auto;
  margin-left: 22px;
  margin-right: 22px;
}

.location {
  padding-top: 34px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.map-card {
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.location-notes {
  display: grid;
  gap: 12px;
}

.location-notes article {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.location-notes h3 {
  margin-bottom: 4px;
}

.location-notes p {
  margin-bottom: 0;
  color: var(--muted);
}

.pin {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.pin.beach {
  background: var(--green);
}

.pin.bridge {
  background: var(--gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 62px clamp(14px, 4vw, 64px);
  background: rgba(10, 16, 14, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(1060px, 100%);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.lightbox-counter {
  position: absolute;
  top: 22px;
  left: 22px;
  min-width: 54px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(10px);
}

.lightbox-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  max-width: min(78vw, 360px);
  transform: translateX(-50%);
  gap: 9px;
}

.lightbox-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.lightbox-dot.active {
  width: 24px;
  background: var(--white);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 42px;
  line-height: 0.8;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.sticky-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 -14px 36px rgba(41, 31, 18, 0.2), 0 -2px 0 rgba(222, 205, 178, 0.55);
  backdrop-filter: blur(14px);
}

.sticky-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.phone-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.chat-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-9 9H7V9h4v2zm6 0h-4V9h4v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-9 9H7V9h4v2zm6 0h-4V9h4v2z'/%3E%3C/svg%3E");
}

.sticky-contact a:first-child {
  background: var(--coral);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 54px max(18px, calc((100vw - 1160px) / 2 + 28px));
  background: var(--green);
  color: var(--white);
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer h2 {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .hero-grid,
  .intro,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(40px, 10vw, 58px);
  }

  .hero-photo {
    height: 360px;
  }

  .rooms,
  .service-grid,
  .review-grid,
  .reason-grid,
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px;
  }

  .quick-stats,
  .rooms,
  .service-grid,
  .review-grid,
  .reason-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 74px;
  }

  .sticky-contact {
    display: grid;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-photo {
    height: 300px;
  }

  .intro > p {
    font-size: 17px;
  }

  .map-card,
  .map-card iframe {
    min-height: 330px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 58px;
    width: 54px;
    height: 54px;
  }

  .lightbox-dots {
    bottom: 24px;
  }

  .lightbox-counter {
    top: 20px;
    left: 18px;
  }
}
