:root {
  --ink: #16231f;
  --muted: #586760;
  --paper: #fffdf8;
  --soft: #f4eee2;
  --green: #173d35;
  --green-2: #2f5d50;
  --clay: #9f4a2a;
  --clay-dark: #74351f;
  --sky: #dbe8e6;
  --line: #ded6c8;
  --white: #ffffff;
  --shadow: 0 16px 48px rgb(22 35 31 / 14%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 253 248 / 94%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 138px;
  min-height: 52px;
  color: var(--green);
  text-decoration: none;
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.05;
}

.brand-place {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--green);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: var(--green);
  outline: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgb(16 26 23 / 82%) 0%, rgb(16 26 23 / 58%) 43%, rgb(16 26 23 / 18%) 100%),
    url("/public/assets/hero-room.webp");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 80px;
}

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

.hero .eyebrow {
  color: #ffd9bd;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgb(255 255 255 / 92%);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--clay-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 78%);
  background: rgb(255 255 255 / 10%);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgb(255 255 255 / 20%);
}

.notice-band {
  background: var(--sky);
  border-block: 1px solid #c4d7d3;
}

.notice-inner {
  display: flex;
  gap: 10px;
  padding: 18px 0;
  color: var(--green);
}

.notice-inner strong {
  white-space: nowrap;
}

.quick-facts {
  background: var(--paper);
}

.fact-grid,
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fact-grid {
  padding: 36px 0;
}

.fact-grid article,
.activity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgb(22 35 31 / 7%);
}

.fact-grid article {
  padding: 22px;
}

.fact-grid h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.fact-grid p,
.section-copy p:last-child,
.activity-card p {
  margin-bottom: 0;
}

.section {
  scroll-margin-top: 92px;
  padding: 88px 0;
}

.split-section,
.rates-section {
  background: var(--soft);
}

.breakfast-section,
.enquiry-section {
  background: var(--paper);
}

.location-section {
  background: #eef5f3;
}

.split-grid,
.breakfast-grid,
.rates-grid,
.enquiry-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.breakfast-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.breakfast-copy {
  max-width: 760px;
}

.breakfast-copy .section-copy {
  max-width: none;
}

.section-copy {
  max-width: 650px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--green);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--clay);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.image-stack.single-image {
  display: block;
}

.image-panel,
.wide-image,
.footer-image {
  margin: 0;
}

.image-panel img,
.wide-image img,
.activity-card img,
.footer-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-panel.large {
  grid-row: span 2;
}

.image-panel.large img {
  aspect-ratio: 4 / 3;
}

.image-panel:not(.large) img {
  aspect-ratio: 1 / 1;
}

.wide-image img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.activity-card {
  overflow: hidden;
}

.activity-card img {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.activity-card div {
  padding: 22px;
}

.activity-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.rate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rate-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.rate-table caption {
  padding: 18px 18px 0;
  color: var(--green);
  font-weight: 800;
  text-align: left;
}

.rate-table th,
.rate-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.rate-table th {
  color: var(--green);
  background: #edf4f1;
  font-size: 0.9rem;
}

.rate-table td:nth-child(2) {
  color: var(--clay-dark);
  font-size: 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.enquiry-grid {
  align-items: start;
}

.contact-shortcuts {
  margin-top: 22px;
}

.contact-shortcuts a {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.enquiry-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-cols {
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label {
  color: var(--green);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfc5b4;
  border-radius: 6px;
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgb(47 93 80 / 24%);
}

.form-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  color: #641f16;
  border: 1px solid #d7a49a;
  border-radius: 6px;
  background: #fff0ed;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.arrival-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 70px 0;
  color: var(--white);
  background: var(--green);
}

.site-footer .eyebrow {
  color: #ffcaa8;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.footer-image img {
  aspect-ratio: 4 / 3;
  border: 1px solid rgb(255 255 255 / 20%);
}

.message-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.message-shell {
  width: min(640px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.message-shell h1 {
  color: var(--green);
  font-size: 2.2rem;
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .split-grid,
  .breakfast-grid,
  .rates-grid,
  .enquiry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .breakfast-grid .wide-image {
    order: 2;
  }

  .activity-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .footer-image {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    color: var(--green);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font-weight: 800;
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .nav-toggle-bars {
    position: relative;
  }

  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle-bars::before {
    top: -6px;
  }

  .nav-toggle-bars::after {
    top: 6px;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background-image:
      linear-gradient(0deg, rgb(16 26 23 / 86%) 0%, rgb(16 26 23 / 46%) 100%),
      url("/public/assets/hero-room.webp");
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 82svh;
    padding: 84px 0 48px;
  }

  .notice-inner {
    flex-direction: column;
  }

  .section {
    padding: 62px 0;
  }

  .feature-list,
  .two-cols,
  .three-cols {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-panel:not(.large) img {
    aspect-ratio: 4 / 3;
  }

  .enquiry-form {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .header-inner,
  .section-inner,
  .hero-content {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .nav-toggle-label {
    display: none;
  }
}
