:root {
  --bg: #f7f4ee;
  --paper: #ffffff;
  --ink: #2e2a26;
  --ink-soft: #5c564e;
  --muted: #7a736a;
  --line: rgba(46, 42, 38, 0.12);
  --leaf: #4d6a4a;
  --hero-text: #2e2a26;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --archu: "Bodoni Moda", "Times New Roman", serif;
  --styled: "Fraunces", "Times New Roman", serif;
  --display: "Syne", "Segoe UI", sans-serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --pad: clamp(1rem, 4.2vw, 2.5rem);
  --header: 4.25rem;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  opacity: 0.72;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header);
  padding: 0.7rem var(--pad);
  color: var(--ink);
  background: color-mix(in srgb, var(--bg) 90%, white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.38em;
  min-width: 0;
  text-decoration: none;
  line-height: 0.9;
}

.brand:hover {
  opacity: 1;
}

.brand-archu {
  font-family: var(--archu);
  font-size: clamp(1.45rem, 5.2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-styled {
  font-family: var(--styled);
  font-size: clamp(1.15rem, 4.2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
}

.nav-enquire {
  border: 1px solid var(--ink);
  padding: 0.45rem 0.75rem;
}

.hero {
  position: relative;
  height: calc(100svh - var(--header));
  min-height: 28rem;
  max-height: 52rem;
  color: var(--hero-text);
  overflow: hidden;
}

.hero-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.hero-track.is-dragging {
  transition: none;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem var(--pad) calc(1.1rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(247, 244, 238, 0.92) 0%, rgba(247, 244, 238, 0.55) 42%, transparent 100%);
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0 0 0.9rem;
  max-width: 14ch;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.85rem, 8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--ink);
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-nav {
  appearance: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 0.4rem;
}

.hero-dot {
  appearance: none;
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 28%, white);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--ink);
  width: 1.15rem;
  border-radius: 999px;
}

.swipe-hint {
  display: none;
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.look-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.look-switch button {
  appearance: none;
  min-height: 2.15rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  background: color-mix(in srgb, #fff 82%, transparent);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.look-switch button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.work {
  padding: clamp(2.6rem, 7vw, 5.5rem) var(--pad);
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  scroll-margin-top: calc(var(--header) + 0.5rem);
}

.section-head {
  margin-bottom: 1.8rem;
  max-width: 36rem;
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 6vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-lede {
  margin: 0;
  color: var(--ink-soft);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.index {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--leaf);
  padding-top: 0.4rem;
}

.service-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-list p {
  margin: 0;
  color: var(--ink-soft);
}

.rooms {
  padding: 0 0 clamp(2.2rem, 5vw, 4rem);
}

.room-slider {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--pad);
  padding: 0 var(--pad);
  -webkit-overflow-scrolling: touch;
}

.room-slider figure {
  flex: 0 0 min(82vw, 26rem);
  margin: 0;
  scroll-snap-align: start;
}

.room-slider img {
  width: 100%;
  height: 15.5rem;
  object-fit: cover;
  background: #ece8df;
}

.room-slider figcaption {
  padding: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  padding: 1.3rem var(--pad) calc(1.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
  margin: 0;
  color: var(--ink);
  line-height: 0.95;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 760px) {
  .nav {
    gap: 1.35rem;
    font-size: 0.92rem;
  }

  .hero {
    height: calc(100svh - var(--header));
    max-height: none;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  }

  .hero-ui {
    padding: 1.6rem var(--pad) 1.6rem;
  }

  .room-slider img {
    height: 22rem;
  }

  .swipe-hint {
    display: none !important;
  }
}

@media (max-width: 759px) {
  .swipe-hint {
    display: block;
  }

  .hero-nav {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-track {
    transition: none;
  }
}
