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

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

:root {
  --midnight: #071b33;
  --midnight-soft: #0d2947;
  --atlantic: #126e93;
  --shell: #f3efe6;
  --foam: #f9faf8;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #52606b;
  --line: #b9c3c8;
  --pale-blue: #e4edf0;
  --field-placeholder: #66747d;
  --danger: #8a2433;
  --danger-soft: #f9e8eb;
  --max: 1280px;
  --gutter: clamp(22px, 4vw, 56px);
  --sans: "Atlantic Sans", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--atlantic) var(--shell);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--midnight);
  color: var(--shell);
}

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

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

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

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

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 {
  margin-top: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 5.2vw, 5rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vertical-align: -0.14em;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--midnight);
  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;
  margin: 0;
  padding: 7px max(var(--gutter), calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--midnight);
  color: var(--white);
  font-size: 12px;
}

.announcement p {
  margin: 0;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.brand-monogram {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--midnight);
  color: var(--shell);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-name {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--midnight);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-menu a {
  min-height: 74px;
  padding: 26px 0 22px;
  border-bottom: 3px solid transparent;
  color: var(--midnight);
  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, var(--atlantic));
  color: var(--accent-text, var(--atlantic));
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switch a {
  color: inherit;
  text-decoration: none;
}

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

.header-book,
.btn {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--midnight);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

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

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

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

.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--midnight);
}

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

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

.hero {
  width: 100%;
  min-height: 610px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  overflow: hidden;
  background: var(--shell);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
  padding: clamp(58px, 6vw, 86px) clamp(34px, 5vw, 76px)
    clamp(56px, 6vw, 82px) max(var(--gutter), calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--shell);
}

.hero h1 {
  max-width: 11ch;
  margin: 0 0 26px;
  color: var(--midnight);
  font-size: clamp(3.3rem, 4.6vw, 4.65rem);
}

.hero h1::after {
  content: "";
  width: 96px;
  height: 3px;
  display: block;
  margin-top: 32px;
  background: var(--accent, var(--atlantic));
}

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

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.hero .btn {
  min-width: 190px;
}

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

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

.hero-media {
  min-width: 0;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--pale-blue);
}

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

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

.home-story {
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: stretch;
  background: var(--foam);
  border-bottom: 1px solid var(--line);
}

.home-story-copy {
  padding: clamp(66px, 7vw, 106px) clamp(34px, 5vw, 76px)
    clamp(66px, 7vw, 106px) max(var(--gutter), calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-story-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--midnight);
}

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

.home-story-copy > a,
.room-copy > a,
.visit-copy > a,
.contact-card > a:last-child,
.section-link,
.service-card-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--midnight);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home-story figure {
  min-width: 0;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

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

.section-head {
  max-width: 880px;
  margin-bottom: 50px;
  display: block;
}

.section-head h2 {
  max-width: 14ch;
  margin-bottom: 20px;
  color: var(--midnight);
}

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

.services-preview {
  padding-bottom: clamp(86px, 8vw, 120px);
}

.service-list {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  border-top: 1px solid var(--midnight);
  border-bottom: 1px solid var(--midnight);
}

.service-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 0.58fr);
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.service-card:last-child {
  border-bottom: 0;
}

.service-card:first-child {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.service-photo {
  min-width: 0;
  min-height: 210px;
  display: block;
  overflow: hidden;
  background: var(--pale-blue);
}

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

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 240ms ease-out;
}

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

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

.service-card-copy {
  min-width: 0;
  padding: 28px clamp(22px, 3vw, 38px) 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:first-child .service-card-copy {
  padding: 36px clamp(28px, 4vw, 50px) 42px;
}

.service-meta {
  width: 100%;
  margin: 0 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--midnight);
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
}

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

.service-card-copy > a {
  margin-top: auto;
  padding-top: 24px;
}

.section-link {
  margin-top: 34px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: clamp(48px, 7vw, 86px);
  background: var(--foam);
  text-align: center;
}

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

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

.craft {
  width: 100%;
  max-width: none;
  padding: clamp(82px, 8vw, 120px) max(var(--gutter), calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
  background: var(--midnight);
  color: var(--white);
}

.craft-title h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
}

.craft-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgb(255 255 255 / 0.34);
}

.craft-points article {
  min-width: 0;
  padding: 30px 30px 34px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgb(255 255 255 / 0.34);
}

.craft-points article:nth-child(even) {
  padding-left: 30px;
  padding-right: 0;
  border-left: 1px solid rgb(255 255 255 / 0.34);
}

.principle-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--accent, var(--atlantic)) 62%, white);
}

.principle-icon .icon {
  width: 22px;
  height: 22px;
}

.craft-points h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.55rem;
}

.craft-points p {
  max-width: 34ch;
  margin: 0;
  color: #c7d2da;
  font-size: 15px;
}

.process {
  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(--midnight);
  list-style: none;
}

.process li {
  min-width: 0;
  padding: 30px clamp(22px, 3vw, 38px) 36px;
  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, var(--atlantic));
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.process h3 {
  margin-bottom: 10px;
  color: var(--midnight);
}

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

.room-feature {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: stretch;
  background: var(--pale-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.room-copy {
  order: 2;
  padding: clamp(52px, 6vw, 86px) max(var(--gutter), calc((100vw - var(--max)) / 2));
  padding-left: clamp(42px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid var(--line);
}

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

.room-copy p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
}

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

.visit-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visit-copy h2 {
  max-width: 12ch;
  margin-bottom: 28px;
  color: var(--midnight);
}

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

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

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

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

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

.visit .sb-location-map__canvas,
.contact-page .sb-location-map__canvas {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--pale-blue);
}

.visit .sb-location-map__canvas iframe,
.contact-page .sb-location-map__canvas iframe {
  background: var(--pale-blue);
}

.quote-section {
  padding: clamp(86px, 10vw, 150px) var(--gutter);
  background: var(--pale-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote-section blockquote {
  max-width: 900px;
  margin: 0 auto;
  color: var(--midnight);
  font-size: clamp(2.6rem, 4.9vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.quote-section p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.closing h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--midnight);
}

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

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.9fr 0.9fr;
  gap: 44px;
}

.footer-grid > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.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(--midnight) !important;
  font-size: 11px !important;
  font-weight: 600;
}

.footer-cta {
  color: var(--midnight);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 20px;
  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, 9vw, 126px) 0 66px;
  border-bottom: 1px solid var(--midnight);
}

.page-intro h1 {
  max-width: 14ch;
  margin-bottom: 25px;
  color: var(--midnight);
}

.page-intro > p {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.services-page .service-list {
  display: block;
}

.services-page .service-card,
.services-page .service-card:first-child {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.services-page .service-card:last-child {
  border-bottom: 0;
}

.services-page .service-photo,
.services-page .service-card:first-child .service-photo,
.services-page .service-photo img,
.services-page .service-card:first-child .service-photo img {
  min-height: 300px;
}

.services-page .service-card-copy,
.services-page .service-card:first-child .service-card-copy {
  min-height: 300px;
  padding: 38px clamp(30px, 5vw, 68px) 42px;
  justify-content: center;
}

.booking-page {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(50px, 8vw, 112px);
}

.booking-copy h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  color: var(--midnight);
}

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

.booking-promise {
  max-width: 440px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

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

.booking-promise > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--accent-text, var(--atlantic));
}

.booking-promise b {
  color: var(--midnight);
  font-size: 14px;
}

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

.booking-panel {
  align-self: start;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border-top: 5px solid var(--accent, var(--atlantic));
  box-shadow: 0 22px 56px rgb(7 27 51 / 0.1);
}

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

.form-head b {
  color: var(--accent-text, var(--atlantic));
  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 {
  margin-bottom: 8px;
  display: block;
  color: #3d4c57;
  font-size: 12px;
  font-weight: 600;
}

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

.booking-panel input::placeholder {
  color: var(--field-placeholder);
  opacity: 1;
}

.booking-panel input:focus,
.booking-panel select:focus {
  border-color: var(--accent, var(--atlantic));
  outline: 3px solid color-mix(in srgb, var(--accent, var(--atlantic)) 30%, 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 #7d8a92;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}

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

.slot-note {
  margin: 8px 0 0;
  color: #4f5d66;
  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;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}

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

.form-note,
.booking-status {
  margin: 0;
  color: #4f5d66;
  font-size: 13px;
}

.booking-status:not(:empty) {
  padding: 12px;
  background: var(--danger-soft);
  color: var(--danger);
}

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

.success-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: var(--accent, var(--atlantic));
  color: var(--accent-on, var(--white));
}

.booking-success h2 {
  margin-bottom: 18px;
  color: var(--midnight);
  font-size: 3rem;
}

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

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

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

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

.about-story h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--midnight);
}

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

.values {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-top: 1px solid var(--midnight);
  border-bottom: 1px solid var(--midnight);
}

.values article {
  padding: 38px clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values article:first-child {
  grid-row: 1 / span 2;
  padding-top: 60px;
}

.values article:last-child {
  border-bottom: 0;
}

.values h3 {
  margin-bottom: 13px;
  color: var(--midnight);
  font-size: 2rem;
}

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

.team {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 118px);
}

.team-intro h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--midnight);
}

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

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

.team-list article > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--midnight);
  color: var(--shell);
  font-size: 14px;
  font-weight: 600;
}

.team-list h3 {
  margin-bottom: 8px;
  color: var(--midnight);
}

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

.contact-page {
  width: min(var(--max), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  color: var(--midnight);
}

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

.contact-ledger {
  margin-top: 48px;
  border-top: 1px solid var(--midnight);
}

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

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

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

.contact-card {
  align-self: start;
  padding: clamp(38px, 5vw, 62px);
  background: var(--midnight);
  color: var(--white);
}

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

.contact-card p {
  color: #c8d3dc;
}

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

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

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

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

.toast:empty {
  display: none;
}

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

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto auto auto;
    gap: 18px;
  }

  .site-menu {
    gap: 18px;
  }

  .header-book {
    padding-inline: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 300px;
  }

  .hero .btn {
    width: 100%;
  }

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

  .service-card,
  .service-card:first-child {
    display: flex;
    flex-direction: column;
  }
}

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .header-book {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding-right: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 4.15rem);
  }

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

  .service-list {
    display: block;
  }

  .service-card,
  .service-card:first-child {
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

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

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

  .craft-title h2 {
    max-width: 12ch;
  }

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

  .room-copy {
    order: -1;
    min-height: 380px;
    padding-inline: var(--gutter);
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .room-large {
    min-height: 520px;
  }

  .booking-page,
  .contact-page,
  .about-story,
  .team {
    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) {
  :root {
    --gutter: 22px;
  }

  .announcement {
    min-height: 0;
    padding-block: 8px;
  }

  .announcement a {
    display: none;
  }

  .brand-name {
    font-size: 19px;
  }

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

  .hero-copy {
    min-height: 470px;
    padding: 58px var(--gutter) 54px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 10.5vw, 4rem);
  }

  .hero h1::after {
    margin-top: 26px;
  }

  .hero-actions {
    max-width: none;
    margin-top: 28px;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
    max-height: 480px;
  }

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

  .home-story-copy {
    min-height: 430px;
    padding: 64px var(--gutter);
  }

  .home-story figure,
  .home-story img {
    min-height: 420px;
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .service-card:first-child,
  .services-page .service-card,
  .services-page .service-card:first-child {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .service-photo,
  .service-card:first-child .service-photo,
  .service-photo img,
  .service-card:first-child .service-photo img,
  .services-page .service-photo,
  .services-page .service-card:first-child .service-photo,
  .services-page .service-photo img,
  .services-page .service-card:first-child .service-photo img {
    min-height: 330px;
  }

  .craft-points {
    grid-template-columns: 1fr;
  }

  .craft-points article,
  .craft-points article:nth-child(even) {
    padding: 28px 0 32px;
    border-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;
  }

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

  .quote-section blockquote {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

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

  .closing .btn {
    width: 100%;
  }

  .closing-media {
    min-height: 240px;
  }

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

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

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

  .page-intro {
    padding: 68px 0 52px;
  }

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

  .values article,
  .values article:first-child {
    grid-row: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .contact-ledger > div {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .contact-card {
    padding: 36px 24px;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 16px;
  }

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

  .brand-name {
    max-width: 156px;
    font-size: 15px;
    line-height: 1.08;
    white-space: normal;
  }

  .brand-name small {
    display: none;
  }

  .language-switch {
    gap: 4px;
  }

  .hero-copy {
    min-height: 500px;
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.45rem);
  }

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

  .service-card-copy,
  .service-card:first-child .service-card-copy,
  .services-page .service-card-copy,
  .services-page .service-card:first-child .service-card-copy {
    padding: 28px 22px 34px;
  }

  .booking-panel {
    padding: 26px 18px;
  }

  .contact-ledger > div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }
}

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

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

/* Keep the photograph inside the mobile hero composition. */
@media (max-width: 760px) {
  .hero {
    position: relative;
    isolation: isolate;
    min-height: 690px;
    display: block;
    background: var(--midnight);
    color: var(--white);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: 690px;
    background: transparent;
  }

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

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

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

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

  .hero-media::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7, 24, 43, .18), rgba(7, 24, 43, .46) 60%, rgba(7, 24, 43, .82)),
      linear-gradient(90deg, rgba(7, 24, 43, .62), rgba(7, 24, 43, .12));
    content: "";
    pointer-events: none;
  }

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

/* ATLANTIC_BOARDROOM_PHASE4_RATIONALIZATION_V1
   Keep the useful editorial contract without inherited generic surface or motion systems. */
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.2rem);
  text-wrap: balance;
}

:is(a, button, input, select):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

: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
) {
  overflow: hidden;
}

.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) {
  transition:
    border-color var(--atlantic-motion-standard) var(--atlantic-ease-out),
    box-shadow var(--atlantic-motion-standard) var(--atlantic-ease-out),
    background-color var(--atlantic-motion-standard) var(--atlantic-ease-out);
}

@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;
  }
}

/* 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)}}

/* ATLANTIC_BOARDROOM_PHASE1_FOUNDATIONS_V1
   Restore the documented flat agenda system, responsive ownership and content-led geometry. */
.mobile-language-switch,
.site-menu > .mobile-book {
  display: none;
}

: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
) {
  border-radius: 0;
  box-shadow: none;
}

:is(.btn, .header-book, .booking-panel input, .booking-panel select) {
  border-radius: 0;
  box-shadow: none;
}

:is(.header-book, .btn-primary) {
  background: var(--accent, var(--atlantic));
  color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  :is(.service-card, .contact-card, .contact-actions, .booking-panel):hover {
    transform: none;
    box-shadow: none;
  }
}

.services-page .service-card {
  min-height: 0;
  grid-template-columns: minmax(260px, .36fr) minmax(0, .64fr);
}

.services-page .service-photo,
.services-page .service-card:first-child .service-photo {
  position: relative;
  min-height: 260px;
}

.services-page .service-photo img,
.services-page .service-card:first-child .service-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
}

.services-page .service-card-copy,
.services-page .service-card:first-child .service-card-copy {
  min-height: 0;
  padding: 32px clamp(30px, 4vw, 52px);
  justify-content: flex-start;
}

.services-page .service-card-copy > a,
.services-page .service-card:first-child .service-card-copy > a {
  margin-top: clamp(20px, 2vw, 28px);
  padding-top: 0;
}

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

.values article:first-child {
  grid-row: auto;
}

:is(.values.section, .team.section) {
  padding-block: var(--space-compact);
}

.closing:not(.closing-with-media) {
  padding-block: var(--space-compact);
}

.closing:not(.closing-with-media) h2 {
  max-width: none;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
}

@media (max-width: 980px) {
  .language-switch,
  .header-book {
    display: none;
  }

  .mobile-language-switch,
  .site-menu > .mobile-book {
    display: flex;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 760px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    background: var(--shell);
    color: var(--ink);
  }

  .hero-copy {
    position: relative;
    min-height: 0;
    padding: 48px var(--gutter) 44px;
    background: var(--shell);
  }

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

  .hero-lede {
    color: var(--muted);
  }

  .hero .btn-secondary {
    border-color: var(--midnight);
    color: var(--midnight);
  }

  .hero-media {
    position: relative;
    inset: auto;
    min-height: clamp(280px, 86vw, 390px);
    max-height: none;
  }

  .hero-media::after {
    content: none;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-position: 62% center;
  }

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

  .services-page .service-photo,
  .services-page .service-card:first-child .service-photo {
    min-height: 250px;
  }

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

/* ATLANTIC_BOARDROOM_PHASE2_FINISH_V1
   Shorter editorial journey, non-repeating service preview and aligned action rhythm. */
.home-story.section {
  padding-block: 0;
}

.home-story-copy {
  min-height: 0;
  padding-block: clamp(48px, 5vw, 72px);
}

.home-story figure,
.home-story img {
  min-height: 420px;
}

.services-preview.section {
  padding-block: var(--space-compact);
}

.services-preview .section-head {
  margin-bottom: 32px;
}

.services-preview .service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-preview .service-card,
.services-preview .service-card:first-child {
  grid-row: auto;
  display: block;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.services-preview .service-card:last-child {
  border-right: 0;
}

.services-preview .service-card-copy,
.services-preview .service-card:first-child .service-card-copy {
  min-height: 290px;
  padding: 26px;
}

.services-preview .service-card-copy > a,
.services-preview .service-card:first-child .service-card-copy > a {
  margin-top: auto;
  padding-top: 24px;
}

.visit.section {
  padding-block: var(--space-compact);
  row-gap: 32px;
}

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

.visit .sb-location-map__canvas {
  height: clamp(260px, 28vw, 340px);
  min-height: 0;
}

.visit .sb-location-map__canvas iframe {
  height: 100%;
}

@media (max-width: 760px) {
  .home-story-copy {
    padding-block: 48px;
  }

  .home-story figure,
  .home-story img {
    min-height: 320px;
  }

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

  .services-preview .service-card,
  .services-preview .service-card:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-preview .service-card:last-child {
    border-bottom: 0;
  }

  .services-preview .service-card-copy,
  .services-preview .service-card:first-child .service-card-copy {
    min-height: 290px;
    padding: 26px;
  }

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

  .visit .sb-location-map__canvas {
    height: 240px;
  }
}

/* ATLANTIC_BOARDROOM_PHASE3_INTERACTIONS_V1
   Motion explains state only: no decorative page reveals or floating surfaces. */
:root {
  --atlantic-motion-fast: 140ms;
  --atlantic-motion-standard: 180ms;
  --atlantic-ease-out: cubic-bezier(.22, 1, .36, 1);
}

[hidden] {
  display: none !important;
}

: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):hover {
  transform: none;
  box-shadow: none;
}

:is(.btn, .header-book, .home-story-copy > a, .room-copy > a, .visit-copy > a, .section-link, .service-card-copy > a) {
  transition:
    transform var(--atlantic-motion-fast) var(--atlantic-ease-out),
    background-color var(--atlantic-motion-standard) var(--atlantic-ease-out),
    color var(--atlantic-motion-standard) var(--atlantic-ease-out),
    border-color var(--atlantic-motion-standard) var(--atlantic-ease-out);
}

.service-photo img {
  transition: transform var(--atlantic-motion-standard) var(--atlantic-ease-out);
}

.service-photo:hover img {
  transform: none;
}

.slot-grid button {
  transition:
    background-color var(--atlantic-motion-fast) var(--atlantic-ease-out),
    color var(--atlantic-motion-fast) var(--atlantic-ease-out),
    border-color var(--atlantic-motion-fast) var(--atlantic-ease-out);
}

.booking-success:not([hidden]) {
  animation: atlanticSuccessIn 220ms var(--atlantic-ease-out) both;
}

@keyframes atlanticSuccessIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes atlanticSuccessFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (hover: hover) and (pointer: fine) {
  .service-photo:hover img {
    transform: scale(1.012);
  }

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

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

@media (max-width: 980px) {
  .site-menu {
    display: flex;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transform-origin: top;
    transition:
      opacity var(--atlantic-motion-standard) var(--atlantic-ease-out),
      transform var(--atlantic-motion-standard) var(--atlantic-ease-out),
      visibility 0s linear var(--atlantic-motion-standard);
  }

  .site-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-menu {
    transform: none;
    transition:
      opacity 120ms linear,
      visibility 0s linear 120ms;
  }

  .site-menu.is-open {
    transition-delay: 0s;
  }

  .service-photo img,
  :is(.btn, .header-book, .home-story-copy > a, .room-copy > a, .visit-copy > a, .section-link, .service-card-copy > a),
  .slot-grid button {
    transition-duration: 1ms;
  }

  .booking-success:not([hidden]) {
    animation: atlanticSuccessFade 120ms linear both;
  }
}

/* ATLANTIC_BOARDROOM_REFERENCE_CARDS_V1
   Service cards follow the supplied editorial split-card reference while retaining Atlantic colors. */
.services-page .service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border: 0;
}

.services-page .service-card,
.services-page .service-card:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 1fr);
  min-height: 430px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgb(7 27 51 / .07);
}

.services-page .service-card:last-child {
  border-bottom: 1px solid var(--line);
}

.services-page .service-photo,
.services-page .service-card:first-child .service-photo {
  min-height: 430px;
  background: var(--pale-blue);
}

.services-page .service-card-copy,
.services-page .service-card:first-child .service-card-copy {
  min-height: 430px;
  padding: clamp(30px, 3.6vw, 46px);
  justify-content: flex-start;
}

.service-meta {
  margin-bottom: clamp(30px, 4vw, 52px);
  align-items: center;
}

.service-duration,
.service-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgb(18 110 147 / .18);
}

.services-page .service-card h3 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: .98;
}

.services-page .service-card-copy > p:not(.service-meta, .service-price) {
  max-width: 48ch;
  line-height: 1.7;
}

.service-card-footer {
  width: 100%;
  margin-top: auto;
  padding-top: clamp(28px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-price {
  margin: 0;
  color: var(--midnight);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

.service-card-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.services-preview .service-list {
  gap: 16px;
  border: 0;
}

.services-preview .service-card,
.services-preview .service-card:first-child,
.services-preview .service-card:last-child {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgb(7 27 51 / .055);
}

.services-preview .service-card-copy,
.services-preview .service-card:first-child .service-card-copy {
  min-height: 320px;
}

@media (max-width: 760px) {
  .services-page .service-card,
  .services-page .service-card:first-child {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .services-page .service-photo,
  .services-page .service-card:first-child .service-photo {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .service-card-footer {
    padding-top: 32px;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .services-page .service-card-copy,
  .services-page .service-card:first-child .service-card-copy {
    min-height: 360px;
    padding: 28px 24px 30px;
  }

  .service-meta {
    margin-bottom: 30px;
  }

  .service-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
