@font-face {
  font-family: "Copper Sans";
  src: url("assets/fonts/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Copper Sans";
  src: url("assets/fonts/barlow-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Copper Condensed";
  src: url("assets/fonts/barlow-condensed-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Copper Condensed";
  src: url("assets/fonts/barlow-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #24323c;
  --ink-strong: #17242d;
  --muted: #58646b;
  --paper: #f3f0e8;
  --paper-clean: #faf8f2;
  --white: #fffdf8;
  --slate: #273641;
  --slate-soft: #d9dde0;
  --line: rgba(36, 50, 60, 0.24);
  --line-strong: rgba(36, 50, 60, 0.48);
  --error: #8d2431;
  --max: 1280px;
  --gutter: clamp(22px, 4vw, 58px);
  --display: "Copper Condensed", "Arial Narrow", sans-serif;
  --sans: "Copper Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  scrollbar-color: var(--accent) var(--paper);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper) url("assets/plates/paper_texture.png") repeat;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--accent-on);
}

*:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 78%, #ffffff);
  outline-offset: 4px;
}

input,
select {
  caret-color: var(--accent);
}

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

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

button,
input,
select {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  color: var(--ink-strong);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.6rem, 6vw, 5.8rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  padding: 11px 15px;
  background: var(--slate);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.announcement {
  min-height: 36px;
  padding: 7px max(var(--gutter), calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--accent);
  color: var(--accent-on);
  font-size: 13px;
  line-height: 1.35;
}

.announcement p {
  margin: 0;
}

.announcement a {
  position: absolute;
  right: max(var(--gutter), calc((100% - var(--max)) / 2));
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-inner {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  min-height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(18px, 2.7vw, 38px);
}

.brand {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-monogram {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--slate);
  color: var(--slate);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 700;
  line-height: 0.82;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name small {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
}

.site-menu a {
  padding: 29px 0 25px;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  border-color: var(--accent);
  color: var(--accent-text);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.language-switch a {
  color: var(--muted);
  text-decoration: none;
}

.language-switch a[aria-current="true"] {
  color: var(--accent-text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.header-book,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--slate);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.header-book,
.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-on);
}

.header-book:hover,
.btn-primary:hover {
  border-color: var(--ink-strong);
  background: var(--ink-strong);
  color: var(--white);
}

.header-book:active,
.btn:active {
  transform: translateY(1px);
}

.btn-secondary {
  border-color: var(--slate);
  background: transparent;
  color: var(--slate);
}

.btn-secondary:hover {
  background: var(--slate);
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(430px, 36fr) minmax(58px, 4fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-clean);
}

.hero-media {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 700px;
  margin: 0;
  overflow: hidden;
  background: var(--slate);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding: clamp(62px, 6.2vw, 94px) clamp(34px, 4vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-clean) 94%, transparent);
}

.hero-scope {
  margin: 0 0 42px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10.5ch;
  margin: 0 0 26px;
  font-size: clamp(4rem, 5.3vw, 5.35rem);
  line-height: 0.91;
}

.hero-lede {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(0, 0.95fr);
  gap: 14px;
  margin-top: 42px;
}

.hero-actions .btn {
  width: 100%;
  min-width: 0;
}

.hero-folio {
  grid-column: 3;
  grid-row: 1;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 0;
  border-left: 1px solid color-mix(in srgb, var(--white) 22%, transparent);
  background: var(--slate);
  color: var(--white);
}

.hero-folio span {
  writing-mode: vertical-rl;
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 128px) 0;
}

.home-story {
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(320px, 1.08fr) minmax(0, 1.2fr);
  border-bottom: 1px solid var(--line);
}

.home-story-copy {
  grid-column: 1 / 3;
  padding: clamp(72px, 8vw, 118px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
}

.home-story-copy h2 {
  max-width: 9.5ch;
  margin: 0;
}

.home-story-copy > p {
  max-width: 48ch;
  margin: 6px 0 0;
  color: var(--muted);
}

.home-story-copy > a {
  grid-column: 2;
  width: max-content;
  margin-top: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home-story figure {
  grid-column: 3;
  min-width: 0;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.home-story img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.section-head {
  margin-bottom: 50px;
}

.section-head h2 {
  max-width: 14ch;
  margin: 0;
}

.section-head > p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--line-strong);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.service-card:first-child {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.service-photo {
  min-width: 0;
  min-height: 330px;
  display: block;
  overflow: hidden;
  background: var(--slate-soft);
}

.service-card:first-child .service-photo {
  min-height: 500px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 280ms ease;
}

.service-photo:hover img {
  transform: scale(1.018);
}

.service-card-copy {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.service-meta {
  width: 100%;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-availability {
  margin-left: auto;
  color: var(--accent-text);
}

.service-card h3 {
  max-width: 18ch;
  margin: 0 0 16px;
}

.service-card p:not(.service-meta) {
  max-width: 55ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card-copy > a,
.section-link,
.visit-copy > a,
.room-copy > a,
.contact-card > a:last-child {
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.section-link {
  display: inline-block;
}

.empty-state {
  padding: 64px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper-clean);
  text-align: center;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 14px;
}

.empty-state p {
  color: var(--muted);
}

.craft {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(54px, 8vw, 122px);
  border-top: 1px solid var(--line);
}

.craft-title {
  position: sticky;
  top: 34px;
  align-self: start;
}

.craft-title h2 {
  max-width: 9ch;
  margin: 0;
}

.craft-points article {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.craft-points article:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-icon {
  display: none;
}

.craft-points h3 {
  margin: 0 0 12px;
}

.craft-points p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.process li {
  min-width: 0;
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.process li:last-child {
  border-right: 0;
}

.process li > b {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.process h3 {
  margin: 0 0 10px;
}

.process p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.room-feature {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--slate);
  color: var(--white);
}

.room-feature figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.room-feature img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.room-copy {
  order: 2;
  padding: clamp(48px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.room-copy h2 {
  max-width: 10ch;
  margin: 0 0 24px;
  color: var(--white);
}

.room-copy p {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
}

.room-copy a {
  color: var(--white);
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.visit-copy h2 {
  max-width: 11ch;
  margin: 0 0 28px;
}

.visit-copy > p {
  margin: 0;
  color: var(--muted);
}

.visit-copy > p + p {
  margin-top: 9px;
}

.visit-photo {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.visit > .sb-location-map--embedded {
  grid-column: 1 / -1;
  width: 100%;
  margin: 10px 0 0;
}

.sb-location-map,
.sb-location-map--embedded {
  background: transparent !important;
}

.sb-location-map__canvas {
  border-color: var(--line) !important;
  border-radius: 0 !important;
}

.sb-location-map__static {
  filter: saturate(0.78) contrast(1.03);
}

.sb-location-map__note {
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

.sb-location-map__directions:focus-visible {
  outline-color: var(--accent) !important;
}

.quote-section {
  padding: clamp(86px, 10vw, 142px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-clean);
}

.quote-section blockquote {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-align: center;
  text-wrap: balance;
}

.quote-section p {
  margin: 27px 0 0;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.closing {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 46px;
  align-items: center;
}

.closing h2 {
  max-width: 12ch;
  margin: 0;
}

.closing-with-media {
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 0.74fr);
}

.closing-media {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
}

.closing-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.site-footer {
  padding: 64px max(var(--gutter), calc((100% - var(--max)) / 2)) 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.62fr 0.92fr 0.92fr;
  gap: 44px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a {
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-label {
  color: var(--ink) !important;
  font-size: 11px !important;
  font-weight: 600;
}

.footer-cta {
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.page-intro {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  max-width: 14ch;
  margin: 0;
}

.page-intro > p {
  max-width: 44ch;
  margin: 0 0 8px;
  color: var(--muted);
}

.services-page {
  padding-top: 64px;
}

.booking-page {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 116px) 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 8vw, 112px);
}

.booking-copy h1 {
  max-width: 12ch;
  margin: 0 0 25px;
}

.booking-copy > p {
  max-width: 46ch;
  color: var(--muted);
}

.booking-promise {
  max-width: 450px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.booking-promise:first-of-type {
  margin-top: 40px;
}

.booking-promise > span {
  display: none;
}

.booking-promise b {
  font-size: 15px;
}

.booking-promise p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-panel {
  align-self: start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  border-top: 5px solid var(--accent);
  background: var(--white);
}

.form-head {
  margin-bottom: 28px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.form-head b {
  color: var(--accent-text);
  font-variant-numeric: tabular-nums;
}

.booking-panel form {
  display: grid;
  gap: 22px;
}

.booking-panel label,
.field-label {
  display: block;
}

.booking-panel label > span,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.booking-panel input,
.booking-panel select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #7b858a;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.booking-panel input::placeholder {
  color: #667177;
  opacity: 1;
}

.booking-panel input:focus,
.booking-panel select:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 32%, transparent);
  outline-offset: 1px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.slot-grid button {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.slot-grid button:hover,
.slot-grid button.is-selected {
  border-color: var(--slate);
  background: var(--slate);
  color: var(--white);
}

.slot-note,
.form-note,
.booking-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
}

.consent span {
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

.booking-panel button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-status:not(:empty) {
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--error) 50%, transparent);
  background: #fff1f2;
  color: var(--error);
}

.booking-success {
  padding: 36px 8px;
  text-align: center;
}

.success-mark {
  display: none;
}

.booking-success h2 {
  margin: 0 0 18px;
}

.booking-success p {
  margin: 0 0 26px;
  color: var(--muted);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.about-story figure {
  min-height: 590px;
  margin: 0;
  overflow: hidden;
}

.about-story img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.about-story h2 {
  max-width: 10ch;
  margin: 0 0 24px;
}

.about-story p {
  max-width: 48ch;
  color: var(--muted);
}

.values {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-top: 1px solid var(--line-strong);
}

.values article {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.values article:nth-child(odd) {
  padding-right: clamp(32px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.values article:nth-child(even) {
  padding-left: clamp(32px, 5vw, 72px);
}

.values article:last-child {
  grid-column: 1 / -1;
  padding-right: 0;
  border-right: 0;
}

.values h3 {
  margin: 0 0 13px;
}

.values p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
}

.team {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
}

.team-intro h2 {
  max-width: 11ch;
  margin: 0;
}

.team-list {
  border-top: 1px solid var(--line);
}

.team-list article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.team-list article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.team-list h3 {
  margin: 0 0 8px;
}

.team-list p {
  margin: 0;
  color: var(--muted);
}

.contact-page {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 116px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(52px, 8vw, 112px);
}

.contact-copy h1 {
  max-width: 11ch;
  margin: 0 0 26px;
}

.contact-copy > p {
  max-width: 48ch;
  color: var(--muted);
}

.contact-ledger {
  margin-top: 45px;
  border-top: 1px solid var(--line-strong);
}

.contact-ledger > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-ledger span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.contact-ledger p,
.contact-ledger a {
  margin: 0;
  font-size: 15px;
}

.contact-ledger a {
  overflow-wrap: anywhere;
}

.contact-card {
  align-self: start;
  padding: clamp(36px, 5vw, 62px);
  border-top: 5px solid var(--accent);
  background: var(--slate);
  color: var(--white);
}

.contact-card h2 {
  margin: 0 0 20px;
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 253, 248, 0.78);
}

.contact-card .btn {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 25px 0;
}

.contact-card > a:last-child {
  color: var(--white);
}

.contact-page .sb-location-map--embedded {
  grid-column: 1 / -1;
  width: 100%;
  margin: 60px 0 0;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: 360px;
  padding: 13px 16px;
  background: var(--slate);
  color: var(--white);
  font-size: 14px;
  transform: translateY(150%);
  transition: transform 180ms ease;
}

.toast:empty {
  display: none;
}

.toast.is-visible {
  display: block;
  transform: none;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: minmax(210px, 1fr) auto auto;
  }

  .header-book {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 55fr) minmax(410px, 41fr) minmax(48px, 4fr);
  }

  .hero-copy {
    padding-right: 38px;
    padding-left: 38px;
  }

  .closing-with-media {
    grid-template-columns: 1fr 1fr;
  }

  .closing-with-media > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 660px;
    grid-template-columns: minmax(0, 51fr) minmax(360px, 45fr) minmax(44px, 4fr);
  }

  .hero-media,
  .hero-media img,
  .hero-folio {
    min-height: 660px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7.4vw, 4.6rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .home-story {
    grid-template-columns: 1fr;
  }

  .home-story-copy {
    grid-column: 1;
  }

  .home-story figure {
    grid-column: 1;
    min-height: 360px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .craft,
  .team,
  .page-intro,
  .booking-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .craft-title {
    position: static;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .announcement {
    padding: 8px 14px;
    justify-content: flex-start;
  }

  .announcement a {
    display: none;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .language-switch {
    gap: 5px;
  }

  .hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 38px;
    grid-template-rows: minmax(340px, 50vh) auto;
  }

  .hero-media {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 340px;
  }

  .hero-media img {
    min-height: 340px;
    object-position: center 34%;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 48px 22px 52px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-folio {
    grid-column: 2;
    grid-row: 2;
    min-height: 100%;
    padding: 30px 0;
  }

  .hero-scope {
    margin-bottom: 30px;
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(3.45rem, 15vw, 4.45rem);
  }

  .hero-actions {
    gap: 11px;
    margin-top: 32px;
  }

  .home-story-copy {
    padding: 68px 22px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-story-copy > a {
    grid-column: 1;
  }

  .section,
  .closing,
  .page-intro,
  .booking-page,
  .contact-page {
    width: calc(100% - 28px);
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .service-card:first-child {
    grid-template-columns: 1fr;
  }

  .service-photo,
  .service-card:first-child .service-photo {
    min-height: 360px;
  }

  .service-card-copy {
    padding: 28px 22px 34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-availability {
    width: 100%;
    margin-left: 0;
  }

  .process ol {
    grid-template-columns: 1fr;
  }

  .process li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process li:last-child {
    border-bottom: 0;
  }

  .room-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .room-feature figure,
  .room-feature img {
    min-height: 440px;
  }

  .room-copy {
    padding: 48px 22px 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .visit {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .visit-photo,
  .visit-photo img {
    min-height: 340px;
  }

  .closing,
  .closing-with-media {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .closing-with-media > div {
    grid-column: auto;
  }

  .closing .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .values article,
  .values article:nth-child(odd),
  .values article:nth-child(even),
  .values article:last-child {
    grid-column: 1;
    padding: 34px 0;
    border-right: 0;
  }

  .contact-ledger > div {
    grid-template-columns: 84px 1fr;
  }
}

@media (max-width: 430px) {
  .brand-name {
    max-width: 156px;
    font-size: 25px;
  }

  .brand-monogram {
    width: 38px;
    height: 38px;
  }

  .language-switch {
    font-size: 11px;
  }

  .hero {
    grid-template-rows: 238px auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 238px;
  }

  .hero-copy {
    padding-top: 32px;
    padding-bottom: 36px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-scope {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15.5vw, 3.75rem);
  }

  .hero-actions {
    margin-top: 24px;
  }

  .booking-panel,
  .contact-card {
    padding: 28px 18px;
  }
}

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

  .service-photo img,
  .toast,
  .header-book,
  .btn {
    transition: none;
  }
}

/* Mobile keeps the editorial photograph as the hero's full visual field. */
@media (max-width: 760px) {
  .hero {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    display: block;
    background: var(--slate);
    color: var(--white);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: 720px;
    padding-right: 54px;
    justify-content: flex-end;
    border: 0;
    background: transparent;
  }

  .hero-scope {
    border-bottom-color: rgba(255, 255, 255, .58);
    color: var(--white);
  }

  .hero h1 {
    color: var(--white);
  }

  .hero-lede {
    color: rgba(255, 255, 255, .86);
  }

  .hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, .78);
    color: var(--white);
  }

  .hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    min-height: 0;
  }

  .hero-media::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(24, 31, 35, .1), rgba(24, 31, 35, .45) 58%, rgba(24, 31, 35, .86)),
      linear-gradient(90deg, rgba(24, 31, 35, .56), rgba(24, 31, 35, .1));
    content: "";
    pointer-events: none;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 48% center;
  }

  .hero-folio {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38px;
    min-height: 0;
    background: rgba(24, 31, 35, .78);
  }
}

/* MBOA_INSPIRED_EDITORIAL_POLISH_V1: composition quality, Copper identity. */
:root { --polish-shadow: rgba(39,54,65,.16); }
html,body { overflow-x: clip; }
:is(.hero h1,.section-head h2,.craft-title h2,.room-copy h2,.visit-copy h2,.closing h2,.page-intro h1,.booking-copy h1,.contact-copy h1,.contact-card h2,.about-story h2,.team-intro h2) { text-wrap: balance; }
p { text-wrap: pretty; }
.contact-page { grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr); gap: clamp(40px,5vw,64px); align-items: start; }
.contact-copy h1 { max-width: none; font-size: clamp(3rem,5vw,4.5rem); text-wrap: balance; }
.contact-card { border-radius: 0; box-shadow: 0 22px 54px var(--polish-shadow); }
:is(.btn,.header-book,.service-card) { transition: transform .22s cubic-bezier(.16,1,.3,1),box-shadow .22s ease,background-color .22s ease,color .22s ease,border-color .22s ease; }
:is(a,button,input,select):focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (hover:hover) and (pointer:fine) { .service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px var(--polish-shadow); } :is(.btn,.header-book):hover { transform: translateY(-2px); } :is(.btn,.header-book):active { transform: translateY(0); } }
@media (max-width:980px) { .contact-page { grid-template-columns: 1fr; gap: 52px; } .contact-card { width: min(100%,680px); } }
@media (max-width:680px) { .contact-copy h1 { font-size: clamp(2.8rem,12vw,3.2rem); } .contact-page { gap: 40px; } }
@media (max-width:360px) { .header-inner { gap: 6px; } .brand { min-width: 0; gap: 7px; } .brand-monogram { width: 36px; height: 36px; } .brand-name { font-size: 14px; } .menu-toggle { width: 42px; height: 42px; } .language-switch { gap: 2px; font-size: 9px; } }
@media (prefers-reduced-motion:reduce) { :is(.btn,.header-book,.service-card) { transition: none; } }

/* MBOA_FULL_SITE_POLISH_V3 */
:root{--polish-radius:2px;--polish-radius-sm:2px;--polish-ease:cubic-bezier(.16,1,.3,1);--polish-shadow-soft:0 12px 34px rgba(39,54,65,.11);--polish-shadow-deep:0 26px 68px rgba(39,54,65,.19)}
:is(.service-card,.contact-card,.contact-actions,.booking-panel){border-radius:var(--polish-radius);box-shadow:var(--polish-shadow-soft);overflow:hidden;transition:transform .32s var(--polish-ease),box-shadow .32s ease}
:is(.hero-media,.service-photo,.home-story figure,.about-story figure,.room-large,.visit-photo,.closing-media,.sb-location-map__canvas){border-radius:var(--polish-radius);overflow:hidden;box-shadow:var(--polish-shadow-soft)}
:is(.hero-media,.service-photo,.home-story figure,.about-story figure,.room-large,.visit-photo,.closing-media) img{transition:transform .7s var(--polish-ease),filter .35s ease}
:is(.btn,.header-book){border-radius:var(--polish-radius-sm);box-shadow:0 7px 18px rgba(39,54,65,.11);will-change:transform}.service-card-copy{padding:clamp(26px,3vw,40px)}
:is(.hero-lede,.section-head>p,.home-story-copy>p,.room-copy>p,.visit-copy>p,.booking-copy>p,.contact-copy>p){max-width:62ch}:is(.booking-panel input,.booking-panel select){border-radius:var(--polish-radius-sm);transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease}
@keyframes polishRevealV3{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}:is(.hero-copy,.page-intro>*,.contact-copy,.contact-card,.contact-actions,.booking-panel,.service-card){animation:polishRevealV3 .62s var(--polish-ease) backwards}.service-card:nth-child(2){animation-delay:.06s}.service-card:nth-child(3){animation-delay:.12s}
@media(hover:hover) and (pointer:fine){:is(.service-card,.contact-card,.contact-actions,.booking-panel):hover{transform:translateY(-4px);box-shadow:var(--polish-shadow-deep)}:is(.service-card,.home-story,.about-story,.room-feature,.visit,.closing):hover img{transform:scale(1.025)}:is(.btn,.header-book):hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(39,54,65,.17)}:is(.btn,.header-book):active{transform:translateY(0) scale(.985)}}
@media(max-width:680px){:is(.service-card,.contact-card,.contact-actions,.booking-panel,.hero-media,.service-photo,.home-story figure,.about-story figure,.room-large,.visit-photo,.closing-media,.sb-location-map__canvas){box-shadow:0 10px 28px rgba(39,54,65,.10)}}@media(prefers-reduced-motion:reduce){:is(.hero-copy,.page-intro>*,.contact-copy,.contact-card,.contact-actions,.booking-panel,.service-card){animation:none}:is(.service-card,.contact-card,.contact-actions,.booking-panel,.hero-media img,.service-photo img,.home-story img,.about-story img,.room-large img,.visit-photo img,.closing-media img){transition:none!important;transform:none!important}}

/* PROFESSIONAL_RHYTHM_AND_READING_V4 */
:root{--space-section:clamp(64px,6.25vw,80px);--space-editorial:clamp(76px,7.5vw,96px);--space-compact:clamp(48px,5vw,64px)}
:is(.home-story.section,.services-preview.section,.craft.section,.process.section,.visit.section,.team.section,.values.section,.about-story.section,.services-page,.booking-page,.contact-page){padding-block:var(--space-section)}:is(.quote-section,.quote){padding-block:var(--space-editorial)}body :is(.closing-with-media,.page-intro){padding-block:var(--space-compact)}:is(.home-story,.craft,.room-feature,.visit,.closing-with-media,.about-story,.team,.section-head,.page-intro,.booking-copy,.contact-copy) :is(h1,h2){max-width:none;text-wrap:balance}:is(.home-story,.about-story,.craft,.room-feature,.visit,.closing-with-media,.booking-grid,.contact-grid){column-gap:clamp(32px,5vw,64px)}:is(.booking-copy,.contact-copy) h1{font-size:clamp(42px,4.5vw,60px);line-height:1.02}
@media(max-width:680px){:root{--space-section:56px;--space-editorial:68px;--space-compact:48px}:is(.home-story.section,.services-preview.section,.craft.section,.process.section,.visit.section,.team.section,.values.section,.about-story.section,.services-page,.booking-page,.contact-page){padding-block:var(--space-section)}:is(.quote-section,.quote){padding-block:var(--space-editorial)}body :is(.closing-with-media,.page-intro){padding-block:var(--space-compact)}:is(.booking-copy,.contact-copy) h1{font-size:clamp(36px,11vw,44px)}}

/* COPPER_MBOA_QUALITY_UPGRADE_V5: Mboa discipline, distinct Copper editorial identity. */
:root{--copper-shadow-soft:0 14px 36px rgba(23,36,45,.11);--copper-shadow-deep:0 24px 56px rgba(23,36,45,.18);--copper-muted-light:color-mix(in srgb,var(--white) 76%,var(--slate))}
.home-story.section{width:min(var(--max),calc(100% - (2 * var(--gutter))));margin-inline:auto;padding-block:var(--space-editorial);grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr);gap:clamp(48px,7vw,92px);align-items:center;border-bottom:1px solid var(--line)}
.home-story .home-story-copy{grid-column:auto;padding:0;display:flex;flex-direction:column;align-items:flex-start}
.home-story .home-story-copy h2{max-width:12ch}
.home-story .home-story-copy>p{max-width:46ch;margin:28px 0 0}
.home-story .home-story-copy>a{grid-column:auto;margin-top:32px}
.home-story figure{grid-column:auto;min-height:560px;border:0;border-radius:var(--polish-radius);box-shadow:var(--copper-shadow-soft)}
.home-story img{min-height:560px}
.services-preview>.section-head{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:clamp(36px,6vw,82px);align-items:end}
.services-preview>.section-head>p{margin:0;padding-left:24px;border-left:2px solid var(--accent)}
.service-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;border:0}
.service-card{min-width:0;border:1px solid var(--line);background:var(--white);box-shadow:var(--copper-shadow-soft)}
.service-card:first-child{grid-column:1/-1;grid-template-columns:minmax(0,1.18fr) minmax(340px,.82fr)}
.service-card:not(:first-child){display:flex;flex-direction:column}
.service-card:first-child .service-photo{min-height:470px}
.service-card:not(:first-child) .service-photo{min-height:310px}
.service-card:not(:first-child) .service-card-copy{flex:1;border-top:1px solid var(--line);border-left:0}
.service-card-copy>a{margin-top:auto;padding-top:28px}
.craft{grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);gap:clamp(48px,7vw,96px);align-items:start}
.craft-points{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.craft-points article{min-height:190px;padding:28px;border:1px solid var(--line);border-top:3px solid var(--accent);background:var(--white);box-shadow:var(--copper-shadow-soft);transition:transform .24s var(--polish-ease),box-shadow .24s ease,border-color .24s ease}
.craft-points article:last-child{border-bottom:1px solid var(--line)}
.principle-icon{width:38px;height:38px;display:grid;place-items:center;margin-bottom:24px;border:1px solid var(--accent);color:var(--accent-text)}
.principle-icon svg{width:17px;height:17px}
.principle-icon::before{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.06em;line-height:1}
.craft-points article:nth-child(1) .principle-icon::before{content:"01"}
.craft-points article:nth-child(2) .principle-icon::before{content:"02"}
.craft-points article:nth-child(3) .principle-icon::before{content:"03"}
.craft-points article:nth-child(4) .principle-icon::before{content:"04"}
.craft-points h3{font-size:clamp(1.65rem,2.2vw,2rem)}
.process ol{gap:18px;border-top:0}
.process li{min-height:170px;border:1px solid var(--line);background:var(--white);box-shadow:var(--copper-shadow-soft);transition:transform .24s var(--polish-ease),box-shadow .24s ease}
.process li:last-child{border-right:1px solid var(--line)}
.page-intro{margin-top:clamp(24px,4vw,52px);padding:clamp(48px,6vw,76px);background:var(--slate);color:var(--white);border-bottom:4px solid var(--accent);box-shadow:var(--copper-shadow-soft)}
.page-intro h1{color:var(--white)}
.page-intro>p{color:color-mix(in srgb,var(--white) 76%,var(--slate))}
.site-footer{border-top:4px solid var(--accent);background:var(--slate);color:var(--white)}
.site-footer .footer-grid p{color:var(--copper-muted-light)}
.site-footer .footer-label{color:var(--white)!important}
.site-footer .footer-brand .brand-name,.site-footer .footer-brand .brand-monogram,.site-footer a{color:var(--white)}
.site-footer .footer-brand .brand-name{max-width:none}
.site-footer .footer-brand .brand-monogram{border-color:var(--accent)}
.site-footer .footer-brand .brand-name small{color:var(--copper-muted-light)}
.site-footer .footer-bottom{border-top-color:color-mix(in srgb,var(--white) 20%,var(--slate));color:var(--copper-muted-light)}
@keyframes copperRevealV5{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
.copper-reveal{opacity:0;transform:translateY(18px);animation:none}
.copper-reveal.is-visible{opacity:1;transform:none;animation:copperRevealV5 .52s var(--polish-ease) backwards;animation-delay:calc(var(--copper-reveal-index,0) * 70ms)}
@media(hover:hover) and (pointer:fine){.craft-points article:hover,.process li:hover{transform:translateY(-4px);box-shadow:var(--copper-shadow-deep);border-color:color-mix(in srgb,var(--accent) 58%,var(--line))}}
@media(max-width:980px){.home-story.section{grid-template-columns:1fr;gap:42px}.home-story figure{min-height:500px}.home-story img{min-height:500px}.services-preview>.section-head{grid-template-columns:1fr}.services-preview>.section-head>p{padding-left:20px}.craft{grid-template-columns:1fr;gap:38px}.page-intro{grid-template-columns:1fr;gap:30px}}
@media(max-width:760px){.home-story.section{width:calc(100% - 28px);padding-block:56px;gap:34px}.home-story figure,.home-story img{min-height:360px}.services-preview>.section-head{gap:24px}.service-list{grid-template-columns:1fr;gap:16px}.service-card,.service-card:first-child{grid-column:auto;grid-template-columns:1fr}.service-card:first-child .service-photo,.service-card:not(:first-child) .service-photo{min-height:340px}.craft-points{grid-template-columns:1fr;gap:14px}.craft-points article{min-height:0;padding:24px}.process ol{grid-template-columns:1fr;gap:14px}.process li,.process li:last-child{min-height:0;border:1px solid var(--line)}.page-intro{width:calc(100% - 28px);margin-top:14px;padding:44px 22px}.site-footer{padding-top:54px}}
@media(prefers-reduced-motion:reduce){.copper-reveal,.copper-reveal.is-visible{opacity:1;transform:none;animation:none}.craft-points article,.process li{transition:opacity .12s linear,background-color .12s linear,border-color .12s linear}}

/* COPPER_RADIUS_ALIGNMENT_V6 */
:root{--copper-radius-card:4px;--copper-radius-control:2px}
.service-card,.craft-points article,.process li,.page-intro,.contact-card,.booking-panel{border-radius:var(--copper-radius-card)}
.home-story figure,.visit .visit-photo,.closing .closing-media,.about-story figure{border-radius:var(--copper-radius-card);overflow:hidden}
.sb-location-map__canvas{border-radius:var(--copper-radius-card)!important}
.hero .hero-media,.service-card .service-photo{border-radius:0}
.btn,.booking-panel input,.booking-panel select,.booking-panel textarea{border-radius:var(--copper-radius-control)}
@media(max-width:725px){.site-footer{padding-inline:14px}}

/* COPPER_ADJACENT_ALIGNMENT_V7 */
.room-feature{width:min(var(--max),calc(100% - (2 * var(--gutter))));margin-inline:auto;border:1px solid var(--line);border-radius:var(--copper-radius-card);overflow:hidden;box-shadow:var(--copper-shadow-soft)}
.room-feature .room-large{border-radius:0}
@media(max-width:860px){.room-feature{min-height:0;grid-template-columns:1fr}.room-feature figure,.room-feature img{min-height:440px}.room-copy{border-top:1px solid rgba(255,255,255,.24);border-left:0}}
@media(max-width:760px){.room-feature{width:calc(100% - 28px)}.room-copy{padding:48px 22px 54px}}

/* COPPER_TEXT_COMPOSITION_V8 */
.home-story.section{grid-template-columns:minmax(0,1fr) minmax(420px,1fr)}
.home-story .home-story-copy h2{max-width:none}
.craft{grid-template-columns:minmax(280px,.82fr) minmax(0,1.18fr)}
.room-feature{grid-template-columns:minmax(0,1fr) minmax(430px,1fr)}
.room-copy{padding:clamp(40px,4.4vw,60px)}
.page-intro{grid-template-columns:minmax(0,1.55fr) minmax(250px,.45fr);gap:clamp(32px,5vw,64px)}
.team{grid-template-columns:minmax(360px,1fr) minmax(0,1.1fr);gap:clamp(48px,6vw,82px)}
.booking-page{grid-template-columns:minmax(440px,1fr) minmax(500px,1.08fr);gap:clamp(48px,6vw,82px)}
.booking-copy h1{font-size:clamp(42px,4vw,54px)}
.contact-page{grid-template-columns:minmax(0,1fr) minmax(430px,.95fr);gap:clamp(48px,6vw,82px)}
.contact-card h2{font-size:clamp(36px,3.2vw,42px);line-height:1}
.closing:not(.closing-with-media){padding-block:var(--space-compact);grid-template-columns:minmax(0,1fr) auto;gap:clamp(32px,5vw,72px);align-items:center}
.closing:not(.closing-with-media) h2{max-width:none;text-wrap:balance}
@media(max-width:980px){.home-story.section,.craft,.page-intro,.team,.booking-page,.contact-page{grid-template-columns:1fr}}
@media(max-width:860px){.room-feature{grid-template-columns:1fr}.room-copy{padding:48px 36px 54px}}
@media(max-width:760px){.room-copy{padding:48px 22px 54px}.closing:not(.closing-with-media){grid-template-columns:1fr;gap:28px;align-items:start}.closing:not(.closing-with-media) .btn{width:100%}}

/* COPPER_VISIBLE_RADIUS_SYSTEM_V9
   A visible three-level radius hierarchy for surfaces, media and controls. */
:root {
  --copper-radius-card: 16px;
  --copper-radius-media: 14px;
  --copper-radius-control: 10px;
}

:is(.service-card, .craft-points article, .process li, .page-intro, .contact-card, .booking-panel, .empty-state, .room-feature) {
  border-radius: var(--copper-radius-card);
  overflow: hidden
}

:is(.home-story figure, .service-photo, .room-feature .room-large, .visit .visit-photo, .closing .closing-media, .about-story figure) {
  border-radius: var(--copper-radius-media);
  overflow: hidden
}

.hero .hero-media {
  border-radius: 0 var(--copper-radius-media) var(--copper-radius-media) 0
}

:is(.btn, .header-book, .menu-toggle, .slot-grid button, .booking-panel input:not([type="checkbox"]), .booking-panel select, .booking-panel textarea) {
  border-radius: var(--copper-radius-control)
}

@media(max-width:760px) {
  .hero .hero-media {
    border-radius: var(--copper-radius-media)
  }
}

/* COPPER_GLOBAL_RADIUS_AND_OVERLAP_V10
   Apply the radius hierarchy to every content card, editorial image and button.
   The final CTA intentionally overlaps the preceding section by exactly 15px. */
:is(main article, .craft-points article, .process li, .page-intro, .contact-card, .booking-panel, .empty-state, .room-feature) {
  border-radius: var(--copper-radius-card);
  overflow: hidden
}

:is(main figure, .sb-location-map__canvas, .sb-location-map__static) {
  border-radius: var(--copper-radius-media) !important;
  overflow: hidden
}

main figure > img {
  border-radius: inherit
}

:is(button, .btn, .header-book, .booking-panel input:not([type="checkbox"]), .booking-panel select, .booking-panel textarea) {
  border-radius: var(--copper-radius-control)
}

.closing {
  margin: -15px auto 0;
  position: relative;
  z-index: 2;
  border-radius: var(--copper-radius-card) var(--copper-radius-card) 0 0;
  overflow: hidden
}
/* Published pages are one language, so the header grid has no EN / FR column. */
.header-inner.header-inner--one-language { grid-template-columns: minmax(230px, 1fr) auto auto; }
@media (max-width: 1100px) { .header-inner.header-inner--one-language { grid-template-columns: minmax(210px, 1fr) auto; } }
@media (max-width: 980px) { .header-inner.header-inner--one-language { grid-template-columns: 1fr auto; } }

/* A brand colour as dark as the contact card keeps its button's edge visible
   there (2026-09-26). */
.contact-card .btn-primary{border-color:var(--accent-edge,var(--accent))}

/* Wide screens (2026-09-26, Tumi: "most hero images are cropped"): from 1500px
   the hero grows with the width (45vw: about 60% of a 4:3 photograph shows,
   instead of half), and a business's own photograph is framed on its upper
   part, where heads are; the design's own photograph keeps its faces. */
@media(min-width:1500px){
  :root body section.hero{min-height:max(clamp(600px,84vh,820px),45vw)}
  :root body section.hero .hero-media img{object-position:50% 30%}
  :root body section.hero .hero-media img[src*="hero_photo"]{object-position:50% 20%}
}

/* >>> standard 2026-09-25 */
/* ---- The finished sites' standard (goal 2026-09-25) ----------------------
   The photograph across the whole hero, the words on it in white over a dark
   fade from their side (the bottom on a phone, the left on a computer); no
   drawn ornaments in the hero; the menu on one row however many pages the
   business switches on; every service card the same size; sections at most
   68px a side (40px on a phone); headings across their column; photographs
   keep their frames in the editors, and a tap beside the hero's words
   reaches the photograph. The rules start ":root body" so they outweigh a
   design's own, which some scope under a page class. */
:root body .hero{position:relative;isolation:isolate;display:grid;grid-template-columns:1fr;grid-template-rows:none;align-items:end;align-content:end;width:100%;max-width:none;min-height:max(460px,calc(100svh - 250px));margin:0;padding:0;background:#141a19;border:0;border-radius:0;box-shadow:none;overflow:hidden;gap:0}
:root body .hero::before{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;display:block;width:auto;height:auto;border:0;transform:none;background:linear-gradient(0deg,rgba(12,16,15,.92) 0%,rgba(12,16,15,.78) 45%,rgba(12,16,15,.5) 80%,rgba(12,16,15,.4) 100%)}
:root body .hero::after{display:none}
:root body .hero-media{position:absolute;inset:0;z-index:-2;grid-area:auto;width:100%;height:100%;min-height:0;max-height:none;margin:0;padding:0;border:0;border-radius:0;box-shadow:none;transform:none;clip-path:none;overflow:hidden}
:root body .hero-media img{position:absolute;inset:0;width:100%;height:100%;max-width:none;object-fit:cover;object-position:center 42%;border:0;border-radius:0;box-shadow:none;transform:none;filter:none}
:root body .hero-media::before,:root body .hero-media::after,:root body .hero-media figcaption{display:none}
:root body :is(.hero-copy,.hero-plan){position:relative;z-index:1;grid-area:auto;width:100%;max-width:none;margin:0;padding:28px 20px 30px;background:none;border:0;box-shadow:none;color:#fff;transform:none;pointer-events:none}
:root body :is(.hero-copy,.hero-plan) > *{pointer-events:auto}
:root body :is(.hero-copy,.hero-plan) :is(h1,p,.hero-lede,.hero-trust,.hero-scope,.hero-kicker){color:#fff;transform:none}
:root body :is(.hero-copy,.hero-plan) h1{max-width:14ch;text-wrap:balance}
:root body :is(.hero-copy,.hero-plan) .hero-lede{max-width:44ch;color:#e6ebe8}
:root body .hero-actions{position:static;left:auto;margin-top:22px;display:flex;flex-wrap:wrap;gap:10px}
:root body .hero-actions .btn{left:auto;transform:none}
:root body .hero :is(.btn-secondary,.btn-outline){background:transparent;border-color:#fff;color:#fff}
:root body .hero :is(.btn-secondary,.btn-outline):hover{background:#fff;color:#141a19}
:root body :is(.hero-band,.coordinate-rule,.hero-folio){display:none}
:root body .hero-facts{position:relative;z-index:1;grid-area:auto;margin:0;padding:0 20px 26px;color:#fff;background:none;border:0}
:root body .hero-facts :is(dt,dd){color:#fff}
@media(min-width:900px){
  :root body .hero{align-items:center;align-content:center;min-height:clamp(600px,84vh,820px);padding:clamp(40px,7vh,90px) max(24px,calc((100% - var(--max,1240px))/2))}
  :root body .hero::before{background:linear-gradient(90deg,rgba(12,16,15,.9) 0%,rgba(12,16,15,.72) 38%,rgba(12,16,15,.2) 68%,rgba(12,16,15,0) 84%)}
  :root body :is(.hero-copy,.hero-plan){width:min(640px,54%);padding:0}
  :root body .hero-facts{width:min(640px,54%);padding:28px 0 0}
}
/* The menu on one row beside the header's booking button, however many
   pages are on: the links close up. */
@media(min-width:1025px){
  :root body .site-menu{flex-wrap:nowrap;gap:clamp(9px,.95vw,15px)}
  :root body .site-menu:has(> a:nth-child(7)) a{font-size:13px;white-space:nowrap;letter-spacing:0}
  :root body .header-inner:has(.site-menu > a:nth-child(7)) .header-book{padding-inline:14px;font-size:13px;white-space:nowrap}
}
/* Every service card the same size: a photograph on top, its words, its
   button; no giant first card with an empty panel. */
:root body .service-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));gap:clamp(16px,2vw,24px)}
:root body .service-list > .service-card{grid-column:auto;grid-row:auto;display:flex;flex-direction:column;min-height:0;height:auto}
:root body .service-list > .service-card > .service-photo{display:block;width:100%;height:auto;aspect-ratio:4/3;min-height:0;overflow:hidden}
:root body .service-list > .service-card > .service-photo img{width:100%;height:100%;object-fit:cover}
:root body .service-list > .service-card > .service-card-copy{flex:1;min-height:0}
:root body .service-list > .service-card > .sb-shop-add{align-self:flex-start;margin:0 20px 20px}
/* Sections at most 68px a side; headings across their column. */
:root body .section{padding-top:clamp(40px,5vw,68px);padding-bottom:clamp(40px,5vw,68px)}
:root body .section.eng-sec{padding-top:clamp(36px,4vw,52px);padding-bottom:clamp(36px,4vw,52px)}
:root body .quote-section{padding-top:clamp(40px,5vw,68px);padding-bottom:clamp(40px,5vw,68px)}
:root body :is(.section,.quote-section) > :first-child{margin-top:0}
:root body :is(.section,.quote-section) > :last-child{margin-bottom:0}
:root body .eng-sec .eng-head{margin-top:0}
@media(max-width:760px){:root body :is(.section,.quote-section){padding-top:40px;padding-bottom:40px}}
:root body :is(.section h2,.section-head h2){max-width:none}
/* The editors: every photograph keeps its frame inside the editor's wrapper. */
:root body .hero-media > [data-paurtal-img-wrap]{position:absolute !important;inset:0;width:100% !important;height:100% !important}
:root body :is(figure,.service-photo,.eng-card__photo) > [data-paurtal-img-wrap]{display:block !important;width:100%;height:100%}
/* No drawn lines or dots on the hero words; the cart never covers the
   hero buttons on a phone; engine bands keep the same gaps, whatever
   class the design gives its sections. */
:root body :is(.hero-copy,.hero-plan)::before,:root body :is(.hero-copy,.hero-plan)::after{display:none}
:root body :is(.hero-copy,.hero-plan) :is(h1,.hero-lede,.hero-kicker){position:relative;left:auto;right:auto;top:auto}
@media(max-width:699px){:root body .hero-actions{padding-right:58px}}
:root body .eng-sec{margin-top:0;margin-bottom:0;padding-top:clamp(36px,4vw,52px);padding-bottom:clamp(36px,4vw,52px)}
@media(min-width:1025px){:root body .site-menu > a{flex-shrink:0}:root body .site-menu > .mobile-book{display:none}}
/* The steps and principle boxes as tall as their words. */
:root body .process li,:root body .craft-points article{min-height:0}
@media(min-width:900px){:root body .hero-actions .btn{width:auto;flex:0 0 auto}}
/* <<< standard 2026-09-25 */
