:root {
  --ink: #17150f;
  --muted: #6f6a5e;
  --paper: #f7f2e9;
  --white: #fffdf8;
  --line: rgba(23, 21, 15, 0.14);
  --accent: #a95632;
  --accent-dark: #743720;
  --sea: #2f6f83;
  --sand: #f1d9ae;
  --shadow: 0 28px 90px rgba(23, 21, 15, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 22px 28px auto;
  z-index: 20;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 18, 13, 0.2);
  backdrop-filter: blur(22px);
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(23, 21, 15, 0.1);
  box-shadow: 0 18px 60px rgba(23, 21, 15, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #482410;
  background: var(--sand);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-header.scrolled .main-nav {
  border-color: rgba(23, 21, 15, 0.1);
  background: rgba(23, 21, 15, 0.04);
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(255, 253, 248, 0.16);
}

.site-header.scrolled .main-nav a:hover {
  background: rgba(169, 86, 50, 0.1);
}

.main-nav svg {
  width: 17px;
  height: 17px;
}

.main-nav a,
.header-action,
.booking-bar button,
.enquiry-form button {
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.main-nav a:hover,
.header-action:hover,
.booking-bar button:hover,
.enquiry-form button:hover {
  transform: translateY(-1px);
}

.header-action {
  justify-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sand);
  font-weight: 900;
}

.site-header.scrolled .header-action {
  color: var(--white);
  background: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px 28px 30px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1516483638261-f4dbaf036963?auto=format&fit=crop&w=2400&q=86");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 18%, rgba(241, 217, 174, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(14, 14, 11, 0.76), rgba(14, 14, 11, 0.14) 58%, rgba(14, 14, 11, 0.28)),
    linear-gradient(0deg, rgba(14, 14, 11, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--white);
  animation: heroIn 800ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe2b8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.booking-bar {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.72fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.booking-bar label {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  min-height: 66px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
}

.booking-bar label > svg {
  grid-row: 1 / 3;
  align-self: center;
  width: 20px;
  height: 20px;
  color: var(--sea);
}

.booking-bar span,
.enquiry-form span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-bar input,
.booking-bar select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.booking-bar button {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-dark);
  font-weight: 900;
}

.intro-band,
.stays-section,
.journey-section,
.service-section,
.enquiry-section,
.site-footer,
.policy-main,
.results-main,
.stay-main {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.intro-band div {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 22px;
  background: var(--white);
}

.intro-band span {
  color: var(--sea);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.intro-band p {
  margin: 4px 0 0;
  color: var(--muted);
}

.stays-section,
.service-section {
  padding: 92px 0 70px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.journey-copy h2,
.enquiry-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stay-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(23, 21, 15, 0.16);
}

.stay-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stay-card div {
  padding: 20px;
}

.stay-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stay-card h3 {
  margin: 10px 0 10px;
  font-size: 1.32rem;
}

.stay-card p,
.journey-copy p,
.service-list p,
.enquiry-section p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.stay-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0 84px;
}

.journey-image {
  min-height: 640px;
  border-radius: 36px;
  background-image: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1300&q=84");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.journey-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 30px;
  font-size: 1.05rem;
}

.journey-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.journey-steps article {
  display: grid;
  grid-template-columns: 52px 120px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: var(--white);
}

.journey-steps span {
  color: var(--sea);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.journey-steps p {
  margin: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.service-list article {
  min-height: 260px;
  padding: 22px;
  background: var(--white);
}

.service-list svg {
  width: 28px;
  height: 28px;
  margin-bottom: 52px;
  color: var(--sea);
}

.service-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 54px;
  padding: 46px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 21, 15, 0.88), rgba(23, 21, 15, 0.62)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1700&q=82");
  background-size: cover;
  background-position: center;
}

.enquiry-section .eyebrow {
  color: #ffe2b8;
}

.enquiry-section p {
  max-width: 470px;
  color: rgba(255, 253, 248, 0.74);
}

.enquiry-form {
  display: grid;
  gap: 12px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 18px;
  outline: 0;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.1);
}

.enquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.5);
}

.enquiry-form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: #482410;
  background: var(--sand);
  font-weight: 900;
}

#form-status {
  min-height: 22px;
  margin: 0;
  color: #ffe2b8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a:not(.brand),
.footer-links a {
  display: block;
  color: var(--accent-dark);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.policy-page {
  background:
    linear-gradient(rgba(247, 242, 233, 0.92), rgba(247, 242, 233, 0.98)),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=80");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.policy-page .site-header {
  position: sticky;
  top: 18px;
  margin: 18px 28px 0;
  inset: auto;
}

.policy-main {
  padding: 72px 0 82px;
}

.policy-content {
  max-width: 860px;
  padding: 42px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 24px 80px rgba(23, 21, 15, 0.1);
  backdrop-filter: blur(18px);
}

.policy-content h1 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 1.18rem;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.75;
}

.policy-content a {
  color: var(--accent-dark);
  font-weight: 800;
}

.results-page,
.stay-page {
  background:
    linear-gradient(180deg, rgba(247, 242, 233, 0.94), rgba(247, 242, 233, 1) 420px),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=78");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.results-page .site-header,
.stay-page .site-header {
  position: sticky;
  top: 18px;
  margin: 18px 28px 0;
  inset: auto;
}

.results-main {
  padding: 58px 0 80px;
}

.results-hero {
  max-width: 940px;
  margin-bottom: 28px;
}

.results-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 6.4vw, 7rem);
}

.results-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.results-search {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.72fr) auto;
  gap: 8px;
  margin-top: 28px;
  padding: 8px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 70px rgba(23, 21, 15, 0.1);
}

.results-search label {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(23, 21, 15, 0.04);
}

.results-search span,
.filters-panel span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.results-search input,
.results-search select,
.filters-panel select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.results-search button,
.results-toolbar button,
.result-rate a {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-dark);
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.results-search button {
  min-height: 62px;
  padding: 0 22px;
}

.results-search button:hover,
.results-toolbar button:hover,
.result-rate a:hover {
  transform: translateY(-1px);
}

.results-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 60px rgba(23, 21, 15, 0.08);
}

.filters-panel h2 {
  margin: 0;
  font-size: 1.4rem;
}

.filters-panel label {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.trust-note {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  color: var(--white);
  background: var(--sea);
}

.trust-note svg {
  width: 24px;
  height: 24px;
}

.trust-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.results-list {
  display: grid;
  gap: 14px;
}

.results-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.86);
}

.results-toolbar strong,
.results-toolbar span {
  display: block;
}

.results-toolbar span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.results-toolbar button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.result-card {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 60px rgba(23, 21, 15, 0.08);
}

.result-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

.result-copy {
  padding: 8px 0;
}

.result-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.result-topline span,
.result-topline b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.result-topline span {
  color: var(--accent-dark);
  background: rgba(169, 86, 50, 0.12);
}

.result-topline b {
  color: var(--sea);
  background: rgba(47, 111, 131, 0.1);
}

.result-copy h2 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.result-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.result-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.result-rate {
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 6px;
  padding: 12px;
  border-left: 1px solid var(--line);
}

.result-rate span,
.result-rate small {
  color: var(--muted);
}

.result-rate strong {
  font-size: 1.65rem;
}

.result-rate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 16px;
}

.result-rate a + a {
  margin-top: 4px;
  color: var(--accent-dark);
  background: rgba(169, 86, 50, 0.1);
}

.stay-main {
  padding: 58px 0 80px;
}

.stay-hero-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.stay-hero-detail h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}

.stay-hero-detail p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7;
}

.booking-summary {
  display: grid;
  gap: 7px;
  padding: 20px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 60px rgba(23, 21, 15, 0.08);
}

.booking-summary span,
.booking-summary small,
.stay-facts span {
  color: var(--muted);
}

.booking-summary strong {
  font-size: 1.8rem;
}

.booking-summary a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-dark);
  font-weight: 900;
}

.stay-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 10px;
  margin-bottom: 26px;
}

.stay-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
}

.stay-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.stay-detail-copy {
  padding: 34px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.9);
}

.stay-detail-copy h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.stay-detail-copy h2:not(:first-child) {
  margin-top: 30px;
}

.stay-detail-copy p,
.stay-detail-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.stay-facts {
  display: grid;
  gap: 10px;
}

.stay-facts article {
  padding: 18px;
  border: 1px solid rgba(23, 21, 15, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
}

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

.stay-facts strong {
  margin-top: 8px;
  font-size: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, -10px, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    inset: 14px 14px auto;
  }

  .main-nav {
    display: none;
  }

  .booking-bar,
  .results-search,
  .results-layout,
  .stay-grid,
  .journey-section,
  .service-list,
  .enquiry-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .filters-panel {
    position: static;
  }

  .result-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .result-rate {
    grid-column: 2;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .journey-image {
    min-height: 460px;
  }

  .service-list article {
    min-height: 220px;
  }

  .service-list svg {
    margin-bottom: 30px;
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px 10px auto;
    min-height: 62px;
    padding: 7px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .header-action {
    width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-action span {
    display: none;
  }

  .hero {
    padding: 112px 10px 16px;
  }

  h1 {
    font-size: 3.7rem;
  }

  .intro-band,
  .journey-steps article {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    gap: 8px;
    padding: 8px;
    border-radius: 28px;
  }

  .booking-bar label,
  .booking-bar button {
    border-radius: 20px;
  }

  .intro-band,
  .stays-section,
  .journey-section,
  .service-section,
  .enquiry-section,
  .site-footer,
  .policy-main,
  .results-main {
    width: min(100% - 22px, var(--max));
  }

  .enquiry-section {
    padding: 24px;
  }

  .policy-page .site-header {
    top: 10px;
    margin: 10px 10px 0;
  }

  .results-page .site-header {
    top: 10px;
    margin: 10px 10px 0;
  }

  .stay-page .site-header {
    top: 10px;
    margin: 10px 10px 0;
  }

  .results-main {
    padding-top: 36px;
  }

  .stay-main {
    width: min(100% - 22px, var(--max));
    padding-top: 36px;
  }

  .stay-hero-detail,
  .stay-gallery,
  .stay-detail-layout {
    grid-template-columns: 1fr;
  }

  .stay-gallery img {
    height: 300px;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-rate {
    grid-column: auto;
  }

  .result-card img {
    min-height: 260px;
  }

  .policy-main {
    padding-top: 40px;
  }

  .policy-content {
    padding: 24px;
    border-radius: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
