:root {
  --ink: #f7efe9;
  --muted: #cbb9b8;
  --blood: #9d1f38;
  --blood-bright: #ce2e4e;
  --wine: #3a0715;
  --black: #070507;
  --panel: #130e11;
  --panel-2: #1b1317;
  --line: rgba(247, 239, 233, 0.16);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(7, 5, 7, 0.92), rgba(7, 5, 7, 0.35));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 239, 233, 0.08);
}

.brand,
h1,
h2,
h3 {
  font-family: Cinzel, Georgia, serif;
}

.brand {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--ink);
}

.page-main {
  padding-top: 70px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.86) contrast(1.08) brightness(0.78);
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, transparent 0, rgba(7, 5, 7, 0.2) 31%, rgba(7, 5, 7, 0.88) 72%),
    linear-gradient(90deg, rgba(7, 5, 7, 0.92) 0%, rgba(7, 5, 7, 0.55) 42%, rgba(7, 5, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 5, 7, 0.16), rgba(7, 5, 7, 0.94));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(70px, 10vw, 118px) clamp(18px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blood-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 22px 42px var(--shadow);
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.reservation-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--blood);
  border-color: var(--blood-bright);
  color: #fff;
  box-shadow: 0 16px 36px rgba(157, 31, 56, 0.24);
}

.button.ghost {
  background: rgba(7, 5, 7, 0.46);
  color: var(--ink);
}

.band {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 6vw, 76px);
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: clamp(96px, 14vw, 170px) clamp(18px, 8vw, 112px) clamp(52px, 8vw, 86px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 5, 7, 0.94), rgba(7, 5, 7, 0.54)),
    var(--page-hero-image) center / cover;
}

.page-hero > div {
  width: min(760px, 100%);
}

.about-hero {
  --page-hero-image: url("images/about.jpg");
}

.services-hero {
  --page-hero-image: url("images/DSC_8268.jpg");
}

.photos-hero {
  --page-hero-image: url("images/c9Sl67q5.jpg");
}

.duo-hero {
  --page-hero-image: url("images/duo/Glisten/tiff_01.jpg");
}

.home-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, #090609, #150b0f);
  border-top: 1px solid var(--line);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 6vw, 96px);
  background: linear-gradient(180deg, #090609, #150b0f);
  border-top: 1px solid var(--line);
}

.section-copy p:not(.eyebrow),
.reserve-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  align-content: center;
}

.feature-list div {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.15rem;
}

.feature-list span {
  margin-top: 5px;
  color: var(--muted);
}

.services {
  background:
    linear-gradient(rgba(7, 5, 7, 0.84), rgba(7, 5, 7, 0.94)),
    url("images/DSC_8337 (1).jpg") center 34% / cover fixed;
}

.duo-list {
  display: grid;
  gap: clamp(44px, 7vw, 86px);
  background: linear-gradient(180deg, #090609, #150b0f);
}

.duo-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding-bottom: clamp(44px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.duo-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.duo-section:nth-child(even) .duo-copy {
  order: 2;
}

.duo-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.duo-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.duo-copy .button {
  width: fit-content;
  margin-top: 4px;
}

.duo-gallery {
  columns: 3 170px;
  column-gap: 10px;
}

.duo-gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 10px;
  break-inside: avoid;
  border: 1px solid rgba(247, 239, 233, 0.1);
  background: var(--panel);
  filter: saturate(0.92) contrast(1.04);
}

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

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

.services-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.services-note p {
  margin: 0;
}

.services-note p:not(.eyebrow) {
  color: var(--ink);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(19, 14, 17, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.service-card.wide {
  grid-column: span 2;
}

.service-card span {
  color: var(--blood-bright);
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1fr;
  min-height: 380px;
  border-block: 1px solid var(--line);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) saturate(0.92);
}

.photo-strip img:nth-child(2) {
  border-inline: 1px solid var(--line);
}

.gallery {
  background: #0a0709;
}

.gallery-grid {
  columns: 4 230px;
  column-gap: 12px;
}

.gallery-item {
  width: 100%;
  display: block;
  margin: 0 0 12px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(247, 239, 233, 0.1);
  background: var(--panel);
  color: inherit;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  background: var(--panel);
  filter: saturate(0.92) contrast(1.04);
  transition: filter 180ms ease, transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1) contrast(1.08) brightness(1.06);
  transform: scale(1.025);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(5, 4, 5, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: 86svh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(7, 5, 7, 0.74);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 70px;
  transform: translateY(-50%);
  font-size: 3.25rem;
  background: rgba(7, 5, 7, 0.58);
}

.lightbox-prev {
  left: clamp(12px, 3vw, 34px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 34px);
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: var(--blood-bright);
  outline: none;
}

.reserve {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(7, 5, 7, 0.96), rgba(19, 8, 12, 0.9)),
    url("images/IMG_0745.jpg") center / cover;
}

.reserve h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.reservation-notes span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(7, 5, 7, 0.72);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(247, 239, 233, 0.2);
  border-radius: 0;
  background: rgba(247, 239, 233, 0.07);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

select option {
  color: #111;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blood-bright);
  box-shadow: 0 0 0 3px rgba(206, 46, 78, 0.18);
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.form-spacer {
  min-height: 1px;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--blood-bright);
}

.form-submit {
  width: 100%;
  border-radius: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: #050405;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve,
  .intro,
  .duo-section,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .home-cta {
    display: grid;
  }

  .service-card.wide {
    grid-column: span 1;
  }

  .duo-section:nth-child(even) .duo-copy {
    order: 0;
  }
}

@media (max-width: 680px) {
  .page-main {
    padding-top: 98px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 58% 18%;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 48px;
  }

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

  .section-heading {
    display: block;
  }

  .page-hero {
    min-height: 48svh;
    padding-top: 64px;
  }

  .service-grid,
  .photo-strip,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .lightbox {
    padding-inline: 58px;
  }

  .lightbox img {
    max-height: 78svh;
  }

  .lightbox-nav {
    width: 42px;
    height: 60px;
    font-size: 2.6rem;
  }

  .photo-strip {
    min-height: auto;
    background: #050405;
  }

  .duo-gallery {
    columns: 1;
  }

  .photo-strip img {
    height: auto;
    object-fit: contain;
  }

  .photo-strip img:nth-child(2) {
    border: 0;
    border-block: 1px solid var(--line);
  }
}
