/* Purple Paper — warm, editorial, photography-first hospitality system */
:root {
  color-scheme: light;
  --paper: #f7f1e8;
  --paper-deep: #eee3d5;
  --white: #fffdf9;
  --ink: #241d24;
  --muted: #6c626a;
  --plum: #54245f;
  --plum-bright: #7b3d89;
  --plum-deep: #35153d;
  --gold: #d7ad59;
  --sage: #556d5a;
  --line: #d9ccbd;
  --shadow: 0 1px 0 rgba(52, 31, 42, 0.08), 0 14px 38px rgba(52, 31, 42, 0.11);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

::selection { color: var(--white); background: var(--plum); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--plum);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 12px var(--gutter);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.brand img { width: 42px; height: 42px; margin-right: 11px; }

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.brand-type {
  align-self: end;
  margin: 0 0 3px 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--plum);
  transition: right 180ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.site-header > .button { justify-self: end; }

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 8px 0 var(--plum-deep);
}
.button-primary:hover,
.button-primary:focus-visible { background: var(--plum-bright); box-shadow: 0 10px 0 var(--plum-deep); }

.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover,
.button-dark:focus-visible { background: var(--plum); box-shadow: 0 7px 0 var(--plum-deep); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: 14px; }

.button-paper { color: var(--plum-deep); background: var(--paper); box-shadow: 0 8px 0 var(--gold); }
.button-paper:hover,
.button-paper:focus-visible { color: var(--plum); background: var(--white); }

.button-outline-light { color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,0.55); }
.button-outline-light:hover,
.button-outline-light:focus-visible { color: var(--plum-deep); background: var(--white); }

.text-link {
  min-height: 44px;
  padding: 8px 2px;
  color: var(--plum);
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
}
.text-link:hover,
.text-link:focus-visible { color: var(--plum-bright); transform: translateY(-2px); }

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.65px;
  text-transform: uppercase;
}
.eyebrow-light { color: #dbc9df; }

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 102px);
  line-height: 0.94;
}

h2 { font-size: clamp(42px, 5.2vw, 76px); line-height: 0.98; }
p { text-wrap: pretty; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  min-height: calc(100svh - 78px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 120px) var(--gutter) clamp(72px, 9vw, 130px);
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 2; }
.hero-intro {
  max-width: 660px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
}
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 42px 0 0;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  border-top: 1px solid var(--line);
}
.quick-facts li::before { content: "✦"; margin-right: 8px; color: var(--gold); }

.hero-visual { position: relative; min-height: 680px; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255,253,249,0.92);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.55px;
  backdrop-filter: blur(8px);
}
.hero-photo-main { top: 0; right: 0; width: 86%; height: 78%; transform: rotate(1.3deg); }
.hero-photo-inset { left: 0; bottom: 0; width: 48%; height: 37%; border: 8px solid var(--paper); transform: rotate(-2deg); }
.paper-note {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 140px;
  aspect-ratio: 1;
  color: var(--plum-deep);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  transform: rotate(8deg);
  box-shadow: 0 8px 0 rgba(53, 21, 61, 0.18);
}

.stay-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 44px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) var(--gutter) 56px;
  border-top: 1px solid var(--line);
}
.stay-intro h2 { max-width: 760px; margin-bottom: 0; }
.stay-intro > p { max-width: 390px; margin: 0 0 7px; color: var(--muted); font-size: 20px; }

.stays { max-width: 1500px; margin: 0 auto; padding: 0 var(--gutter) clamp(90px, 12vw, 180px); }
.stay {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(55px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.stay:first-child { border-top: 0; }
.stay-petite { grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr); }
.stay-copy { max-width: 590px; }
.stay-copy h2 { margin-bottom: 20px; }
.stay-lede { margin: 0 0 28px; color: var(--muted); font-size: clamp(18px, 1.7vw, 23px); }
.stay-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 30px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stay-specs div { padding: 0 15px; border-left: 1px solid var(--line); }
.stay-specs div:first-child { padding-left: 0; border-left: 0; }
.stay-specs dt { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.stay-specs dd { margin: 2px 0 0; font-family: var(--serif); font-size: 27px; font-weight: 700; }
.stay-highlights { margin: 0 0 32px; padding: 0; list-style: none; }
.stay-highlights li { position: relative; margin: 11px 0; padding-left: 25px; }
.stay-highlights li::before { content: "—"; position: absolute; left: 0; color: var(--plum); }
.booking-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; }

.stay-gallery { position: relative; min-height: 650px; }
.stay-gallery img { position: absolute; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.stay-gallery-large .stay-image-primary { left: 3%; top: 0; width: 62%; height: 100%; }
.stay-gallery-large .stay-image-secondary { right: 0; bottom: 7%; width: 48%; height: 44%; border: 8px solid var(--paper); }
.stay-gallery-petite .stay-image-primary { right: 0; top: 4%; width: 88%; height: 70%; }
.stay-gallery-petite .stay-image-secondary { left: 0; bottom: 0; width: 38%; height: 48%; border: 8px solid var(--paper); }
.stay-number {
  position: absolute;
  z-index: 3;
  top: 18px;
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  border: 8px solid var(--paper);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}
.stay-gallery-large .stay-number { left: 0; }
.stay-gallery-petite .stay-number { right: 0; }

.neighbourhood {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 7vw, 110px);
  min-height: 780px;
  padding: clamp(80px, 9vw, 140px) max(var(--gutter), calc((100vw - 1420px) / 2));
  color: var(--white);
  background: var(--plum-deep);
  overflow: hidden;
}
.neighbourhood-copy { align-self: center; max-width: 620px; }
.neighbourhood h2 { margin-bottom: 28px; }
.neighbourhood-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 40px; color: #d9cddd; font-size: 19px; }
.neighbourhood-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.22); }
.neighbourhood-list li { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.22); }
.neighbourhood-list span { color: var(--gold); font-family: var(--serif); font-weight: 700; }
.neighbourhood-photos { position: relative; min-height: 630px; }
.neighbourhood-photos img { position: absolute; object-fit: cover; border-radius: 26px; box-shadow: 0 24px 50px rgba(0,0,0,0.25); }
.neighbourhood-photo-tall { top: 0; right: 0; width: 62%; height: 100%; }
.neighbourhood-photo-wide { left: 0; bottom: 7%; width: 56%; height: 43%; border: 8px solid var(--plum-deep); }

.reviews {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--gutter);
}
.reviews-heading { grid-row: span 2; padding: 24px 8% 0 0; }
.reviews-heading h2 { font-size: clamp(48px, 6vw, 82px); }
.review { margin: 0; padding: clamp(27px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.review blockquote { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(22px, 2.4vw, 36px); line-height: 1.25; letter-spacing: -0.025em; }
.review figcaption { color: var(--muted); font-size: 13px; }
.review figcaption strong { color: var(--ink); }
.review-featured { background: var(--gold); border-color: var(--gold); box-shadow: 0 10px 0 #b58432; transform: rotate(0.6deg); }
.review-featured figcaption { color: var(--ink); }
.review-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.review-pair .review blockquote { font-size: clamp(20px, 1.8vw, 27px); }
.review-plum { color: var(--white); background: var(--plum); border-color: var(--plum); }
.review-plum figcaption { color: #dfcfdf; }
.review-plum figcaption strong { color: var(--white); }

.before-booking {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(45px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(100px, 12vw, 180px);
}
.before-heading h2 { margin-bottom: 24px; font-size: clamp(46px, 5vw, 70px); }
.before-heading > p:last-child { max-width: 420px; color: var(--muted); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 19px;
  color: var(--plum);
  font-family: var(--sans);
  font-size: 29px;
  font-weight: 400;
  transition: transform 170ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 690px; margin: -5px 0 26px; color: var(--muted); }

.booking-band {
  display: grid;
  place-items: center;
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  color: var(--white);
  background: var(--plum);
  text-align: center;
}
.booking-band h2 { max-width: 900px; margin-bottom: 24px; }
.booking-band > p:not(.eyebrow) { max-width: 590px; margin: 0 0 34px; color: #eadfea; font-size: 19px; }
.button-row-center { justify-content: center; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr auto;
  align-items: center;
  gap: 28px;
  padding: 38px var(--gutter) 74px;
  color: #d9cddd;
  background: var(--plum-deep);
  border-top: 1px solid rgba(255,255,255,0.17);
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 48px; height: 48px; }
.footer-brand strong { display: block; color: var(--white); font-family: var(--serif); font-size: 20px; }
.footer-brand span { display: block; font-size: 12px; }
.footer-contact, .footer-links { display: flex; flex-direction: column; gap: 5px; font-size: 13px; }
.footer-contact a, .footer-links a { width: max-content; text-underline-offset: 3px; }
.footer-contact a:hover, .footer-links a:hover { color: var(--white); }
.footer-legal { justify-self: end; margin: 0; font-size: 12px; }

.mobile-book { display: none; }

.booking-dialog {
  width: min(780px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: clamp(25px, 5vw, 52px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(35, 12, 43, 0.45);
}
.booking-dialog::backdrop { background: rgba(29, 13, 31, 0.72); backdrop-filter: blur(5px); }
.booking-dialog h2 { margin-bottom: 32px; font-size: clamp(38px, 6vw, 64px); }
.dialog-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.booking-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-option {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}
.booking-option:hover,
.booking-option:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow); }
.booking-option img { width: 100%; height: clamp(150px, 25vh, 220px); object-fit: cover; }
.booking-option > span { display: block; padding: 18px 45px 20px 18px; }
.booking-option strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 22px; }
.booking-option small { display: block; color: var(--muted); line-height: 1.4; }
.booking-option b { position: absolute; right: 17px; bottom: 22px; color: var(--plum); }
.dialog-all { display: inline-block; margin-top: 24px; color: var(--plum); font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 0.9fr 1.1fr; gap: 34px; }
  .hero-visual { min-height: 560px; }
  .paper-note { width: 112px; font-size: 17px; }
  .stay { grid-template-columns: 1fr 0.92fr; }
  .stay-petite { grid-template-columns: 0.92fr 1fr; }
  .stay-gallery { min-height: 560px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-legal { justify-self: start; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 78px; }
  .site-header { min-height: 70px; }
  .brand-type { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }
  h1 { max-width: 720px; }
  .hero-visual { min-height: 630px; margin-top: 12px; }
  .stay-intro { grid-template-columns: 1fr; gap: 18px; }
  .stay-intro > p { font-size: 18px; }
  .stay, .stay-petite { grid-template-columns: 1fr; gap: 50px; }
  .stay-petite .stay-copy { order: 2; }
  .stay-petite .stay-gallery { order: 1; }
  .stay-copy { max-width: 680px; }
  .stay-gallery { min-height: 680px; }
  .neighbourhood { grid-template-columns: 1fr; }
  .neighbourhood-photos { min-height: 620px; }
  .reviews { grid-template-columns: 1fr; }
  .reviews-heading { grid-row: auto; padding-right: 0; }
  .before-booking { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  body { padding-bottom: 70px; }
  .site-header { padding-top: 10px; padding-bottom: 10px; }
  .site-header > .button { display: none; }
  .brand img { width: 38px; height: 38px; }
  .brand-name { font-size: 20px; }
  .hero { padding-top: 48px; padding-bottom: 76px; }
  h1 { font-size: clamp(50px, 17vw, 72px); }
  h2 { font-size: clamp(40px, 13vw, 58px); }
  .hero-intro { font-size: 18px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .quick-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 480px; }
  .hero-photo-main { width: 94%; height: 73%; }
  .hero-photo-inset { width: 60%; height: 38%; }
  .paper-note { right: 0; bottom: 2%; width: 92px; font-size: 14px; }
  .stay-intro { padding-top: 80px; }
  .stays { padding-bottom: 100px; }
  .stay { padding: 64px 0; }
  .stay-gallery { min-height: 500px; }
  .stay-gallery-large .stay-image-primary { width: 74%; }
  .stay-gallery-large .stay-image-secondary { width: 55%; height: 40%; }
  .stay-gallery-petite .stay-image-primary { width: 96%; height: 66%; }
  .stay-gallery-petite .stay-image-secondary { width: 47%; height: 46%; }
  .stay-specs { grid-template-columns: 1fr 1fr; gap: 0; }
  .stay-specs div { padding: 11px 14px; border-top: 1px solid var(--line); }
  .stay-specs div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .stay-specs div:nth-child(-n+2) { border-top: 0; }
  .stay-copy .button { width: 100%; }
  .neighbourhood { padding-top: 82px; padding-bottom: 90px; }
  .neighbourhood-photos { min-height: 460px; }
  .neighbourhood-photo-tall { width: 69%; }
  .neighbourhood-photo-wide { width: 62%; }
  .reviews { padding-top: 90px; padding-bottom: 110px; }
  .review-pair { grid-template-columns: 1fr; }
  .review-featured { transform: none; }
  .booking-band { padding-top: 86px; padding-bottom: 90px; }
  .button-row-center { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 48px; }
  .booking-options { grid-template-columns: 1fr; }
  .mobile-book {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 45;
    display: block;
    min-height: 50px;
    color: var(--white);
    background: var(--plum);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 7px 0 var(--plum-deep), 0 12px 32px rgba(35, 13, 41, 0.28);
    font-weight: 800;
  }
}

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

@media print {
  .site-header, .mobile-book, .booking-dialog, .button-row, .booking-band { display: none !important; }
  body { background: white; }
  .hero, .stay, .neighbourhood, .reviews, .before-booking { display: block; min-height: 0; color: black; background: white; }
  .hero-visual, .stay-gallery, .neighbourhood-photos { min-height: 380px; break-inside: avoid; }
}
