:root {
  --ink: #17202a;
  --slate: #294257;
  --muted: #657889;
  --porcelain: #f7f5ef;
  --tile: #fffdf8;
  --aqua: #d9eff0;
  --aqua-strong: #3a8c9d;
  --brass: #b7864f;
  --line: rgba(23, 32, 42, .15);
  --shadow: 0 28px 80px rgba(24, 45, 58, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font: 16px/1.65 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.js-ready .chapter {
  animation: chapterIn .55s ease both;
}
@keyframes chapterIn {
  from { opacity: .92; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { transform: translateY(0); }

.masthead {
  min-height: 96vh;
  position: relative;
  isolation: isolate;
  color: white;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
}
.mast-bg, .mast-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.mast-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) brightness(.72);
  transform: scale(1.03);
}
.mast-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 23, 31, .78), rgba(10, 23, 31, .36) 44%, rgba(10, 23, 31, .6)),
    radial-gradient(circle at 24% 34%, rgba(217,239,240,.28), transparent 38%);
}
.quick-strip {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.quick-strip a, .quick-strip span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.11);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(14px);
}
.quick-strip a:focus-visible,
.room-tab:focus-visible,
.btn:focus-visible,
.text-button:focus-visible,
.topic:focus-visible,
input:focus-visible,
textarea:focus-visible,
.site-footer a:focus-visible,
.inline-link:focus-visible {
  outline: 3px solid #f5d089;
  outline-offset: 3px;
}
.mast-content {
  max-width: var(--max);
  width: 100%;
  margin: auto;
  padding: clamp(70px, 12vh, 150px) 0 clamp(34px, 8vh, 76px);
}
.kicker, .mini-label, .section-stamp {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.kicker { color: #d9eff0; }
.mast-content h1 {
  max-width: 960px;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: .98;
  letter-spacing: -.018em;
  word-spacing: .04em;
  text-wrap: balance;
}
.mast-copy {
  max-width: 690px;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255,255,255,.86);
  margin: 28px 0 0;
}
.mast-actions, .form-actions, .phone-band {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.mast-actions { margin-top: 28px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #f2c46f; color: #14212a; box-shadow: 0 14px 40px rgba(0,0,0,.24); }
.btn-quiet { background: rgba(255,255,255,.12); color: currentColor; border-color: rgba(255,255,255,.34); }
main .btn-quiet { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.7); }
.room-tray {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(10, 23, 31, .38);
  backdrop-filter: blur(18px);
}
.room-tab {
  min-height: 84px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: 20px;
  text-align: left;
  padding: 14px;
  display: grid;
  gap: 4px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.room-tab:hover, .room-tab.active {
  background: rgba(217,239,240,.22);
  border-color: rgba(255,255,255,.56);
  transform: translateY(-1px);
}
.room-tab span { font-weight: 850; }
.room-tab small { color: rgba(255,255,255,.78); line-height: 1.35; }

.active-room {
  max-width: var(--max);
  margin: clamp(28px, 6vw, 72px) auto;
  padding: 0 clamp(16px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
}
.active-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: linear-gradient(135deg, #ffffff, #ecf6f5);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.water-mark {
  position: absolute;
  width: min(260px, 58%);
  aspect-ratio: 1;
  border: 34px solid rgba(58,140,157,.12);
  border-radius: 999px;
  right: -8%;
  top: -14%;
}
.active-card h2,
.practical h2,
.contact-board h2,
.chapter-copy h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -.045em;
  line-height: .98;
  margin: 0;
  color: var(--slate);
}
.active-card h2 { font-size: clamp(40px, 6vw, 76px); }
.active-card p:not(.mini-label) { max-width: 560px; font-size: 19px; color: #425766; }
.inline-link, .text-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--slate);
  font-weight: 850;
  text-underline-offset: 6px;
}
.text-button {
  border: 0;
  background: transparent;
  padding: 8px 0;
  text-decoration: underline;
}
.promise-row {
  display: grid;
  gap: 12px;
}
.promise-row div {
  min-height: 94px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  padding: 18px 20px;
}
.promise-row strong { font-family: Fraunces, Georgia, serif; font-size: 28px; color: var(--slate); }
.promise-row span { color: var(--muted); }

.flow {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 42px) clamp(16px, 3vw, 28px) clamp(54px, 8vw, 96px);
}
.flow-line {
  position: absolute;
  top: 20px;
  bottom: 70px;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(#d3ecee, #b7864f 52%, #d3ecee);
  opacity: .82;
}
.chapter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  margin: clamp(28px, 7vw, 92px) 0;
}
.chapter::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border: 5px solid var(--porcelain);
  border-radius: 50%;
  background: var(--aqua-strong);
  box-shadow: 0 0 0 1px rgba(23,32,42,.12);
}
.chapter-offset { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.chapter-offset .chapter-image { order: 2; }
.chapter-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 390px;
  box-shadow: var(--shadow);
  background: #dde8e9;
}
.chapter-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.chapter-copy {
  background: rgba(255,253,248,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 44px rgba(24,45,58,.08);
}
.chapter-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--slate);
  color: white;
  font-weight: 850;
  margin-bottom: 18px;
}
.chapter-copy h2 { font-size: clamp(34px, 5vw, 58px); }
.chapter-copy p, .chapter-copy li { color: #435766; }
.chapter-copy ul {
  margin: 22px 0 14px;
  padding-left: 20px;
}
.chapter-copy li { margin: 9px 0; }

.practical {
  max-width: var(--max);
  margin: 0 auto clamp(44px, 7vw, 88px);
  padding: clamp(22px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #203747, #14232f);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 62px);
  overflow: hidden;
}
.practical h2 { color: white; font-size: clamp(38px, 6vw, 74px); }
.practical p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 620px; }
.detail-stack {
  display: grid;
  gap: 12px;
}
.detail-tile {
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 18px 20px;
  min-width: 0;
}
.detail-tile span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 6px;
}
.detail-tile a, .detail-tile strong {
  color: white;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 850;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}

.contact-board {
  max-width: var(--max);
  margin: 0 auto clamp(34px, 6vw, 72px);
  padding: 0 clamp(16px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 58px);
  align-items: start;
}
.contact-intro {
  position: sticky;
  top: 22px;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  background: #e3f2f2;
  border: 1px solid rgba(58,140,157,.25);
}
.contact-intro h2 { font-size: clamp(38px, 6vw, 70px); }
.contact-intro p { color: #415766; font-size: 18px; }
.phone-band a {
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--slate);
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--tile);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.enquiry-form fieldset, .field-pair.full, .form-actions, .form-note {
  grid-column: 1 / -1;
}
.enquiry-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.enquiry-form legend, .field-pair label {
  color: var(--slate);
  font-weight: 850;
  margin-bottom: 8px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.topic {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--slate);
  padding: 10px 14px;
  text-align: left;
  font-weight: 800;
}
.topic.active { background: var(--slate); color: white; border-color: var(--slate); }
.field-pair { display: grid; gap: 8px; min-width: 0; }
input, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(41,66,87,.22);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
}
textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.5;
}
.form-actions {
  justify-content: flex-end;
  margin-top: 6px;
}
.form-note {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 28px clamp(16px, 4vw, 64px);
  background: #14232f;
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 18px;
  align-items: center;
}
.site-footer div { display: grid; gap: 2px; min-width: 0; }
.site-footer span { color: rgba(255,255,255,.72); }
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #14232f;
  background: #f2c46f;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .masthead { min-height: auto; }
  .room-tray { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .active-room, .practical, .contact-board { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .flow-line, .chapter::before { left: 28px; }
  .chapter, .chapter-offset {
    grid-template-columns: 1fr;
    padding-left: 42px;
  }
  .chapter-offset .chapter-image { order: 0; }
  .chapter-image, .chapter-image img { min-height: 330px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer a { justify-self: start; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .masthead { padding: 14px; }
  .quick-strip a, .quick-strip span { width: 100%; justify-content: center; }
  .mast-content { padding: 52px 0 28px; }
  .mast-actions .btn, .form-actions .btn, .phone-band a { width: 100%; }
  .room-tray { grid-template-columns: 1fr; border-radius: 22px; }
  .room-tab { min-height: 70px; }
  .active-room { margin: 28px auto; }
  .promise-row { grid-template-columns: 1fr; }
  .flow { padding-left: 14px; padding-right: 14px; }
  .flow-line, .chapter::before { display: none; }
  .chapter, .chapter-offset {
    padding-left: 0;
    margin: 30px 0;
  }
  .chapter-image, .chapter-image img { min-height: 240px; }
  .chapter-copy, .active-card, .practical, .contact-intro, .enquiry-form { border-radius: 22px; }
  .practical { margin-left: 14px; margin-right: 14px; padding: 24px 18px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .form-actions { justify-content: stretch; }
  .site-footer { padding: 24px 16px; }
}

@media (max-width: 390px) {
  .mast-content h1 { font-size: clamp(42px, 13vw, 52px); }
  .active-card h2, .practical h2, .contact-board h2, .chapter-copy h2 { letter-spacing: -.035em; }
  .active-room, .contact-board { padding-left: 12px; padding-right: 12px; }
  .chapter-copy { padding: 22px 16px; }
  .btn { padding-left: 18px; padding-right: 18px; }
}
