:root {
  --ink: #18201d;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --sage: #7d8e7f;
  --deep: #203029;
  --line: rgba(24, 32, 29, 0.14);
  --yellow: #E7B623;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--deep);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand {
  transition: opacity 0.25s ease;
}
.brand:hover {
  opacity: 0.82;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.brand-logo {
  width: 42px;
  height: 42px;
}
.brand-logo svg {
  width: 100%;
  height: 100%;
  fill: var(--yellow);
}
.brand-logo {
  transition: transform 0.35s ease;
}
.brand:hover .brand-logo {
  transform: rotate(-6deg) scale(1.06);
}
.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 19px;
}
.brand small,
.footer-brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  transition: 0.25s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  background: var(--yellow);
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}
.button-small {
  min-height: 42px;
  padding: 0 20px;
}
.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  padding: 8vw 5vw 5vw;
  background: url("./images/marys-front-6.jpg") bottom/cover no-repeat;
  background-image: image-set(
    url("./images/marys-front-6@0,75x.jpg") 1x,
    url("./images/marys-front-6.jpg") 2x
  );
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 24, 21, 0.86) 0%,
      rgba(15, 24, 21, 0.53) 48%,
      rgba(15, 24, 21, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(15, 24, 21, 0.6), transparent 55%);
}
.hero-content {
  grid-area: content;
}
.hero-content,
.booking-card {
  position: relative;
  z-index: 1;
}
.hero-content {
  animation: fade-up 0.7s ease both;
}
.eyebrow,
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 24px;
  height: 1px;
  background: white;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 25px 0;
  max-width: 950px;
}
.hero h1 em {
  font-weight: 600;
}
.hero-content > p {
  font-size: 18px;
  max-width: 580px;
  opacity: 0.86;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 32px 0 50px;
}
.text-link {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 5px;
}
.trust-row {
  display: flex;
  gap: 48px;
}
.trust-row div {
  display: flex;
  flex-direction: column;
}
.trust-row strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}
.trust-row span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
}
.booking-card {
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  max-width: 390px;
  margin-left: auto;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}
.booking-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
}
.booking-title span {
  font-family: "Playfair Display", serif;
  font-size: 21px;
}
.booking-title small {
  font-size: 10px;
  color: #5f6d64;
}
.booking-card form {
  display: grid;
  gap: 12px;
}
.booking-card label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.booking-card input,
.booking-card select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  background: white;
  padding: 14px;
  font: inherit;
  color: var(--ink);
}
.booking-card .button {
  width: 100%;
  margin-top: 4px;
}
.booking-note {
  text-align: center;
  font-size: 11px;
  color: #68736c;
  margin: 13px 0 0;
}
.ticker {
  height: 62px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  overflow: hidden;
}
.ticker i {
  font-style: normal;
  color: var(--yellow);
}
.section {
  padding: 110px 7vw;
}
.section-label {
  margin-bottom: 30px;
  color: #6c786f;
}
.section-label.light {
  color: #b7c0ba;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 10vw;
  align-items: end;
}
.intro h2,
.section-head h2,
.services h2,
.location h2,
.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}
.intro-grid p,
.section-head > p,
.services-intro > p,
.location-copy > p {
  color: #5d6861;
  font-size: 17px;
}
.underlined {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid;
}
.rooms {
  background: var(--cream);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 10vw;
  align-items: end;
  margin-bottom: 50px;
}
.room-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}
.room-card {
  background: var(--paper);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(24, 32, 29, 0.12);
}
.room-main {
  grid-row: span 2;
}
.room-image {
  min-height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.room-main .room-image {
  height: 590px;
}
.room-double {
  background-image: url("./images/room-double-1.jpg");
  background-image: image-set(
    url("./images/room-double-1@0,75x.jpg") 1x,
    url("./images/room-double-1.jpg") 2x
  );
}
.room-single {
  background-image: url("./images/room-single-1.jpg");
  background-image: image-set(
    url("./images/room-single-1@0,75x.jpg") 1x,
    url("./images/room-single-1.jpg") 2x
  );
}
.room-twin {
  background-image: url("./images/room-twin-1.jpg");
  background-image: image-set(
    url("./images/room-twin-1@0,75x.jpg") 1x,
    url("./images/room-twin-1.jpg") 2x
  );
}
.room-copy {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin: 0 0 4px;
}
.room-copy p {
  margin: 0;
  color: #68736c;
  font-size: 13px;
}
.services {
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
.services-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}
.services-intro > p {
  color: #b7c0ba;
}
.service {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  gap: 20px;
  padding: 31px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  align-items: start;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.service:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.035);
}
.service > b {
  transition: transform 0.25s ease;
}
.service:hover > b {
  transform: translate(4px, -4px);
}
.service:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.service > span {
  font-size: 12px;
  color: #8d9b92;
}
.service h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 8px;
}
.service p {
  margin: 0;
  color: #aeb8b1;
}
.service-hours {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #aeb8b1;
}
.service-hours div {
  display: flex;
  gap: 16px;
}
.service-hours dt {
  min-width: 68px;
  color: white;
  font-weight: 700;
}
.service-hours dd {
  margin: 0;
}
.location-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--cream);
  min-height: 610px;
}
.location {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
.map-art {
  position: relative;
  overflow: hidden;
  background: #d8ddd5;
}
.map-art:before,
.map-art:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(45, 63, 53, 0.2);
  border-radius: 50%;
  width: 540px;
  height: 540px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.map-art:after {
  width: 350px;
  height: 350px;
}
.street {
  position: absolute;
  background: #f5f2eb;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.s1 {
  height: 80px;
  width: 120%;
  top: 42%;
  left: -10%;
  transform: rotate(-12deg);
}
.s2 {
  width: 85px;
  height: 120%;
  left: 37%;
  top: -10%;
  transform: rotate(15deg);
}
.s3 {
  height: 55px;
  width: 100%;
  bottom: 18%;
  left: 0;
  transform: rotate(8deg);
}
.station {
  position: absolute;
  top: 22%;
  left: 13%;
  padding: 28px 55px;
  background: #b9c4b7;
  border: 2px solid #697a6d;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.pin {
  position: absolute;
  left: 58%;
  top: 48%;
  width: 62px;
  height: 62px;
  border-radius: 50% 50% 50% 0;
  background: var(--yellow);
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(41, 57, 48, 0.28);
}
.pin span {
  transform: rotate(45deg);
  font-family: "Playfair Display";
  font-size: 26px;
  color: white;
}
.location-copy {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-copy > p {
  margin: 30px 0;
}
.distance-list {
  display: grid;
  gap: 12px;
  margin-bottom: 35px;
}
.distance-list span {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.distance-list b {
  min-width: 55px;
}
.button.dark {
  background: var(--deep);
  align-self: flex-start;
}
.reviews {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}
.review-score {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.review-score > strong {
  font-family: "Playfair Display";
  font-size: 54px;
}
.review-score > span {
  text-align: left;
  font-weight: 700;
  line-height: 1.2;
}
.review-score small {
  font-weight: 400;
  color: #69746d;
}
.reviews blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
  margin: 55px 0;
}
.review-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.review-author > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  font-size: 12px;
  font-weight: 700;
}
.review-author div {
  text-align: left;
}
.review-author strong,
.review-author small {
  display: block;
}
.review-author small {
  color: #788078;
}
.final-cta {
  background: var(--yellow);
  color: white;
  padding: 90px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.button-light {
  background: white;
  color: var(--ink);
  white-space: nowrap;
}
footer {
  padding: 70px 7vw 30px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  background: #131b18;
  color: white;
}
footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
footer > div > strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #93a099;
  margin-bottom: 8px;
}
footer p {
  margin: 0;
  color: #bbc2be;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  font-size: 11px;
}
.toast {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: var(--deep);
  color: white;
  padding: 16px 22px;
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
  z-index: 30;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.mobile-contact-bar {
  display: none;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .booking-card {
    margin: 50px 0 0;
    max-width: none;
    width: 100%;
  }
  .trust-row {
    gap: 22px;
    flex-wrap: wrap;
  }
  .intro-grid,
  .section-head,
  .services,
  .location-card {
    grid-template-columns: 1fr;
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .room-main {
    grid-row: auto;
  }
  .room-main .room-image {
    height: 380px;
  }
  .services-intro {
    position: static;
  }
  .map-art {
    min-height: 430px;
  }
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .site-header {
    padding: 0 20px;
  }
  .site-header .button-small {
    display: none;
  }
  .hero {
    padding: 55px 20px 35px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .trust-row div {
    min-width: 100px;
  }
  .ticker {
    justify-content: flex-start;
    padding-left: 20px;
  }
  .section {
    padding: 80px 20px;
  }
  .section-head {
    gap: 30px;
  }
  .room-main .room-image {
    height: 320px;
  }
  .location-copy {
    padding: 45px 28px;
  }
  .reviews blockquote {
    font-size: 31px;
  }
  .final-cta {
    padding: 70px 20px;
  }
  .final-cta h2 {
    font-size: 40px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 55px 20px 90px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .copyright {
    grid-column: 1;
  }
  .booking-title {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(19, 27, 24, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }
  .mobile-contact-bar a {
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-contact-bar a:first-child {
    background: var(--yellow);
  }
}
