:root {
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-tertiary: #777777;
  --harbour-green: #183f3a;
  --crest-clay: #ad7654;
  --crest-clay-dark: #915f43;
  --weathered-tan: #d8c3aa;
  --mist: #f4f0eb;
  --ivory: #fffaf3;
  --tide-blue: #315f67;
  --line: rgba(51, 51, 51, 0.14);
  --shadow-soft: 0 16px 40px rgba(24, 63, 58, 0.12);
  --shadow-lift: 0 24px 70px rgba(24, 63, 58, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.625;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #2f7e86;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

p {
  color: var(--text-secondary);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--harbour-green);
  color: var(--ivory);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 28px;
}

.brand img {
  width: 112px;
  height: auto;
}

.primary-nav,
.header-actions,
.hero-actions,
.booking-links,
.final-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.primary-nav a,
.phone-link,
.booking-links a,
.text-card a,
.site-footer a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a {
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-nav a:hover,
.site-footer a:hover,
.text-card a:hover {
  text-decoration: underline;
}

.phone-link {
  color: var(--harbour-green);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--crest-clay);
  color: white;
}

.button-primary:hover {
  background: var(--crest-clay-dark);
}

.button-secondary {
  border-color: var(--crest-clay);
  background: transparent;
  color: var(--crest-clay-dark);
}

.button-ghost {
  border-color: rgba(255, 250, 243, 0.72);
  color: var(--ivory);
}

.button-ghost.dark {
  border-color: rgba(255, 250, 243, 0.5);
}

.button-large {
  min-height: 52px;
  padding: 15px 22px;
  font-size: 15px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(24px, 1fr) minmax(0, 1180px) minmax(24px, 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--harbour-green);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 31, 29, 0.82) 0%, rgba(18, 31, 29, 0.45) 46%, rgba(18, 31, 29, 0.1) 100%),
    linear-gradient(0deg, rgba(24, 63, 58, 0.82) 0%, rgba(24, 63, 58, 0) 50%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crest-watermark {
  position: absolute;
  top: 6%;
  left: -2%;
  z-index: 2;
  color: rgba(255, 250, 243, 0.28);
  font-family: var(--display);
  font-size: clamp(280px, 42vw, 640px);
  font-style: italic;
  line-height: 0.75;
  pointer-events: none;
}

.hero-content {
  grid-column: 2;
  width: min(760px, 100%);
  padding: 120px 0 160px;
}

.hero-content h1,
.hero-content p {
  color: var(--ivory);
}

.hero-copy {
  max-width: 620px;
  margin-top: 20px;
  color: #eadfd2;
  font-size: 18px;
  line-height: 30px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 32px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--crest-clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 18px;
  text-transform: uppercase;
}

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

.booking-panel {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  width: min(388px, calc(100vw - 56px));
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow-lift);
  padding: 24px;
}

.booking-panel h2 {
  font-size: 24px;
  line-height: 32px;
}

.booking-panel p {
  margin-top: 10px;
}

.booking-links {
  margin-top: 20px;
  flex-wrap: wrap;
}

.booking-links a {
  color: var(--tide-blue);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--weathered-tan);
}

.trust-strip div {
  background: var(--ivory);
  padding: 24px 28px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: var(--display);
  font-size: 24px;
  line-height: 32px;
}

.trust-strip span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 28px;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

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

.section-heading p:not(.section-kicker) {
  margin-top: 12px;
}

.section-heading.compact {
  max-width: 620px;
}

.card-grid,
.text-card-grid,
.review-grid,
.destination-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.image-card,
.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--harbour-green);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.image-card img,
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.image-card::after,
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 31, 29, 0.78), rgba(18, 31, 29, 0.05) 62%);
}

.image-card:hover img,
.destination-card:hover img {
  transform: scale(1.035);
}

.image-card span,
.destination-card span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--ivory);
}

.image-card strong,
.destination-card span {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: 32px;
}

.image-card small {
  display: block;
  margin-top: 4px;
  color: #dfd0bf;
  font-size: 14px;
  line-height: 22px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  background: var(--harbour-green);
}

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

.feature-content {
  align-self: center;
  padding: 72px clamp(28px, 6vw, 88px);
}

.feature-content h2,
.feature-content p {
  color: var(--ivory);
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #eadfd2;
  list-style: none;
}

.amenity-list li {
  position: relative;
  padding-left: 22px;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--weathered-tan);
  transform: rotate(45deg);
}

.dining-section {
  max-width: 1240px;
}

.split {
  gap: 48px;
}

.split-copy {
  padding: 16px 0;
}

.split-copy p:not(.section-kicker) {
  max-width: 62ch;
  margin: 16px 0 24px;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

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

.service-section {
  padding-top: 40px;
}

.text-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  padding: 28px;
}

.text-card p {
  margin: 12px 0 20px;
}

.text-card a {
  color: var(--tide-blue);
}

.destination-grid {
  padding: 88px 28px;
  background: #e7ddd1;
}

.destination-grid .section-heading,
.destination-cards {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.destination-card {
  min-height: 420px;
}

.reviews-section {
  background: var(--mist);
}

.review-card {
  position: relative;
  margin: 0;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 24px;
  color: rgba(173, 118, 84, 0.18);
  font-family: var(--display);
  font-size: 96px;
  line-height: 1;
}

.review-card blockquote {
  position: relative;
  margin: 0;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: 19px;
  line-height: 30px;
}

.review-card figcaption {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.review-card span {
  color: var(--crest-clay-dark);
  white-space: nowrap;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 88px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 63, 58, 0.96), rgba(49, 95, 103, 0.9)),
    var(--harbour-green);
  box-shadow: var(--shadow-lift);
  padding: 48px;
}

.final-cta h2,
.final-cta p {
  color: var(--ivory);
}

.final-cta p:not(.section-kicker) {
  margin-top: 12px;
  color: #d9cabb;
}

.final-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.phone-link.light {
  color: var(--ivory);
}

.site-footer {
  background: #2b211c;
  color: var(--ivory);
  padding: 56px 28px 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.9fr) minmax(140px, 0.6fr) minmax(140px, 0.6fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.site-footer p,
.site-footer address,
.site-footer a,
.footer-bottom {
  color: #d9cabb;
  font-size: 13px;
  font-style: normal;
  line-height: 22px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1180px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 250, 243, 0.18);
  padding-top: 20px;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 96px 0 260px;
  }

  .booking-panel {
    left: 28px;
    right: 28px;
    bottom: 32px;
    width: auto;
  }

  .trust-strip,
  .card-grid,
  .text-card-grid,
  .review-grid,
  .destination-cards,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split,
  .feature-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
  }

  .header-inner {
    gap: 12px;
    padding: 10px 18px;
  }

  .brand img {
    width: 82px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .phone-link {
    display: none;
  }

  .primary-nav {
    gap: 8px;
  }

  .primary-nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    background: white;
  }

  .hero {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
  }

  .hero-content {
    padding: 72px 0 308px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
  }

  .booking-panel {
    right: 18px;
    bottom: 20px;
    left: 18px;
    padding: 20px;
  }

  .booking-panel h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .trust-strip,
  .card-grid,
  .text-card-grid,
  .review-grid,
  .destination-cards,
  .footer-grid,
  .amenity-list {
    grid-template-columns: 1fr;
  }

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

  .section,
  .destination-grid {
    padding: 64px 18px;
  }

  .intro-grid,
  .split {
    gap: 28px;
  }

  .image-card,
  .destination-card {
    min-height: 300px;
  }

  .feature-content {
    padding: 56px 18px;
  }

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

  .final-cta {
    margin: 0 18px 64px;
    padding: 32px 22px;
  }

  .final-actions,
  .booking-links {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 250, 243, 0.24);
    background: var(--harbour-green);
  }

  .mobile-sticky a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-sticky a + a {
    background: var(--crest-clay);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
