:root {
  --ink: #17211d;
  --muted: #61706a;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #315f4c;
  --green-dark: #203f33;
  --blue: #2e5d78;
  --clay: #b65f3d;
  --line: #d9ddd4;
  --soft: #eef3ed;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.compact {
  position: static;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 240px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font: 700 17px/1.2 Arial, sans-serif;
}

.brand small {
  color: var(--muted);
  font: 500 11px/1.35 Arial, sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 13px/1 Arial, sans-serif;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--soft);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  background: var(--white);
}

.hero-media {
  min-height: 460px;
  height: clamp(460px, 56vh, 640px);
  max-height: none;
  background:
    linear-gradient(180deg, rgba(23, 33, 29, 0.02), rgba(23, 33, 29, 0.16)),
    url("images/advert-gallery/tim-rear-garden-view-0160-natural-hero-wide.jpg") center 54% / cover no-repeat;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 4vw, 56px) clamp(44px, 6vw, 78px);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font: 800 12px/1.3 Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.3vw, 68px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-content p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font: 800 14px/1 Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green);
  background: transparent;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 34px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.quick-facts div {
  padding: 16px;
  background: var(--paper);
}

.quick-facts dt {
  color: var(--muted);
  font: 700 12px/1.4 Arial, sans-serif;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  font: 800 18px/1.2 Arial, sans-serif;
}

.section,
.band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--green-dark);
  color: var(--white);
}

.band .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.intro .feature-grid {
  align-self: stretch;
}

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

.compact-heading {
  margin-top: 28px;
  margin-bottom: 18px;
}

.compact-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid,
.rates-grid,
.area-grid,
.info-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  position: relative;
  padding: 24px 24px 24px 30px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 3px;
  height: 74px;
  max-height: calc(100% - 48px);
  background: var(--clay);
  border-radius: 999px;
}

.feature-grid p {
  color: var(--muted);
}

.band .feature-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 9px;
  height: 9px;
  background: var(--clay);
  border-radius: 50%;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(210px, 22vw);
  gap: 14px;
}

.gallery-grid .large {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-photo,
.local-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
}

.gallery-photo img,
.local-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  object-fit: cover;
}

.local-photo img {
  position: static;
  inset: auto;
}

.gallery-photo figcaption,
.local-photo figcaption {
  position: static;
  width: auto;
  min-height: 0;
  max-width: none;
  padding: 10px 12px;
  color: #17211d;
  background: #fffaf0;
  border-top: 1px solid rgba(40, 70, 55, 0.12);
  border-radius: 0;
  font: 800 13px/1.35 Arial, sans-serif;
  box-shadow: none;
  overflow-wrap: anywhere;
  user-select: text;
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(49, 95, 76, 0.9), rgba(46, 93, 120, 0.78)),
    repeating-linear-gradient(45deg, #cad8cf 0 16px, #dfe7e0 16px 32px);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  font: 800 15px/1.3 Arial, sans-serif;
  text-align: center;
}

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

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

.rates-grid article,
.area-grid article,
.info-columns > div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price {
  margin-bottom: 2px;
  color: var(--blue);
  font: 900 36px/1 Arial, sans-serif;
}

.rates-grid span {
  color: var(--muted);
  font: 700 13px/1 Arial, sans-serif;
}

.notice {
  max-width: 980px;
  margin-top: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--clay);
}

.notice p:last-child {
  margin-bottom: 0;
}

.booking-layout,
.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.availability-layout {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.availability-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin-top: 22px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
}

.availability-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.availability-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 0 22px;
}

.availability-highlights article {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
}

.availability-highlights h3 {
  margin: 0 0 8px;
  font: 800 18px/1.25 Arial, sans-serif;
}

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

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.calendar-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.calendar-heading label {
  color: var(--muted);
  font: 800 11px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.calendar-heading select {
  width: auto;
  min-width: 112px;
  padding: 8px 34px 8px 12px;
  font-size: 14px;
}

.calendar-toolbar h3 {
  margin: 0;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: 900 20px/1 Arial, sans-serif;
}

.icon-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar {
  display: grid;
  gap: 10px;
}

.calendar-week {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.calendar-week.is-booked {
  color: var(--muted);
  background: #f2f2ef;
  border-left-color: #8d958f;
}

.calendar-week strong,
.calendar-week em {
  font: 800 13px/1 Arial, sans-serif;
}

.calendar-week em {
  color: var(--blue);
  font-style: normal;
}

.calendar-key {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 700 13px/1 Arial, sans-serif;
}

.key {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.key.available {
  background: var(--green);
}

.key.booked {
  margin-left: 12px;
  background: #8d958f;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.enquiry-section {
  background: var(--white);
}

.enquiry-form {
  max-width: 760px;
}

label {
  display: grid;
  gap: 6px;
  font: 800 13px/1.3 Arial, sans-serif;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bec9c1;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.3 Arial, sans-serif;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font: 13px/1.5 Arial, sans-serif;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-label input {
  width: auto;
  margin-top: 2px;
}

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

.area-grid article {
  min-height: 220px;
}

.local-photo-strip {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(240px, 0.55fr);
  gap: 16px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin-top: 20px;
}

.local-photo {
  min-height: 320px;
}

.market-photo {
  min-height: 430px;
}

.pool-photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.local-photo:target {
  outline: 4px solid rgba(182, 95, 61, 0.34);
  outline-offset: 4px;
}

.travel-section {
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font: 900 14px/1 Arial, sans-serif;
}

.timeline h3,
.timeline p {
  margin: 0;
}

.guest-section {
  background: var(--soft);
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font: 700 13px/1.4 Arial, sans-serif;
}

.site-footer p {
  margin: 0;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 22px;
}

.legal-page h1 {
  font-size: clamp(40px, 6vw, 62px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(50px, 8vw, 94px) clamp(18px, 4vw, 56px);
  background: var(--white);
}

.page-hero .hero-copy {
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero figure {
  margin: 0;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--soft);
}

.page-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font: 700 13px/1.4 Arial, sans-serif;
}

.breadcrumb a {
  color: var(--green);
}

.content-band {
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.content-band.alt {
  background: var(--soft);
}

.content-narrow {
  max-width: 880px;
}

.detail-grid,
.keyword-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card,
.keyword-card,
.faq-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-card p,
.keyword-card p,
.faq-card p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

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

.page-gallery figure {
  min-height: 260px;
}

.page-gallery .feature {
  grid-column: span 2;
  min-height: 360px;
}

.room-gallery {
  margin-top: 24px;
}

.bedroom-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
}

.facilities-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
}

.room-gallery figure {
  min-height: 340px;
}

.photo-options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-option-card {
  margin: 0;
}

.photo-option-card .gallery-photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.photo-option-card .gallery-photo figcaption {
  width: auto;
  min-width: 84px;
  color: #17211d;
  text-align: center;
  background: rgba(255, 247, 218, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.photo-option-code {
  display: none;
}

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

.route-list article {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

.route-list p:last-child,
.faq-card p:last-child,
.detail-card p:last-child,
.keyword-card p:last-child {
  margin-bottom: 0;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.internal-links a {
  padding: 9px 12px;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: 800 13px/1 Arial, sans-serif;
  text-decoration: none;
}

.mini-cta {
  max-width: 980px;
  margin-top: 26px;
  padding: 24px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.mini-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.mini-cta .button.secondary {
  color: var(--white);
  border-color: #326b55;
  background: #326b55;
}

.mini-cta .button.secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font: 800 13px/1 Arial, sans-serif;
  }

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

  .site-nav.open,
  .site-nav.visible {
    display: flex;
  }

  .site-nav.visible {
    position: static;
    flex-direction: row;
    box-shadow: none;
  }

  .band,
  .split,
  .booking-layout,
  .availability-layout,
  .contact-panel,
  .page-hero,
  .two-column {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .hero-media {
    min-height: 380px;
    height: 48vh;
    max-height: 520px;
  }

  .quick-facts,
  .rates-grid,
  .availability-highlights,
  .feature-grid,
  .area-grid,
  .detail-grid,
  .keyword-grid,
  .faq-grid,
  .page-gallery,
  .photo-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(180px, 34vw);
  }

  .timeline article {
    grid-template-columns: 46px 1fr;
  }

  .timeline p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.06;
  }

  .hero-content,
  .section,
  .band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-media {
    min-height: 280px;
    height: clamp(280px, 44vh, 380px);
    max-height: 380px;
    background:
      linear-gradient(180deg, rgba(23, 33, 29, 0.02), rgba(23, 33, 29, 0.12)),
      url("images/advert-gallery/tim-rear-garden-view-0160-natural-scene.jpg") center 52% / cover no-repeat;
  }

  .quick-facts,
  .rates-grid,
  .availability-highlights,
  .feature-grid,
  .area-grid,
  .detail-grid,
  .keyword-grid,
  .faq-grid,
  .page-gallery,
  .photo-options-grid,
  .info-columns,
  .local-photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pool-photo {
    max-width: 100%;
  }

  .local-photo,
  .market-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .pool-photo {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid .large,
  .gallery-grid .wide,
  .gallery-grid .tall,
  .page-gallery .feature {
    grid-column: auto;
    grid-row: auto;
  }

  .calendar-week {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  border: 1px solid rgba(69, 54, 43, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.82);
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 12px 32px rgba(58, 44, 31, 0.08);
}

.content-card h2 {
  margin-top: 0;
}

.content-card a {
  color: var(--terracotta);
  font-weight: 700;
}

@media (max-width: 760px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}


