
:root {
  --ink: #17201f;
  --deep: #14201f;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --gold: #b68a43;
  --muted: #6e746f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.header {
  align-items: center;
  background: rgba(18, 28, 27, 0.96);
  color: white;
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 6vw, 96px);
  position: absolute;
  right: 0;
  top: 34px;
  z-index: 10;
}

.topline {
  align-items: center;
  background: #0b1413;
  color: #9daaa4;
  display: flex;
  font-size: 9px;
  height: 34px;
  justify-content: space-between;
  left: 0;
  letter-spacing: 0.12em;
  padding: 0 clamp(24px, 6vw, 96px);
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
  z-index: 11;
}

.topline a {
  color: #d8bc8a;
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand-logo-crop {
  display: block;
  height: 72px;
  overflow: hidden;
  position: relative;
  width: 130px;
}

.brand-logo-crop img {
  filter: invert(1);
  left: -2px;
  mix-blend-mode: screen;
  position: absolute;
  top: -48px;
  width: 134px;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  color: #d9dedb;
  font-size: 12px;
  letter-spacing: 0.08em;
}

nav a:hover {
  color: #fff;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 14px 22px;
  text-transform: uppercase;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}

.menu-toggle span {
  background: #fff;
  display: block;
  height: 1px;
  margin: 6px 0;
  transition: 0.25s ease;
  width: 24px;
}

.hero {
  background-image: url("../images/french-room.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 790px;
  padding: 210px clamp(24px, 8vw, 130px) 70px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  background: url("../images/french-room.jpg") center/cover;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-video video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.trust-strip {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e7e0d5;
  display: flex;
  gap: 28px;
  justify-content: center;
  overflow: hidden;
  padding: 21px 24px;
  white-space: nowrap;
}

.booking-bar {
  align-items: stretch;
  background: white;
  box-shadow: 0 20px 55px rgba(27, 34, 32, 0.14);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.05fr;
  margin: -42px auto 0;
  max-width: 1180px;
  position: relative;
  width: calc(100% - 48px);
  z-index: 8;
}

.booking-bar > div,
.booking-bar > label {
  border-right: 1px solid #e8e1d7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86px;
  padding: 18px 24px;
}

.booking-bar span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.booking-title strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.booking-bar input,
.booking-bar select {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 14px;
  outline: none;
  padding: 0;
  width: 100%;
}

.booking-bar > a {
  align-items: center;
  background: var(--gold);
  color: white;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 15px;
  justify-content: center;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.booking-bar > a span {
  color: white;
  font-size: 16px;
  margin: 0;
}

.trust-strip span {
  color: #68716d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.trust-strip i {
  background: var(--gold);
  border-radius: 50%;
  height: 4px;
  min-width: 4px;
  width: 4px;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 17, 0.91) 0%, rgba(8, 18, 17, 0.57) 47%, rgba(8, 18, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 18, 17, 0.86), transparent 52%);
  inset: 0;
  position: absolute;
}

.hero-side-label {
  bottom: 190px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.28em;
  position: absolute;
  right: 34px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  z-index: 2;
}

.live-dot {
  animation: pulse 1.8s ease-in-out infinite;
  background: #d7b777;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-right: 8px;
  width: 6px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 183, 119, 0.4); }
  50% { box-shadow: 0 0 0 7px rgba(215, 183, 119, 0); }
}

.scroll-cue {
  align-items: center;
  bottom: 33px;
  color: #cbd3cf;
  display: flex;
  font-size: 8px;
  gap: 13px;
  letter-spacing: 0.16em;
  position: absolute;
  right: clamp(24px, 8vw, 130px);
  z-index: 2;
}

.scroll-cue span {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  height: 30px;
  position: relative;
  width: 18px;
}

.scroll-cue span::after {
  animation: scrollDown 1.8s ease-in-out infinite;
  background: white;
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 3px;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(11px); }
}

.hero-content,
.hero-facts {
  position: relative;
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin: 0 0 24px;
}

.eyebrow.gold {
  color: var(--gold);
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.8vw, 98px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 em {
  color: #d8bc8a;
  font-weight: 400;
}

.hero-copy {
  color: #d9dfdc;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  margin: 32px 0;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 28px;
  justify-content: center;
  letter-spacing: 0.13em;
  min-height: 54px;
  padding: 0 26px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.button.primary {
  background: var(--gold);
  color: white;
}

.button.primary:hover {
  background: #c49a54;
  transform: translateY(-2px);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.ghost:hover {
  background: white;
  color: var(--ink);
}

.hero-facts {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  bottom: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: clamp(24px, 8vw, 130px);
  max-width: 720px;
  position: absolute;
  width: calc(100% - 48px);
}

.hero-facts div {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 24px 0 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.hero-facts span {
  color: #bdc7c2;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 5px;
  text-transform: uppercase;
}

.section {
  padding: 112px clamp(24px, 8vw, 130px);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

.intro {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.experience {
  align-items: center;
  background: #111d1c;
  color: white;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.75fr 1.25fr;
}

.experience-copy h2 {
  margin-bottom: 28px;
}

.experience-copy > p:not(.eyebrow) {
  color: #b9c4bf;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
}

.experience-highlights {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 36px;
}

.experience-highlights a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  display: grid;
  gap: 16px;
  grid-template-columns: 52px 1fr auto;
  padding: 18px 0;
  transition: color 0.25s ease, padding 0.25s ease;
}

.experience-highlights a:hover {
  color: #d5b87d;
  padding-left: 8px;
}

.experience-highlights strong {
  color: #d5b87d;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.experience-highlights span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
}

.experience-gallery figure {
  height: 244px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.experience-gallery .experience-main {
  grid-row: 1 / 3;
  height: 500px;
}

.experience-gallery figure::after {
  background: linear-gradient(0deg, rgba(6, 14, 13, 0.82), transparent 65%);
  content: "";
  inset: 0;
  position: absolute;
}

.experience-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-gallery figure:hover img {
  transform: scale(1.045);
}

.experience-gallery figcaption {
  bottom: 22px;
  display: grid;
  gap: 7px;
  left: 24px;
  position: absolute;
  z-index: 2;
}

.experience-gallery figcaption span {
  color: #d5b87d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.experience-gallery figcaption strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.intro-copy {
  border-left: 1px solid #ddd5c8;
  padding-left: clamp(30px, 5vw, 72px);
}

.intro-copy p,
.section-heading > p,
.restaurant-copy > p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.intro-copy a,
.restaurant-copy a {
  color: var(--gold);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 16px;
  text-transform: uppercase;
}

.rooms {
  background: var(--cream);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 48px;
}

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

.room-card {
  height: 485px;
  overflow: hidden;
  position: relative;
}

.room-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover img {
  transform: scale(1.035);
}

.room-overlay {
  align-items: end;
  background: linear-gradient(0deg, rgba(11, 20, 19, 0.88), transparent 55%);
  bottom: 0;
  color: white;
  display: flex;
  gap: 20px;
  inset: 0;
  padding: 32px;
  position: absolute;
}

.room-overlay > span {
  color: #d9bd8d;
  font-family: Georgia, serif;
  font-size: 14px;
}

.room-overlay h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  margin: 0;
}

.room-overlay p {
  color: #ccd2cf;
  font-size: 12px;
  margin: 7px 0 0;
}

.room-overlay b {
  color: #d9bd8d;
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 14px;
  text-transform: uppercase;
}

.facilities {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 1.05fr 0.95fr;
}

.facility-image {
  position: relative;
}

.facility-image img {
  height: 650px;
  object-fit: cover;
}

.image-note {
  background: var(--gold);
  bottom: -36px;
  color: white;
  max-width: 300px;
  padding: 24px 30px;
  position: absolute;
  right: -32px;
}

.image-note span,
.image-note strong {
  display: block;
}

.image-note span {
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.image-note strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.facility-content h2 {
  margin-bottom: 36px;
}

.facility-list a {
  align-items: start;
  border-top: 1px solid #e2ddd3;
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr 20px;
  padding: 22px 0;
  transition: padding 0.2s ease;
}

.facility-list a:hover {
  padding-left: 9px;
}

.facility-list a > b {
  color: var(--gold);
  font-weight: 400;
  padding-top: 4px;
}

.facility-icon {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 29px;
  text-align: center;
}

.facility-list h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 7px;
}

.facility-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.meeting {
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.meeting-image img {
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.meeting-content {
  padding: clamp(60px, 8vw, 115px);
}

.meeting-content .eyebrow {
  color: #c7a66e;
}

.meeting-content > p:not(.eyebrow) {
  color: #bfc9c4;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 26px 0 34px;
}

.capacity-grid {
  border-bottom: 1px solid #42504d;
  border-top: 1px solid #42504d;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
}

.capacity-grid span {
  color: #aeb9b4;
  font-size: 11px;
  padding: 18px 0;
}

.capacity-grid strong {
  color: white;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  margin-right: 8px;
}

.button.light {
  background: white;
  color: var(--ink);
}

.restaurant {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.75fr 1.25fr;
}

.conversion {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(14, 25, 24, 0.94), rgba(14, 25, 24, 0.72)),
    url("../images/spa-2.jpg") center/cover;
  color: white;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 92px clamp(24px, 8vw, 130px);
}

.conversion > div:last-child > p {
  color: #c4ceca;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.restaurant img {
  height: 510px;
  object-fit: cover;
}

.restaurant-copy h2 {
  margin-bottom: 26px;
}

.contact {
  background: var(--cream);
}

.location {
  background: var(--paper);
}

.location-grid {
  border-top: 1px solid #ddd6ca;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.location-grid article {
  border-right: 1px solid #ddd6ca;
  padding: 34px 38px 18px 0;
}

.location-grid article:not(:first-child) {
  padding-left: 38px;
}

.location-grid span {
  color: var(--gold);
  display: block;
  font-family: Georgia, serif;
  font-size: 13px;
  margin-bottom: 32px;
}

.location-grid strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 14px;
}

.location-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.contact-title {
  max-width: 800px;
}

.contact-grid {
  border-top: 1px solid #d8d0c3;
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  margin-top: 58px;
}

.contact-grid a {
  border-right: 1px solid #d8d0c3;
  padding: 30px 28px 30px 0;
}

.contact-grid a:not(:first-child) {
  padding-left: 28px;
}

.contact-grid span,
.contact-grid strong {
  display: block;
}

.contact-grid span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 11px;
}

.contact-grid strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

footer {
  align-items: center;
  background: #111b1a;
  color: white;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 55px clamp(24px, 8vw, 130px);
}

footer > p {
  color: #aeb7b2;
  font-family: Georgia, serif;
  text-align: center;
}

footer > div {
  display: flex;
  font-size: 11px;
  gap: 24px;
  justify-content: end;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-actions {
  align-items: center;
  bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  position: fixed;
  right: 24px;
  z-index: 20;
}

.floating-actions a {
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 18px 20px;
  text-transform: uppercase;
}

.floating-actions a:first-child {
  background: var(--gold);
  color: white;
}

.floating-actions strong {
  align-items: center;
  background: #1f9c63;
  border-radius: 50%;
  color: white;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.floating-actions a:last-child {
  align-items: center;
  display: flex;
  gap: 12px;
}

/* Detail pages */
.detail-hero {
  color: white;
  height: 760px;
  overflow: hidden;
  position: relative;
}

.detail-hero > img {
  height: 100%;
  object-fit: cover;
}

.detail-hero-shade {
  background: linear-gradient(90deg, rgba(10, 20, 19, 0.9), rgba(10, 20, 19, 0.24));
  inset: 0;
  position: absolute;
}

.detail-hero-content {
  bottom: 95px;
  left: clamp(24px, 8vw, 130px);
  max-width: 730px;
  position: absolute;
}

.detail-hero-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(65px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
}

.detail-hero-content > p:not(.eyebrow) {
  color: #e0e5e2;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.65;
  margin: 28px 0 30px;
  max-width: 620px;
}

.detail-facts {
  background: var(--deep);
  color: white;
  display: flex;
  justify-content: center;
}

.detail-facts > div {
  border-right: 1px solid #3d4b48;
  min-width: 190px;
  padding: 30px 45px;
}

.detail-facts strong,
.detail-facts span {
  display: block;
}

.detail-facts strong {
  color: #d6b879;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.detail-facts span {
  color: #aeb9b4;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 5px;
  text-transform: uppercase;
}

.detail-intro {
  display: grid;
  gap: clamp(55px, 9vw, 135px);
  grid-template-columns: 1.05fr 0.95fr;
}

.detail-intro h2 {
  font-size: clamp(38px, 4.6vw, 63px);
}

.detail-intro > div:last-child > p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 20px;
}

.direct-note {
  border-left: 3px solid var(--gold);
  margin-top: 34px;
  padding: 4px 0 4px 24px;
}

.direct-note span,
.direct-note strong,
.direct-note a {
  display: block;
}

.direct-note span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 7px;
}

.direct-note strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.direct-note a {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 10px;
  text-transform: uppercase;
}

.detail-gallery {
  background: var(--cream);
}

.detail-gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 300px 300px;
}

.detail-gallery-grid img {
  height: 100%;
  object-fit: cover;
}

.detail-gallery-grid img:first-child {
  grid-row: 1 / 3;
}

.detail-services {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}

.detail-services h2 {
  font-size: clamp(38px, 4.5vw, 60px);
}

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

.service-grid > div {
  border-bottom: 1px solid #ddd7cd;
  padding: 20px 10px 20px 0;
}

.service-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  margin-right: 14px;
}

.service-grid strong {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.detail-cta {
  align-items: center;
  background:
    linear-gradient(rgba(11, 22, 21, 0.85), rgba(11, 22, 21, 0.85)),
    url("../images/family-room-2.jpg") center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 110px 24px;
  text-align: center;
}

.detail-cta > p:not(.eyebrow) {
  color: #c6cfcb;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 590px;
}

.detail-cta > div {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.signature {
  background: var(--cream);
}

.signature-title {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 0.55fr 1.45fr;
  margin-bottom: 72px;
}

.signature-title h2 {
  max-width: 830px;
}

.signature-title em {
  color: var(--gold);
  font-weight: 400;
}

.reason-grid {
  border-left: 1px solid #d8d0c3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid article {
  border-bottom: 1px solid #d8d0c3;
  border-right: 1px solid #d8d0c3;
  border-top: 1px solid #d8d0c3;
  min-height: 250px;
  padding: 30px 28px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.reason-grid article:hover {
  background: #fff;
  transform: translateY(-6px);
}

.reason-grid span,
.amenity-grid span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.reason-grid h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  margin: 62px 0 14px;
}

.reason-grid p,
.amenities-heading > p:not(.eyebrow),
.amenity-grid p,
.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-family: Georgia, serif;
  line-height: 1.65;
}

.amenities {
  background: #fff;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.75fr 1.25fr;
}

.amenities-heading h2 {
  font-size: clamp(40px, 4vw, 58px);
  margin-bottom: 26px;
}

.amenity-grid {
  border-top: 1px solid #ddd7cd;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.amenity-grid article {
  border-bottom: 1px solid #ddd7cd;
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  min-height: 150px;
  padding: 26px 22px 24px 0;
}

.amenity-grid article:nth-child(odd) {
  border-right: 1px solid #ddd7cd;
  margin-right: 24px;
}

.amenity-grid h3 {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 10px;
}

.amenity-grid p {
  font-size: 14px;
  margin: 0;
}

.journey {
  background: #14201f;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.journey-image img {
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.journey-content {
  padding: 100px clamp(28px, 7vw, 110px);
}

.journey-content h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  margin-bottom: 48px;
}

.journey-content ol {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-content li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 24px;
  grid-template-columns: 54px 1fr;
  padding: 21px 0;
}

.journey-content li > span {
  color: #d5b87d;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding-top: 4px;
}

.journey-content strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.journey-content li p {
  color: #aebbb5;
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 7px 0 0;
}

.faq {
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-heading h2 {
  font-size: clamp(42px, 4.4vw, 62px);
  margin-bottom: 25px;
}

.faq-heading a {
  color: var(--gold);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 22px;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid #d8d0c3;
}

.faq-list details {
  border-bottom: 1px solid #d8d0c3;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-family: Georgia, serif;
  font-size: 18px;
  gap: 18px;
  grid-template-columns: 28px 1fr auto;
  list-style: none;
  padding: 24px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary b {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details > p {
  color: var(--muted);
  font-family: Georgia, serif;
  line-height: 1.65;
  margin: -4px 46px 26px;
}

@media (max-width: 900px) {
  .header {
    height: 76px;
  }

  nav {
    background: #111d1c;
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 76px;
    transition: max-height 0.35s ease;
  }

  nav.mobile-open {
    max-height: 420px;
  }

  nav a {
    border-top: 1px solid #2e3b38;
    font-size: 12px;
    padding: 20px 28px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 750px;
    padding-top: 160px;
  }

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

  .hero-facts div:nth-child(3),
  .hero-facts div:nth-child(4) {
    display: none;
  }

  .intro,
  .section-heading,
  .facilities,
  .meeting,
  .restaurant,
  .conversion,
  .experience,
  .detail-intro,
  .detail-services {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: -24px;
  }

  .booking-title {
    grid-column: 1 / 3;
  }

  .booking-bar > a {
    min-height: 68px;
  }

  .experience-gallery .experience-main {
    height: 430px;
  }

  .intro {
    gap: 40px;
  }

  .intro-copy {
    border-left: 0;
    border-top: 1px solid #ddd5c8;
    padding-left: 0;
    padding-top: 32px;
  }

  .section-heading {
    gap: 24px;
  }

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

  .room-card {
    height: 430px;
  }

  .facility-image img {
    height: 520px;
  }

  .image-note {
    bottom: -24px;
    right: 16px;
  }

  .meeting-image img {
    min-height: 460px;
  }

  .meeting-content {
    padding: 70px 24px;
  }

  .contact-grid,
  footer,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-grid article,
  .location-grid article:not(:first-child) {
    border-bottom: 1px solid #ddd6ca;
    border-right: 0;
    padding: 28px 0;
  }

  .contact-grid a,
  .contact-grid a:not(:first-child) {
    border-bottom: 1px solid #d8d0c3;
    border-right: 0;
    padding: 24px 0;
  }

  footer > p {
    text-align: left;
  }

  footer > div {
    justify-content: start;
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .detail-hero {
    height: 680px;
  }

  .detail-hero-content {
    bottom: 65px;
  }

  .detail-facts {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .detail-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 360px);
  }

  .detail-gallery-grid img:first-child {
    grid-row: auto;
  }

  .signature-title,
  .amenities,
  .faq {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .signature-title {
    margin-bottom: 46px;
  }

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

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

  .journey-image img {
    min-height: 520px;
  }
}

@media (max-width: 520px) {
  .brand-logo-crop {
    height: 62px;
    width: 96px;
  }

  .brand-logo-crop img {
    top: -36px;
    width: 100px;
  }

  .header-cta {
    font-size: 9px;
  }

  .topline span {
    display: none;
  }

  .topline {
    justify-content: center;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .section {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .button {
    width: 100%;
  }

  .hero-video {
    background-image: url("../images/french-room.jpg");
  }

  .booking-bar {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
  }

  .booking-title {
    grid-column: auto;
  }

  .booking-bar > div,
  .booking-bar > label {
    border-bottom: 1px solid #e8e1d7;
    border-right: 0;
    min-height: 72px;
    padding: 14px 24px;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-gallery .experience-main,
  .experience-gallery figure {
    grid-row: auto;
    height: 280px;
  }

  .room-card {
    height: 390px;
  }

  .facility-image img {
    height: 420px;
  }

  .floating-actions {
    bottom: 0;
    left: 0;
    right: 0;
  }

  .floating-actions a {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .detail-hero-content h1 {
    font-size: 58px;
  }

  .detail-hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .detail-gallery-grid {
    grid-template-rows: repeat(3, 260px);
  }

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

  .detail-cta > div {
    flex-direction: column;
    width: 100%;
  }

  .reason-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid article {
    min-height: 210px;
  }

  .amenity-grid article:nth-child(odd) {
    border-right: 0;
    margin-right: 0;
  }

  .journey-image img {
    min-height: 380px;
  }

  .journey-content {
    padding: 72px 24px;
  }

  .faq-list summary {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video video { display: none; }
  .live-dot, .scroll-cue span::after { animation: none; }
}
