:root {
  --cream: #f7f1ea;
  --cream-deep: #eee3d8;
  --paper: #fffdf9;
  --ink: #28342f;
  --muted: #6d756f;
  --sage: #74877b;
  --sage-dark: #52665a;
  --blush: #e8cfc5;
  --peach: #dcae96;
  --line: rgba(40, 52, 47, 0.13);
  --shadow: 0 20px 60px rgba(70, 58, 48, 0.1);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(116, 135, 123, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: white;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 14px;
  background: rgba(247, 241, 234, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  filter: drop-shadow(0 5px 12px rgba(65, 50, 38, 0.14));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Newsreader", serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-call {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 96px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 680px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 86px;
  gap: 68px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -96px;
  bottom: -28px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      rgba(247, 241, 234, 0.98) 0%,
      rgba(247, 241, 234, 0.94) 35%,
      rgba(247, 241, 234, 0.62) 68%,
      rgba(247, 241, 234, 0.48) 100%
    ),
    linear-gradient(
      180deg,
      rgba(247, 241, 234, 0.28) 0%,
      rgba(247, 241, 234, 0.08) 54%,
      var(--cream) 100%
    ),
    url("assets/lobby-background.webp") center 45% / cover no-repeat;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  font-size: clamp(64px, 7.1vw, 100px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(45px, 5vw, 66px);
  line-height: 0.98;
}

.hero-intro {
  max-width: 585px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  gap: 12px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 25px rgba(40, 52, 47, 0.15);
}

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

.button-secondary {
  border-color: rgba(40, 52, 47, 0.18);
  background: rgba(255, 255, 255, 0.42);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 38px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.trust-row span {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.sun-orb {
  position: absolute;
  top: 26px;
  right: -36px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(232, 207, 197, 0.72);
  filter: blur(1px);
}

.arch {
  position: absolute;
  inset: 0 0 0 24px;
  overflow: hidden;
  border-radius: 240px 240px 30px 30px;
  background:
    radial-gradient(circle at 38% 27%, rgba(255, 255, 255, 0.9), transparent 27%),
    linear-gradient(160deg, #e6d4c8 0%, #cabdaf 55%, #aeb8aa 100%);
  box-shadow: var(--shadow);
}

.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.1) 0%, transparent 34%),
    linear-gradient(0deg, rgba(64, 55, 47, 0.12) 0%, transparent 25%);
  pointer-events: none;
}

.couples-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.82) contrast(0.94) brightness(1.03);
}

.visual-note {
  position: absolute;
  z-index: 4;
  right: -24px;
  bottom: 32px;
  margin: 0;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-family: "Newsreader", serif;
  font-size: 20px;
}

.visual-note span {
  color: var(--sage-dark);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-section {
  padding: 104px max(20px, calc((100vw - 1180px) / 2)) 116px;
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 44px -4px 28px;
  padding: 4px 4px 8px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.filter.is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: white;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 102, 90, 0.35);
  box-shadow: 0 16px 40px rgba(70, 58, 48, 0.07);
}

.card-top,
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-tag {
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.duration {
  color: var(--muted);
  font-size: 13px;
}

.service-card h3 {
  margin: 30px 0 9px;
  font-family: "Newsreader", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

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

.card-bottom {
  margin-top: auto;
  padding-top: 24px;
}

.price {
  font-family: "Newsreader", serif;
  font-size: 31px;
  line-height: 1;
}

.deal-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.deal-price del {
  color: #9a8f88;
  font-family: "Newsreader", serif;
  font-size: 21px;
  text-decoration-color: #b76561;
  text-decoration-thickness: 2px;
}

.deal-price .price {
  color: #a64f4b;
  font-weight: 600;
}

.save-badge {
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  color: #8e4542;
  background: #f8e5df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 15px;
  color: var(--muted);
  background: var(--cream);
  font-size: 13px;
}

.service-note span {
  margin-right: 8px;
  color: var(--peach);
}

.space-section {
  padding: 108px 20px 118px;
  background:
    radial-gradient(circle at 8% 12%, rgba(232, 207, 197, 0.42), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #f4ece3 100%);
}

.space-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.review-card {
  min-height: 210px;
  padding: 29px;
  border: 1px solid rgba(40, 52, 47, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 12px 32px rgba(70, 58, 48, 0.06);
}

.review-stars {
  margin: 0 0 22px;
  color: #ad7c5f;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.review-card > p:not(.review-stars) {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 24px;
  line-height: 1.22;
}

.review-card small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-top: 78px;
}

.gallery-heading .eyebrow {
  margin-bottom: 12px;
}

.gallery-heading h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.gallery-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 16px;
  margin-top: 30px;
}

.gallery-card {
  margin: 0;
}

.gallery-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: #ddd3c8;
  box-shadow: 0 16px 36px rgba(70, 58, 48, 0.1);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.visit-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 126px;
  gap: 24px;
}

.visit-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(247, 241, 234, 0.78) 20%,
      rgba(247, 241, 234, 0.38) 48%,
      rgba(247, 241, 234, 0.8) 84%,
      var(--cream) 100%
    ),
    linear-gradient(90deg, rgba(247, 241, 234, 0.4), rgba(247, 241, 234, 0.16)),
    url("assets/room-background.webp") center 54% / cover no-repeat;
}

.visit-card,
.location-card {
  border-radius: var(--radius-lg);
}

.visit-card {
  position: relative;
  overflow: hidden;
  padding: 56px;
  color: #fbf6f0;
  background: var(--ink);
}

.visit-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.018);
}

.visit-card .eyebrow {
  color: #bfcabf;
}

.visit-card h2 {
  max-width: 620px;
}

.visit-card > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 24px 0 0;
  color: #c7cec8;
}

.visit-card .button-primary {
  background: #f4e8dc;
  color: var(--ink);
}

.visit-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 50px rgba(59, 50, 44, 0.12);
  backdrop-filter: blur(14px);
}

.location-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.location-row:first-child {
  padding-top: 0;
}

.location-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.location-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--sage-dark);
  background: #e8ede8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.location-row small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-row a,
.location-row p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.location-row a:hover {
  text-decoration: underline;
}

.location-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer p {
  margin: 0;
}

.booking-dock {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: stretch;
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto;
  padding: 7px;
  border: 1px solid rgba(40, 52, 47, 0.12);
  border-radius: 19px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 55px rgba(40, 52, 47, 0.24);
  backdrop-filter: blur(18px);
}

.dock-service,
.dock-book,
.dock-call {
  border: 0;
  font: inherit;
}

.dock-service {
  min-width: 0;
  padding: 6px 10px;
  text-align: left;
  background: transparent;
}

.dock-service small,
.dock-service strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dock-service small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.dock-service strong {
  font-size: 12px;
}

.dock-book,
.dock-call {
  display: grid;
  place-items: center;
  min-width: 92px;
  padding: 11px 14px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.dock-book {
  color: white;
  background: var(--ink);
}

.dock-call {
  min-width: 58px;
  margin-left: 5px;
  color: var(--sage-dark);
  background: #e9eee9;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    min-height: 440px;
  }

  .arch {
    inset: 0 7%;
  }

  .visual-note {
    right: 3%;
  }

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

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

  .visit-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 94px;
  }

  .site-header {
    width: calc(100% - 30px);
    padding-top: 14px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  nav a:not(.nav-call) {
    display: none;
  }

  nav {
    gap: 0;
  }

  .nav-call {
    padding: 8px 15px;
  }

  .hero {
    min-height: 0;
    width: calc(100% - 30px);
    padding: 42px 0 72px;
    gap: 42px;
  }

  .hero::before {
    top: -82px;
    bottom: -12px;
    background:
      linear-gradient(
        180deg,
        rgba(247, 241, 234, 0.94) 0%,
        rgba(247, 241, 234, 0.82) 45%,
        rgba(247, 241, 234, 0.42) 73%,
        var(--cream) 100%
      ),
      url("assets/lobby-background.webp") 58% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  h2 {
    font-size: 47px;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 16px;
  }

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

  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 10px;
  }

  .trust-row span {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .arch {
    inset: 0;
    border-radius: 180px 180px 24px 24px;
  }

  .sun-orb {
    right: -74px;
  }

  .visual-note {
    right: -4px;
    bottom: 22px;
    font-size: 18px;
  }

  .services-section {
    padding: 76px 15px 82px;
  }

  .space-section {
    padding: 78px 15px 84px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .filter-row {
    margin-top: 32px;
  }

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

  .review-grid,
  .space-gallery {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .gallery-heading {
    display: block;
    margin-top: 58px;
  }

  .gallery-heading > p {
    margin-top: 14px;
  }

  .service-card {
    min-height: 220px;
  }

  .visit-section {
    width: calc(100% - 30px);
    padding: 72px 0 84px;
  }

  .visit-section::before {
    background:
      linear-gradient(
        180deg,
        var(--cream) 0%,
        rgba(247, 241, 234, 0.7) 18%,
        rgba(247, 241, 234, 0.42) 50%,
        rgba(247, 241, 234, 0.82) 86%,
        var(--cream) 100%
      ),
      url("assets/room-background.webp") 58% center / cover no-repeat;
  }

  .visit-card {
    padding: 38px 26px;
  }

  .location-card {
    padding: 28px 22px;
  }

  footer {
    display: block;
    width: calc(100% - 30px);
  }

  footer p + p {
    margin-top: 5px;
  }

  .booking-dock {
    display: grid;
  }
}

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