:root {
  --ink: #101010;
  --charcoal: #191817;
  --muted: #6f6a62;
  --line: rgba(16, 16, 16, 0.12);
  --ivory: #f7f4ee;
  --paper: #fffdf8;
  --gold: #b99558;
  --gold-dark: #8c6a34;
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.16);
  --font-display:    'Cormorant Garamond', Georgia, serif;
      --font-body:       'Inter', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: var(--font-body);   
}

/*body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}*/

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}


.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-image {
  object-position: center 22%;
  transform: scale(1.04);
  animation: heroSettle 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78));
}

.hero-content {
  padding-bottom: clamp(4rem, 9vw, 8rem);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.35rem;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 0.85rem;
  background: rgba(255, 255, 255, 0.36);
}

.section-space {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-title {
  margin: 0;
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.bio-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  background: rgba(255, 253, 248, 0.92);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.stat-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow);
}

.portfolio-section {
  color: #fff;
  /*background: var(--charcoal);*/
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.portfolio-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
}

.gallery-item {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #24211d;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.22);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 710px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  transition: opacity 0.35s ease;
}

.gallery-actions {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.gallery-buttons {
  display: flex;
  gap: 0.5rem;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.06);
  filter: saturate(0.92);
}

.gallery-item:hover::before,
.gallery-item:focus-within::before,
.gallery-item:hover .gallery-actions,
.gallery-item:focus-within .gallery-actions {
  opacity: 1;
  transform: translateY(0);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 16, 16, 0.5);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.icon-button:hover,
.icon-button:focus {
  color: #fff;
  border-color: var(--gold);
  background: rgba(185, 149, 88, 0.88);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.related-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.related-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7));
}

.related-card div {
  position: absolute;
  inset: auto 1.35rem 1.25rem;
  z-index: 1;
  color: #fff;
}

.related-card strong,
.related-card span {
  display: block;
}

.related-card strong {
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-size: 1.55rem;
  font-weight: 400;
}

.related-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-card:hover img {
  transform: scale(1.05);
}

.booking-section {
  padding: 0 0 clamp(5rem, 9vw, 8rem);
  background: var(--paper);
}

.booking-panel {
  padding: clamp(2.4rem, 6vw, 5.4rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.86), rgba(16, 16, 16, 0.64)),
    url("https://images.unsplash.com/photo-1509631179647-0177331693ae?auto=format&fit=crop&w=1500&q=75") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  max-width: 760px;
  margin: 0 0 2rem;
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-luxury {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.btn-outline-luxury {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(255, 255, 255, 0.66);
  background: #0d0d0d;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-size: 1.3rem;
  font-weight: 400;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 5rem clamp(1rem, 4vw, 4rem);
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 5, 5, 0.94);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-stage {
  max-width: min(1180px, 86vw);
  max-height: 82vh;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.lightbox-stage img {
  max-height: 76vh;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.78);
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-size: 1.1rem;
}

.lightbox-close,
.lightbox-download {
  position: absolute;
  top: 1.3rem;
}

.lightbox-close {
  right: 1.3rem;
}

.lightbox-download {
  right: 4.7rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1.3rem;
}

.lightbox-next {
  right: 1.3rem;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-prev:focus,
.lightbox-next:focus {
  transform: translateY(-50%) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


#booking-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;;  
    
}





@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 86vh;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .hero-meta {
    display: grid;
  }

  .hero-meta span::after {
    display: none;
  }

  .section-title {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
  }

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

  .stat-card {
    min-height: 126px;
  }

  .gallery-item,
  .gallery-item.tall {
    min-height: 520px;
  }

  .gallery-actions {
    opacity: 1;
    transform: none;
  }

  .lightbox {
    padding: 5rem 1rem 3rem;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 1.2rem;
  }

  .lightbox-prev {
    left: calc(50% - 4rem);
  }

  .lightbox-next {
    right: calc(50% - 4rem);
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
