:root {
  color-scheme: light;
  --bg: #eef2ff;
  --bg-soft: #ffffff;
  --panel: rgba(255,255,255,0.92);
  --panel-strong: rgba(249,250,252,0.95);
  --text: #0f172a;
  --muted: #475569;
  --accent: #1d4ed8;
  --border: rgba(15,23,42,0.08);
  --radius: 24px;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(59,130,246,0.10), transparent 20%), linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  color: var(--text);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

/* .site-shell {
  padding: 2rem 0 3rem;
} */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  width: 100%;
  background-image: url('images/gurnard.jpg');
  background-size: cover; 
  background-position: center 50%;
  background-repeat: no-repeat;

}



.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-eyebrow {
  margin: 0;
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

@media (min-width: 980px) {
  .hero-eyebrow {
    font-size: 10rem;
  }
}

.hero-content {
  color: rgba(255, 255, 255, 0.8);
}

.hero-copy-block {
  padding: 2rem 0;
}

.hero-copy-block .section-heading h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  margin-bottom: 1rem;
}



.hero-content {
  padding: 0;
  text-align: center;
}

.hero-content h1 {
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.eyebrow,
.section-tag {
  margin: 0 0 1rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.98);
}

.button-secondary {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.24);
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(8, 33, 82, 0.35), transparent 52%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.section-block,
.gallery-section,
.booking {
  padding: 2rem 0;
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.site-shell > section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.95);
}

.site-shell > section:nth-of-type(even) {
  background: rgba(241, 245, 255, 0.8);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.5rem;
}



.summary-grid,
.amenities-grid,
.local-info,
.booking-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.amenities-grid article,
.booking-grid > div,
.local-info > div {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.gallery-section {
  /* width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 0;
  box-sizing: border-box; */
}

.gallery-section > .section-heading,
.gallery-section .gallery-grid {
  box-sizing: border-box;
  margin: 1.5rem 0;
}

.gallery-grid {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figure a {
  display: block;
  cursor: zoom-in;
}

.gallery-grid figcaption {
  /* margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem; */
  display: none;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.lightbox:target {
  display: flex;
  flex-direction: column;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 1rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox p {
  margin: 1rem auto 0;
  color: #fff;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  text-decoration: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,1);
}





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

.booking-grid strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.site-footer {
  margin-top: 2.5rem;
  padding: 2.5rem 0;
  background: #0f172a;
  color: #e2e8f0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 1rem;
}

.site-footer p {
  color: #e2e8f0;
}

.back-to-top {
  align-self: flex-end;
  margin-top: 1rem;
}

.back-to-top a {
  color: var(--accent);
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}




@media (min-width:1200px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;

  }


  .hero-inner {
    padding: 0;
  }
  .hero-eyebrow {
    font-size: 12vw;
    line-height: 0.85;
  }

}

@media (min-width: 721px) {
  .lightbox-nav {
    display: inline-flex;
  }
}


@media (min-width: 980px) {
  .section-block,
  .gallery-section,
  .booking {
    padding: 4rem 0;
  }

  .hero-copy-block {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

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

.summary-grid,
  .amenities-grid,
  .local-info,
  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gallery-grid img{
    aspect-ratio: 4 / 3;
     object-fit: cover;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100%, calc(100% - 1.5rem));
  }

  .hero {
    min-height: 360px;
  }

  .hero-inner {
    padding: 2rem 0;
  }

  .hero-eyebrow {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .summary-grid,
  .amenities-grid,
  .local-info,
  .booking-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
    .back-to-top {
    align-self: center;
    text-align: center;
    margin-top: 1rem;
  }
    .lightbox {
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
  }

  .lightbox img {
    max-height: 65vh;
    width: auto;
  }
  .hero {
    background-attachment: scroll;
    background-position: center 50% !important;
  }
}




