/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: --theme(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */
  font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: --theme(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */
  font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
:is(svg, .pc-icon),
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}


:root {
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --ink: #26312f;
  --muted: #5d6058;
  --rust: #bb4d2c;
  --rust-dark: #98391f;
  --stone: #d9c9b6;
  --line: rgb(38 49 47 / 14%);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  height: 105px;
  position: relative;
  z-index: 20;
}
.header-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1390px;
  padding-right: 18px;
  width: calc(100% - 76px);
}

.brand { align-items: center; display: flex; flex: 0 0 auto; gap: 20px; }
.brand-copy { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: clamp(34px, 2.8vw, 43px);
  letter-spacing: -0.8px;
  line-height: 0.98;
}
.brand-tagline { color: var(--muted); font-size: 13px; margin-top: 8px; }

.brand-mark { display: block; height: 66px; position: relative; width: 86px; }
.brand-house {
  border: 2px solid #715d4c;
  border-top: 0;
  bottom: 7px;
  height: 39px;
  left: 18px;
  position: absolute;
  width: 46px;
}
.brand-roof {
  border-left: 2px solid #715d4c;
  border-top: 2px solid #715d4c;
  height: 33px;
  left: 15px;
  position: absolute;
  top: 9px;
  transform: rotate(45deg);
  width: 33px;
}
.brand-chimney {
  border: 2px solid #715d4c;
  border-bottom: 0;
  height: 17px;
  left: 52px;
  position: absolute;
  top: 5px;
  width: 10px;
}
.brand-door {
  border: 2px solid #715d4c;
  bottom: -2px;
  height: 21px;
  left: 9px;
  position: absolute;
  width: 13px;
}
.brand-window {
  border: 2px solid #715d4c;
  height: 10px;
  position: absolute;
  right: 7px;
  top: 11px;
  width: 10px;
}
.brand-pumpkin {
  border: 2px solid var(--rust);
  border-radius: 50%;
  bottom: 2px;
  height: 31px;
  position: absolute;
  right: 0;
  width: 25px;
}
.brand-pumpkin::before,
.brand-pumpkin::after {
  border: solid var(--rust);
  border-width: 0 1px;
  border-radius: 50%;
  content: '';
  inset: 1px 5px;
  position: absolute;
}
.brand-pumpkin::after {
  border: 0;
  border-left: 2px solid var(--rust);
  height: 9px;
  left: 14px;
  top: -8px;
  transform: rotate(35deg);
  width: 7px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  gap: clamp(17px, 1.85vw, 31px);
  justify-content: flex-end;
  white-space: nowrap;
}
.desktop-nav > a:not(.button) {
  border-bottom: 1px solid transparent;
  padding: 18px 0 8px;
  transition: border-color 160ms ease, color 160ms ease;
}
.desktop-nav > a:not(.button):hover,
.desktop-nav > a:not(.button):focus-visible {
  border-color: var(--rust);
  color: var(--rust);
  outline: none;
}
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  cursor: pointer;
  display: grid;
  list-style: none;
  place-items: center;
}
.mobile-menu summary::-webkit-details-marker { display: none; }

.button {
  align-items: center;
  background: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button:hover,
.button:focus-visible {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  outline: none;
  transform: translateY(-1px);
}
.button-small { min-height: 54px; padding: 0 28px; }
.button-outline { background: var(--paper); color: var(--rust); }
.button-outline:hover, .button-outline:focus-visible { color: #fff; }

.hero {
  background: #f2e9db;
  height: 495px;
  overflow: hidden;
  position: relative;
}
.hero-photo {
  background-image: url('./images/pumpkin-cottage-hero-sign-repaired.png');
  background-position: center 68%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.hero-card {
  background: #fffaf2;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgb(38 49 47 / 16%);
  left: max(0px, calc((100% - 1390px) / 2));
  max-width: 532px;
  padding: 28px 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 48px);
}
.eyebrow {
  color: var(--rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 {
  font-size: 37px;
  letter-spacing: -0.55px;
  line-height: 1.28;
  margin: 0 0 3px;
}
.hero-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  margin: 0 0 22px;
}
.button-row { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-card .button { min-height: 49px; padding-inline: 18px; }

.amenity-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 100px;
  padding: 22px 7vw;
}
.amenity {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 25px;
  justify-content: center;
}
.amenity:last-child { border-right: 0; }
.amenity :is(svg, .pc-icon) { color: #725b48; height: 47px; width: 47px; }
.amenity strong { font-size: 15px; }

.welcome-section {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(360px, 1.15fr) minmax(370px, 1fr) minmax(315px, 0.78fr);
  margin: 0 auto;
  max-width: 1390px;
  padding: 26px 0 16px;
}
.living-photo { height: 285px; overflow: hidden; }
.living-photo img { height: 100%; object-fit: cover; width: 100%; }
.welcome-copy {
  align-self: center;
  padding-top: 0;
}
.welcome-copy .eyebrow, .enquiry-card .eyebrow { margin-bottom: 12px; }
.welcome-copy h2, .enquiry-card h2 {
  font-size: 30px;
  line-height: 1.14;
  margin: 0;
}
.short-rule {
  border-top: 2px solid var(--rust);
  display: block;
  margin: 17px 0 18px;
  width: 41px;
}
.welcome-copy > p:not(.eyebrow),
.enquiry-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
  margin: 0 0 12px;
}
.trust-panel {
  align-items: center;
  background: #fffaf2;
  border: 1px solid var(--stone);
  border-radius: 4px;
  display: flex;
  gap: 17px;
  min-height: 47px;
  padding: 8px 18px;
}
.stars { color: var(--rust); font-size: 17px; letter-spacing: 2px; }
.trust-divider { align-self: stretch; border-left: 1px solid var(--stone); }
.trust-panel span:last-child { display: flex; flex-direction: column; }
.trust-panel small { color: var(--muted); font-size: 11px; }
.trust-panel strong { font-size: 11px; }
.enquiry-card {
  align-self: start;
  background: #fffaf2;
  border: 1px solid var(--stone);
  border-radius: 7px;
  box-shadow: 0 12px 28px rgb(38 49 47 / 10%);
  min-height: 281px;
  overflow: hidden;
  padding: 31px;
  position: relative;
}
.enquiry-card .button {
  min-height: 45px;
  padding-inline: 20px;
  position: relative;
  z-index: 2;
}
.botanical {
  border-bottom: 1px solid rgb(96 112 91 / 30%);
  border-left: 1px solid rgb(96 112 91 / 30%);
  bottom: 18px;
  height: 100px;
  position: absolute;
  right: 25px;
  transform: rotate(-34deg);
  width: 38px;
}
.botanical::before, .botanical::after {
  border: 1px solid rgb(96 112 91 / 30%);
  border-radius: 100% 0;
  content: '';
  height: 18px;
  position: absolute;
  width: 28px;
}
.botanical::before { left: -25px; top: 31px; }
.botanical::after { right: -11px; top: 59px; transform: rotate(180deg); }

.comforts-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(640px, 1.6fr);
  padding: 68px max(5vw, calc((100% - 1390px) / 2));
}
.comforts-heading { align-self: center; }
.comforts-heading h2 {
  font-size: clamp(32px, 2.8vw, 43px);
  letter-spacing: -0.6px;
  line-height: 1.12;
  margin: 0;
}
.comforts-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.comforts-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
}
.comfort-card {
  align-items: flex-start;
  background: #fffaf2;
  display: flex;
  gap: 18px;
  min-height: 142px;
  padding: 25px 27px;
}
.comfort-icon {
  align-items: center;
  color: #725b48;
  display: flex;
  flex: 0 0 auto;
  gap: 2px;
  min-width: 38px;
}
.comfort-icon :is(svg, .pc-icon) { height: 31px; width: 31px; }
.comfort-icon :is(svg, .pc-icon) + :is(svg, .pc-icon) { margin-left: -12px; margin-top: 20px; height: 22px; width: 22px; }
.comfort-card h3 { font-size: 18px; line-height: 1.25; margin: 1px 0 8px; }
.comfort-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.gallery-section { background: var(--ink); color: #fff; padding: 72px 5vw 80px; }
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 32px;
  max-width: 1390px;
}
.section-heading h2, .explore-section h2, .availability-section h2 {
  font-size: clamp(34px, 3vw, 47px);
  letter-spacing: -0.7px;
  line-height: 1.1;
  margin: 0;
}
.section-heading > a, .text-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  gap: 9px;
}
.section-heading :is(svg, .pc-icon), .text-link :is(svg, .pc-icon) { height: 17px; width: 17px; }
.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1390px;
}
.gallery-grid figure { height: 360px; margin: 0; overflow: hidden; position: relative; }
.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
  width: 100%;
}
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption {
  background: rgb(38 49 47 / 76%);
  bottom: 16px;
  font-size: 13px;
  left: 16px;
  padding: 8px 12px;
  position: absolute;
}

.explore-section {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 0.85fr 1.15fr;
  margin: 0 auto;
  max-width: 1390px;
  padding: 86px 0;
}
.explore-section article { padding-left: 35px; }
.explore-section article > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.explore-section img { height: 420px; object-fit: cover; width: 100%; }
.text-link { color: var(--rust); font-weight: 700; margin-top: 10px; }

.availability-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding: 78px 24px 84px;
  text-align: center;
}
.availability-section > p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px auto 27px;
  max-width: 620px;
}
.button-row-centred { justify-content: center; }

.inner-hero {
  background: var(--ink);
  color: #fff;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.inner-hero > img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.inner-hero-shade {
  background: linear-gradient(90deg, rgb(20 28 26 / 82%) 0%, rgb(20 28 26 / 58%) 38%, rgb(20 28 26 / 8%) 72%);
  inset: 0;
  position: absolute;
}
.inner-hero-copy {
  left: max(38px, calc((100% - 1390px) / 2));
  max-width: 680px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.inner-hero-copy .eyebrow { color: #f29a73; margin-bottom: 14px; }
.inner-hero-copy h1 {
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.04;
  margin-bottom: 17px;
}
.inner-hero-copy > p:last-child {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}
.inner-section {
  margin: 0 auto;
  max-width: 1390px;
  padding-block: 76px 86px;
  width: calc(100% - 76px);
}
.section-intro { max-width: 720px; }
.section-intro h2,
.editorial-lead h2 {
  font-size: clamp(35px, 3.2vw, 48px);
  letter-spacing: -0.7px;
  line-height: 1.1;
  margin: 0;
}
.section-intro > p:not(.eyebrow),
.editorial-lead > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.booking-band {
  align-items: center;
  background: var(--paper);
  border-block: 1px solid var(--line);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 55px max(38px, calc((100% - 1390px) / 2));
}
.booking-band .eyebrow { margin-bottom: 10px; }
.booking-band h2 { font-size: clamp(30px, 3vw, 42px); line-height: 1.12; margin: 0; }
.booking-band .button-row { flex-wrap: nowrap; }

.gallery-page-section .section-intro { margin-bottom: 42px; }
.full-gallery-grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(4, 1fr);
}
.full-gallery-grid button {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: zoom-in;
  font: inherit;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}
.full-gallery-grid button:nth-child(1),
.full-gallery-grid button:nth-child(6),
.full-gallery-grid button:nth-child(13) { grid-column: span 2; }
.full-gallery-grid button.portrait { grid-row: span 2; }
.full-gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 220ms ease;
  width: 100%;
}
.full-gallery-grid button:hover img,
.full-gallery-grid button:focus-visible img { opacity: 0.86; transform: scale(1.02); }
.full-gallery-grid button:focus-visible { outline: 3px solid var(--rust); outline-offset: 3px; }
.full-gallery-grid button > span {
  background: linear-gradient(transparent, rgb(20 28 26 / 88%));
  bottom: 0;
  font-size: 14px;
  font-weight: 700;
  left: 0;
  padding: 38px 18px 16px;
  position: absolute;
  right: 0;
}
.lightbox {
  align-items: center;
  background: rgb(16 22 21 / 94%);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 54px;
  position: fixed;
  z-index: 100;
}
.lightbox figure { color: #fff; margin: 0; max-height: 100%; max-width: min(1100px, 100%); }
.lightbox figure img { max-height: calc(100vh - 130px); object-fit: contain; width: 100%; }
.lightbox figcaption { font-size: 14px; padding-top: 12px; text-align: center; }
.lightbox-close {
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  height: 44px;
  place-items: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
}

.tariff-layout { display: grid; gap: 42px; }
.tariff-intro { max-width: 780px; }
.pc-tariff table-wrap { overflow-x: auto; }
.pc-tariff table { border-collapse: collapse; min-width: 760px; width: 100%; }
.pc-tariff table th,
.pc-tariff table td { border: 1px solid var(--line); padding: 15px 17px; text-align: center; }
.pc-tariff table thead th { background: var(--ink); color: #fff; font-size: 14px; }
.pc-tariff table tbody th { background: #efe5d5; font-size: 14px; text-align: left; white-space: nowrap; }
.pc-tariff table tbody td { background: var(--paper); color: var(--muted); font-size: 14px; }
.pc-tariff table tbody tr:nth-child(even) td { background: #fffaf2; }
.price-assurance {
  background: #fffaf2;
  border: 1px solid var(--stone);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.price-assurance > div {
  align-items: center;
  border-right: 1px solid var(--stone);
  display: flex;
  gap: 15px;
  min-height: 92px;
  padding: 20px 24px;
}
.price-assurance > div:last-child { border-right: 0; }
.price-assurance :is(svg, .pc-icon) { color: var(--rust); flex: 0 0 auto; height: 28px; width: 28px; }
.price-assurance span { display: flex; flex-direction: column; gap: 4px; }
.price-assurance small { color: var(--muted); line-height: 1.4; }

.availability-layout { display: grid; gap: 38px; }
.availability-intro { align-items: end; display: flex; justify-content: space-between; }
.calendar-legend { display: flex; flex: 0 0 auto; gap: 20px; padding-bottom: 8px; }
.calendar-legend span { align-items: center; display: flex; font-size: 13px; gap: 7px; }
.calendar-legend i { background: var(--paper); border: 1px solid var(--line); height: 15px; width: 15px; }
.calendar-legend i.booked { background: #dbc4b6; border-color: #c2937f; }
.availability-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.calendar-month { background: var(--paper); border: 1px solid var(--stone); padding: 20px; }
.calendar-month h3 { font-size: 21px; margin: 0 0 16px; text-align: center; }
.calendar-weekdays,
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar-weekdays span { color: var(--muted); font-size: 11px; font-weight: 800; padding-bottom: 8px; text-align: center; }
.calendar-days span {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid transparent;
  display: flex;
  font-size: 12px;
  justify-content: center;
}
.calendar-days span:not(.empty):not(.booked) { border-color: rgb(38 49 47 / 8%); }
.calendar-days span.booked { background: #dbc4b6; color: #704735; text-decoration: line-through; }
.booking-safety-card {
  align-items: flex-start;
  background: #fffaf2;
  border: 1px solid var(--stone);
  display: flex;
  gap: 22px;
  padding: 28px 30px;
}
.booking-safety-card > :is(svg, .pc-icon) { color: var(--rust); flex: 0 0 auto; height: 35px; width: 35px; }
.booking-safety-card h2 { font-size: 25px; margin: 0 0 8px; }
.booking-safety-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.availability-actions {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
}
.availability-actions > a,
.availability-actions > div {
  align-items: center;
  background: var(--paper);
  display: flex;
  gap: 13px;
  min-height: 90px;
  padding: 18px;
}
.availability-actions :is(svg, .pc-icon) { color: var(--rust); flex: 0 0 auto; height: 26px; width: 26px; }
.availability-actions span { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.availability-actions small { color: var(--muted); overflow-wrap: anywhere; }

.editorial-page { display: grid; gap: 72px; }
.editorial-lead { max-width: 820px; }
.place-card-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.place-card { background: var(--paper); border: 1px solid var(--stone); padding: 28px 25px; }
.place-card > :is(svg, .pc-icon) { color: var(--rust); height: 28px; width: 28px; }
.place-card h3 { font-size: 23px; margin: 22px 0 10px; }
.place-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }
.feature-story { align-items: center; display: grid; gap: 58px; grid-template-columns: 1.1fr 0.9fr; }
.feature-story > img { height: 510px; object-fit: cover; width: 100%; }
.feature-story > div > :is(svg, .pc-icon) { color: var(--rust); height: 32px; margin-bottom: 18px; width: 32px; }
.feature-story h2,
.explore-columns h2,
.village-list-section h2,
.pubs-heading h2 { font-size: clamp(31px, 3vw, 43px); line-height: 1.13; margin: 0; }
.feature-story p:not(.eyebrow),
.explore-columns p:not(.eyebrow),
.pubs-heading > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.explore-columns { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.explore-columns > section { background: #fffaf2; border: 1px solid var(--stone); padding: 36px; }
.explore-columns > section > :is(svg, .pc-icon) { color: var(--rust); height: 32px; margin-bottom: 22px; width: 32px; }
.village-list-section { display: grid; gap: 52px; grid-template-columns: 0.65fr 1.35fr; }
.village-list { display: grid; gap: 1px; grid-template-columns: 1fr 1fr; background: var(--line); border: 1px solid var(--line); }
.village-list article { background: var(--paper); padding: 25px; }
.village-list h3 { font-size: 20px; margin: 0 0 8px; }
.village-list p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.guide-link-card {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 21px;
  min-height: 112px;
  padding: 24px 30px;
}
.guide-link-card > :is(svg, .pc-icon):first-child { color: #f29a73; height: 35px; width: 35px; }
.guide-link-card > :is(svg, .pc-icon):last-child { margin-left: auto; }
.guide-link-card span { display: flex; flex-direction: column; gap: 5px; }
.guide-link-card small { color: rgb(255 255 255 / 66%); text-transform: uppercase; letter-spacing: 0.12em; }
.guide-link-card strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }

.walk-list { display: grid; gap: 18px; }
.walk-card { background: var(--paper); border: 1px solid var(--stone); display: grid; gap: 30px; grid-template-columns: 80px 1fr; padding: 34px; }
.walk-number { color: var(--rust); font-family: var(--serif); font-size: 43px; line-height: 1; }
.walk-copy h2 { font-size: clamp(27px, 2.6vw, 38px); margin: 0; }
.walk-facts { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 18px 0; }
.walk-facts span { align-items: center; color: #725b48; display: flex; font-size: 13px; font-weight: 700; gap: 7px; }
.walk-facts :is(svg, .pc-icon) { height: 17px; width: 17px; }
.walk-copy > p { color: var(--muted); line-height: 1.72; margin: 0; }
.pubs-section { align-items: start; background: var(--ink); color: #fff; display: grid; gap: 48px; grid-template-columns: 0.75fr 1.25fr; padding: 52px; }
.pubs-heading > :is(svg, .pc-icon) { color: #f29a73; height: 34px; margin-bottom: 20px; width: 34px; }
.pubs-heading > p:not(.eyebrow) { color: rgb(255 255 255 / 70%); }
.pub-grid { display: grid; gap: 1px; background: rgb(255 255 255 / 14%); }
.pub-grid article { background: #2d3937; padding: 24px 26px; }
.pub-grid h3 { font-size: 23px; margin: 0 0 8px; }
.pub-grid p { color: rgb(255 255 255 / 70%); font-size: 14px; line-height: 1.6; margin: 0; }
.seasonal-cards { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.seasonal-cards article { align-items: flex-start; background: #fffaf2; border: 1px solid var(--stone); display: flex; gap: 22px; padding: 30px; }
.seasonal-cards article > :is(svg, .pc-icon) { color: var(--rust); flex: 0 0 auto; height: 35px; width: 35px; }
.seasonal-cards .eyebrow { margin-bottom: 9px; }
.seasonal-cards h2 { font-size: 27px; margin: 0 0 10px; }
.seasonal-cards p:last-child { color: var(--muted); line-height: 1.65; margin: 0; }
.dog-note { align-items: center; color: #725b48; display: flex; font-weight: 700; gap: 10px; justify-content: center; margin: -35px 0 0; text-align: center; }
.dog-note :is(svg, .pc-icon) { height: 23px; width: 23px; }

.site-footer {
  align-items: center;
  background: #1f2927;
  color: rgb(255 255 255 / 80%);
  display: flex;
  justify-content: space-between;
  padding: 43px max(5vw, 28px);
}
.footer-brand { align-items: center; display: flex; gap: 16px; }
.footer-brand .brand-mark { filter: brightness(1.6); transform: scale(0.72); transform-origin: center; }
.footer-brand span:last-child { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.footer-brand small { margin-top: 5px; }
.footer-contact {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 8px;
}
.footer-contact a, .footer-contact span { align-items: center; display: flex; gap: 8px; }
.footer-contact :is(svg, .pc-icon) { height: 15px; width: 15px; }

@media (max-width: 1280px) {
  .desktop-nav { gap: 15px; font-size: 13px; }
  .desktop-nav .button { padding-inline: 19px; }
  .hero-card { left: 38px; }
  .welcome-section, .explore-section { margin-inline: 38px; }
  .welcome-section { grid-template-columns: 1.05fr 0.95fr; }
  .enquiry-card { grid-column: 1 / -1; }
  .comforts-section {
    gap: 38px;
    grid-template-columns: 1fr;
    padding-inline: 38px;
  }
  .comforts-heading { max-width: 680px; }
  .full-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .place-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary :is(svg, .pc-icon) { height: 29px; width: 29px; }
  .mobile-menu nav {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgb(38 49 47 / 13%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 44px;
    width: min(330px, calc(100vw - 36px));
  }
  .mobile-menu nav > a:not(.button) { border-bottom: 1px solid var(--line); padding: 12px 8px; }
  .availability-grid { grid-template-columns: 1fr 1fr; }
  .availability-actions { grid-template-columns: 1fr 1fr; }
  .feature-story { gap: 38px; }
  .pubs-section { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 88px; }
  .header-inner { padding-right: 0; width: calc(100% - 40px); }
  .brand { gap: 12px; }
  .brand-mark { height: 56px; transform: scale(0.8); transform-origin: left center; width: 69px; }
  .brand-name { font-size: 30px; }
  .brand-tagline { display: none; }
  .hero { height: auto; overflow: visible; padding-bottom: 34px; }
  .hero-photo {
    background-position: right center;
    background-size: cover;
    height: 330px;
    position: relative;
    width: 100%;
  }
  .hero-card {
    bottom: auto;
    left: auto;
    margin: -55px 20px 0;
    max-width: none;
    padding: 32px 29px 28px;
    position: relative;
    top: auto;
    transform: none;
    width: auto;
  }
  h1 { font-size: clamp(34px, 10vw, 43px); line-height: 1.12; margin-bottom: 17px; }
  .button-row { gap: 12px; }
  .amenity-strip { grid-template-columns: 1fr 1fr; padding: 8px 14px; }
  .amenity {
    border-bottom: 1px solid var(--line);
    gap: 12px;
    justify-content: flex-start;
    min-height: 78px;
    padding: 9px 15px;
  }
  .amenity:nth-child(2) { border-right: 0; }
  .amenity:nth-child(3), .amenity:nth-child(4) { border-bottom: 0; }
  .amenity :is(svg, .pc-icon) { height: 36px; width: 36px; }
  .welcome-section, .explore-section {
    display: grid;
    grid-template-columns: 1fr;
    margin-inline: 20px;
    padding-block: 48px;
  }
  .living-photo { height: auto; }
  .welcome-copy, .enquiry-card { padding-top: 0; }
  .welcome-copy h2, .enquiry-card h2 { font-size: 34px; }
  .comforts-section { padding: 52px 20px; }
  .comforts-grid { grid-template-columns: 1fr; }
  .comfort-card { min-height: 0; }
  .inner-hero { height: 310px; }
  .inner-hero-shade { background: rgb(20 28 26 / 62%); }
  .inner-hero-copy { left: 20px; max-width: calc(100% - 40px); right: 20px; }
  .inner-hero-copy h1 { font-size: clamp(38px, 11vw, 50px); }
  .inner-hero-copy > p:last-child { font-size: 15px; }
  .inner-section { padding-block: 54px 62px; width: calc(100% - 40px); }
  .booking-band { align-items: flex-start; flex-direction: column; padding: 44px 20px; }
  .booking-band .button-row { flex-wrap: wrap; }
  .full-gallery-grid { grid-auto-rows: 240px; grid-template-columns: repeat(2, 1fr); }
  .full-gallery-grid button:nth-child(1),
  .full-gallery-grid button:nth-child(6),
  .full-gallery-grid button:nth-child(13) { grid-column: span 1; }
  .full-gallery-grid button.portrait { grid-row: span 1; }
  .lightbox { padding: 58px 16px 24px; }
  .lightbox-close { right: 12px; top: 10px; }
  .pc-tariff table-wrap { overflow: visible; }
  .pc-tariff table { display: block; min-width: 0; }
  .pc-tariff table thead { display: none; }
  .pc-tariff table tbody { display: grid; gap: 14px; }
  .pc-tariff table tr { border: 1px solid var(--stone); display: block; }
  .pc-tariff table th,
  .pc-tariff table td { align-items: center; border: 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 12px 15px; text-align: right; }
  .pc-tariff table tr > *::before { color: var(--muted); content: attr(data-label); font-size: 12px; font-weight: 700; padding-right: 18px; text-align: left; }
  .pc-tariff table tbody th { background: var(--ink); color: #fff; }
  .pc-tariff table tbody th::before { color: rgb(255 255 255 / 64%); }
  .pc-tariff table tr > *:last-child { border-bottom: 0; }
  .price-assurance { grid-template-columns: 1fr; }
  .price-assurance > div { border-bottom: 1px solid var(--stone); border-right: 0; }
  .price-assurance > div:last-child { border-bottom: 0; }
  .availability-intro { align-items: flex-start; flex-direction: column; gap: 20px; }
  .availability-grid { grid-template-columns: 1fr 1fr; }
  .feature-story { grid-template-columns: 1fr; }
  .feature-story > img { height: 390px; }
  .explore-columns,
  .seasonal-cards { grid-template-columns: 1fr; }
  .village-list-section { gap: 30px; grid-template-columns: 1fr; }
  .walk-card { grid-template-columns: 55px 1fr; padding: 26px; }
  .pubs-section { padding: 34px 26px; }
  .gallery-section { padding-inline: 20px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure { height: 300px; }
  .explore-section { gap: 34px; }
  .explore-section article { padding-left: 0; }
  .explore-section img { height: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 30px; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 460px) {
  .brand-name { font-size: 25px; }
  .hero-photo { height: 275px; }
  .hero-card { padding-inline: 22px; }
  .hero-card .button { width: 100%; }
  .amenity-strip { grid-template-columns: 1fr; }
  .amenity { border-bottom: 1px solid var(--line) !important; border-right: 0; }
  .amenity:last-child { border-bottom: 0 !important; }
  .trust-panel { align-items: flex-start; flex-direction: column; }
  .trust-divider { border-left: 0; border-top: 1px solid var(--stone); width: 100%; }
  .inner-hero { height: 330px; }
  .full-gallery-grid { grid-template-columns: 1fr; }
  .availability-grid,
  .availability-actions { grid-template-columns: 1fr; }
  .calendar-month { padding: 15px; }
  .booking-safety-card { padding: 22px; }
  .booking-band .button-row,
  .booking-band .button { width: 100%; }
  .place-card-grid,
  .village-list { grid-template-columns: 1fr; }
  .feature-story > img { height: 300px; }
  .explore-columns > section { padding: 28px 24px; }
  .guide-link-card { align-items: flex-start; padding: 23px 21px; }
  .guide-link-card > :is(svg, .pc-icon):last-child { display: none; }
  .walk-card { gap: 14px; grid-template-columns: 1fr; padding: 23px 20px; }
  .walk-number { font-size: 31px; }
  .walk-facts { align-items: flex-start; flex-direction: column; }
  .seasonal-cards article { padding: 24px 20px; }
  .dog-note { margin-top: -28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
