@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
}

:root {
  --ink: #18363a;
  --ink-deep: #10292d;
  --ink-soft: #31545a;
  --paper: #fbf8f2;
  --cream: #f2ece2;
  --cream-deep: #e8dfd1;
  --white: #fffdf9;
  --brass: #ad8955;
  --brass-light: #d2b98f;
  --rust: #9d5942;
  --sage: #7f9287;
  --text: #223235;
  --muted: #687779;
  --line: rgba(24, 54, 58, 0.17);
  --shadow: 0 28px 80px rgba(20, 43, 47, 0.13);
  --shadow-soft: 0 18px 50px rgba(20, 43, 47, 0.09);
  --radius: 2px;
  --container: min(1240px, calc(100vw - 48px));
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
.button {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(790px, calc(100vw - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 76px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-ink .eyebrow {
  color: var(--brass-light);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-deep);
  font-family: var(--display);
  font-weight: 450;
  line-height: 1.04;
  text-wrap: balance;
}

.section-ink h1,
.section-ink h2,
.section-ink h3,
.section-ink h4 {
  color: var(--white);
}

h1 {
  font-size: clamp(3.15rem, 7vw, 7.3rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  letter-spacing: -0.025em;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.lede {
  max-width: 760px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.42;
}

.section-ink .lede,
.section-ink p {
  color: rgba(255, 253, 249, 0.82);
}

.muted {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  font-size: 1.2em;
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(5px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.105em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--rust);
  background: var(--rust);
  transform: translateY(-2px);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  border-color: var(--rust);
  background: var(--rust);
}

.top-note {
  position: relative;
  z-index: 1001;
  padding: 8px 20px;
  color: var(--white);
  background: var(--ink-deep);
  font-size: 0.71rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.top-note a {
  color: var(--brass-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 242, 0.95);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(24, 54, 58, 0.05);
}

.header-inner {
  display: grid;
  min-height: 91px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand-main {
  font-family: var(--display);
  font-size: 1.27rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-sub {
  margin-top: 5px;
  color: var(--rust);
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2.1vw, 32px);
}

.desktop-nav a {
  position: relative;
  color: var(--ink-deep);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--rust);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.phone-link {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 550;
  text-decoration: none;
}

.header-button {
  min-height: 43px;
  padding: 11px 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  padding: 132px 28px 38px;
  color: var(--white);
  background: var(--ink-deep);
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: 1.75rem;
  text-decoration: none;
}

.mobile-menu-contact {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.72);
}

.home-hero {
  padding: 30px 0 0;
  background: var(--paper);
}

.hero-collage {
  display: grid;
  width: min(1500px, calc(100vw - 36px));
  height: min(72vh, 760px);
  min-height: 540px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
  gap: 10px;
  background: var(--cream-deep);
}

.hero-collage figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.hero-collage figure:first-child img {
  object-position: center 52%;
}

.hero-collage figure:last-child img {
  object-position: center 54%;
}

.hero-collage:hover img {
  transform: scale(1.018);
}

.hero-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(16, 41, 45, 0.72);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.hero-statement {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1080px, calc(100vw - 72px));
  margin: -114px auto 0;
  padding: 52px 62px 55px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-statement h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 6.8vw, 6.75rem);
}

.hero-statement .lede {
  max-width: 700px;
  margin-bottom: 0;
}

.hero-statement .button-row {
  width: 214px;
  flex-direction: column;
  align-items: stretch;
}

.trust-strip {
  padding: 48px 0 52px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-number {
  display: block;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 2.05rem;
  line-height: 1.1;
}

.trust-label {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.5;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2,
.split-heading .lede {
  margin-bottom: 0;
}

.property-list {
  display: grid;
  gap: 84px;
}

.property-card {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.18fr) minmax(370px, 0.82fr);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.property-card:nth-child(even) {
  grid-template-columns: minmax(370px, 0.82fr) minmax(0, 1.18fr);
}

.property-card:nth-child(even) .property-media {
  order: 2;
}

.property-media {
  min-width: 0;
  overflow: hidden;
}

.property-media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.property-card:hover .property-media img {
  transform: scale(1.022);
}

.property-copy {
  display: flex;
  padding: clamp(42px, 5vw, 76px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.property-meta,
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.property-meta li,
.feature-pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.property-copy h3 {
  font-size: clamp(2.75rem, 4.2vw, 4.6rem);
}

.property-copy p {
  margin-bottom: 30px;
}

.quote-band {
  position: relative;
  overflow: hidden;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
}

.quote-photo {
  min-height: 620px;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-content {
  display: flex;
  padding: clamp(56px, 8vw, 120px);
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.quote-content blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4.45rem);
  font-weight: 420;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.quote-content cite {
  margin-top: 30px;
  color: var(--brass-light);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 660px;
}

.about-visual img:first-child {
  width: 83%;
  height: 575px;
  object-fit: cover;
}

.about-visual img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 315px;
  border: 9px solid var(--paper);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-copy p:last-of-type {
  margin-bottom: 32px;
}

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

.destination-card {
  min-height: 300px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}

.destination-index {
  display: block;
  margin-bottom: 72px;
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 1.3rem;
}

.destination-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.booking-callout {
  display: grid;
  min-height: 530px;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.booking-callout-image img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.booking-callout-copy {
  display: flex;
  padding: clamp(50px, 7vw, 102px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.booking-callout-copy h2 {
  max-width: 630px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: min(78vh, 810px);
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 32, 0.02) 20%, rgba(11, 29, 32, 0.28) 55%, rgba(11, 29, 32, 0.83) 100%);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 62px;
}

.page-hero h1 {
  max-width: 990px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3.7rem, 8vw, 8rem);
}

.page-hero .eyebrow {
  color: var(--brass-light);
}

.page-hero .lede {
  max-width: 760px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.88);
}

.property-summary {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: clamp(58px, 9vw, 128px);
}

.summary-stats {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.summary-stat {
  min-height: 128px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-stat strong {
  display: block;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 480;
  line-height: 1.1;
}

.summary-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  margin: 35px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 18px 10px 18px 28px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 310px;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--cream-deep);
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease, filter 550ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.93);
  transform: scale(1.025);
}

.gallery-item::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 2px 13px rgba(0, 0, 0, 0.5);
  content: "+";
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  padding: 30px;
  align-items: center;
  justify-content: center;
  background: rgba(9, 25, 28, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1300px, 92vw);
  max-height: 84vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  right: 30px;
  bottom: 22px;
  left: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-align: center;
}

.rooms-grid,
.info-card-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.room-card,
.info-card,
.review-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.room-card small,
.info-card small {
  display: block;
  margin-bottom: 36px;
  color: var(--rust);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-card p,
.info-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
}

.review-card blockquote {
  margin: 0 0 30px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.35;
}

.review-card cite {
  color: var(--rust);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notice {
  display: grid;
  padding: 28px 30px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid rgba(157, 89, 66, 0.35);
  background: rgba(157, 89, 66, 0.07);
}

.notice-icon {
  color: var(--rust);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.notice p {
  margin: 0;
}

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.location-image {
  min-height: 570px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-copy {
  display: flex;
  padding: clamp(50px, 7vw, 100px);
  flex-direction: column;
  justify-content: center;
}

.timeline {
  display: grid;
  margin-top: 32px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.timeline-row strong {
  color: var(--rust);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-row span {
  color: var(--ink-soft);
}

.standard-hero {
  padding: 105px 0 82px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.standard-hero h1 {
  max-width: 1020px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.standard-hero .lede {
  margin-bottom: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
}

.editorial-aside {
  position: sticky;
  top: 145px;
  height: max-content;
}

.editorial-aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.editorial-aside nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-content section + section {
  margin-top: 92px;
  padding-top: 88px;
  border-top: 1px solid var(--line);
}

.editorial-content h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.feature-story {
  display: grid;
  margin-top: 48px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.feature-story:nth-child(even) {
  grid-template-columns: 0.92fr 1.08fr;
}

.feature-story:nth-child(even) .feature-story-image {
  order: 2;
}

.feature-story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: clamp(46px, 7vw, 92px);
}

.contact-panel {
  min-width: 0;
  padding: clamp(34px, 5vw, 62px);
  color: var(--white);
  background: var(--ink);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-list li {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-list strong {
  color: var(--brass-light);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.enquiry-form {
  min-width: 0;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-deep);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: var(--paper);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(173, 137, 85, 0.14);
}

.form-help {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  border-color: rgba(38, 110, 79, 0.35);
  color: #1f684a;
  background: rgba(38, 110, 79, 0.07);
}

.draft-banner {
  padding: 14px 22px;
  color: #6d3626;
  border-bottom: 1px solid rgba(157, 89, 66, 0.25);
  background: #f4dfd5;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.prose {
  color: var(--text);
}

.prose h2 {
  margin-top: 66px;
  font-size: 2.45rem;
}

.prose h3 {
  margin-top: 38px;
  font-size: 1.65rem;
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.prose li + li {
  margin-top: 8px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  padding: 25px 0;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border: 0;
  color: var(--ink-deep);
  background: transparent;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.22;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  color: var(--rust);
  content: "+";
}

.faq-question[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-answer {
  display: none;
  max-width: 770px;
  padding: 0 50px 26px 0;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.site-footer {
  padding: 78px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 46px;
}

.footer-brand {
  color: var(--white);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
}

.footer-intro {
  max-width: 330px;
  margin-top: 18px;
  font-size: 0.86rem;
}

.footer-heading {
  margin-bottom: 17px;
  color: var(--brass-light);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  margin-top: 64px;
  padding-top: 23px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
}

.mobile-book-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  display: none;
  padding: 9px 12px;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.97);
  box-shadow: 0 -10px 35px rgba(16, 41, 45, 0.12);
}

.mobile-book-bar .button {
  min-height: 45px;
  flex: 1;
  padding: 10px 12px;
}

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

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

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 40px, 1120px);
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.64rem;
  }

  .phone-link {
    display: none;
  }

  .hero-statement {
    width: min(980px, calc(100vw - 58px));
    padding: 44px 48px 48px;
  }

  .property-card,
  .property-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }
}

@media (max-width: 1050px) {
  .section {
    padding: 86px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions .header-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-collage {
    height: 620px;
    grid-template-columns: 1fr 0.72fr;
  }

  .hero-statement {
    width: min(760px, calc(100vw - 42px));
    margin-top: -90px;
    padding: 40px;
    grid-template-columns: 1fr;
  }

  .hero-statement .button-row {
    width: auto;
    flex-direction: row;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-heading,
  .about-split,
  .property-summary,
  .editorial-grid,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .property-card,
  .property-card:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .property-card:nth-child(even) .property-media {
    order: 0;
  }

  .property-media img {
    min-height: 490px;
    max-height: 590px;
  }

  .quote-grid,
  .location-split,
  .booking-callout {
    grid-template-columns: 1fr;
  }

  .quote-photo {
    min-height: 460px;
  }

  .destination-grid,
  .rooms-grid,
  .info-card-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 6;
  }

  .editorial-aside {
    position: static;
  }

  .editorial-aside nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
  }

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

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  body.has-mobile-bar {
    padding-bottom: 64px;
  }

  .top-note {
    padding-inline: 12px;
    font-size: 0.62rem;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .brand-main {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .brand-sub {
    font-size: 0.45rem;
    white-space: nowrap;
  }

  .home-hero {
    padding-top: 14px;
  }

  .hero-collage {
    width: calc(100vw - 20px);
    height: 510px;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1.14fr 0.86fr;
    gap: 7px;
  }

  .hero-collage figure:first-child img {
    object-position: center 57%;
  }

  .hero-collage figure:last-child img {
    object-position: center 48%;
  }

  .hero-caption {
    bottom: 10px;
    left: 10px;
    font-size: 0.54rem;
  }

  .hero-statement {
    width: calc(100vw - 28px);
    margin-top: -42px;
    padding: 30px 24px 31px;
  }

  .hero-statement h1 {
    font-size: clamp(2.7rem, 12.2vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .hero-statement .button-row,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-strip {
    padding-top: 34px;
  }

  .trust-item {
    padding: 18px 13px;
  }

  .trust-number {
    font-size: 1.65rem;
  }

  .trust-label {
    font-size: 0.58rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 54px 0;
  }

  .split-heading {
    margin-bottom: 36px;
    gap: 20px;
  }

  .property-list {
    gap: 40px;
  }

  .property-media img {
    min-height: 390px;
  }

  .property-copy {
    padding: 34px 23px 38px;
  }

  .property-copy h3 {
    font-size: 3rem;
  }

  .quote-photo {
    min-height: 370px;
  }

  .quote-content {
    padding: 48px 23px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-visual img:first-child {
    width: 92%;
    height: 430px;
  }

  .about-visual img:last-child {
    width: 52%;
    height: 235px;
  }

  .destination-grid,
  .rooms-grid,
  .info-card-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 260px;
  }

  .destination-index {
    margin-bottom: 45px;
  }

  .booking-callout-image img,
  .booking-callout-image {
    min-height: 390px;
  }

  .booking-callout-copy {
    padding: 48px 23px;
  }

  .page-hero {
    min-height: 650px;
  }

  .page-hero-content {
    padding-bottom: 40px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.6rem);
  }

  .summary-stats,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
  }

  .location-image {
    min-height: 390px;
  }

  .location-copy {
    padding: 48px 23px;
  }

  .standard-hero {
    padding: 72px 0 62px;
  }

  .standard-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

  .feature-story,
  .feature-story:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-story:nth-child(even) .feature-story-image {
    order: 0;
  }

  .feature-story-image img {
    height: 350px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .contact-panel,
  .enquiry-form {
    padding: 32px 22px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .editorial-aside nav {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links a {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-book-bar {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* 2026 editorial refinement: calmer, image-led and easier to read */
body.redesign-v2,
body {
  font-size: 17px;
}

.redesign-v2 .eyebrow,
.property-opening .eyebrow,
.review-library .eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.redesign-v2 .button,
.property-opening .button,
.review-library .button {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 0.78rem;
}

.redesign-v2 .lede,
.property-opening .lede {
  font-size: clamp(1.32rem, 2vw, 1.82rem);
  line-height: 1.48;
}

.home-opening {
  padding: clamp(72px, 8vw, 124px) 0 0;
  background: var(--paper);
}

.home-opening-copy {
  max-width: 1320px;
  margin-bottom: clamp(48px, 5vw, 72px);
  text-align: center;
}

.home-opening-copy .eyebrow {
  justify-content: center;
}

.home-opening-copy h1 {
  max-width: 1280px;
  margin: 0 auto 30px;
  font-size: clamp(3.9rem, 6.3vw, 7rem);
  line-height: 0.94;
}

.home-opening-copy .lede {
  max-width: 780px;
  margin: 0 auto 32px;
}

.home-opening-actions {
  justify-content: center;
}

.dual-hero {
  display: grid;
  width: min(1540px, calc(100vw - 36px));
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dual-hero-item {
  display: block;
  min-width: 0;
  color: var(--ink-deep);
  background: var(--cream);
  text-decoration: none;
}

.dual-hero-image {
  display: block;
  height: clamp(430px, 43vw, 690px);
  overflow: hidden;
}

.dual-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.dual-hero-item:first-child img {
  object-position: center 55%;
}

.dual-hero-item:last-child img {
  object-position: center 53%;
}

.dual-hero-item:hover img,
.dual-hero-item:focus-visible img {
  transform: scale(1.018);
}

.dual-hero-caption {
  display: flex;
  min-height: 112px;
  padding: 22px clamp(22px, 3vw, 42px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dual-hero-caption strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
}

.dual-hero-caption small {
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dual-hero-arrow {
  color: var(--rust);
  font-family: var(--display);
  font-size: 2rem;
  transition: transform 180ms ease;
}

.dual-hero-item:hover .dual-hero-arrow,
.dual-hero-item:focus-visible .dual-hero-arrow {
  transform: translateX(6px);
}

.confidence-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.confidence-line-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.confidence-line p {
  margin: 0;
  padding: 28px clamp(18px, 2.7vw, 38px);
  border-left: 1px solid var(--line);
}

.confidence-line p:first-child {
  border-left: 0;
}

.confidence-line strong,
.confidence-line span {
  display: block;
}

.confidence-line strong {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.2;
}

.confidence-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-intro {
  padding-top: clamp(100px, 10vw, 160px);
  padding-bottom: clamp(80px, 9vw, 135px);
}

.narrow-centre {
  max-width: 890px;
  text-align: center;
}

.narrow-centre .eyebrow {
  justify-content: center;
}

.narrow-centre .lede {
  margin-inline: auto;
}

.stay-row {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  background: var(--cream);
}

.stay-row + .stay-row {
  border-top: 1px solid rgba(255,255,255,0.8);
}

.stay-row-reverse .stay-row-media {
  order: 2;
}

.stay-row-media {
  min-width: 0;
  overflow: hidden;
}

.stay-row-media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.stay-row-copy {
  display: flex;
  max-width: 680px;
  padding: clamp(72px, 8vw, 132px);
  flex-direction: column;
  justify-content: center;
}

.stay-row-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(4rem, 6vw, 6.7rem);
}

.stay-row-copy .lede {
  margin-bottom: 22px;
}

.stay-row-copy .button-row {
  margin-top: 20px;
}

.stay-kicker {
  margin-bottom: 27px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.stay-kicker span {
  margin-inline: 5px;
  color: var(--rust);
}

.guest-voice {
  padding: clamp(100px, 11vw, 176px) 0;
  color: var(--white);
  background: var(--ink-deep);
}

.guest-voice-inner {
  max-width: 1030px;
  text-align: center;
}

.guest-voice .eyebrow {
  justify-content: center;
  color: var(--brass-light);
}

.guest-voice blockquote {
  margin: 0 0 27px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
  line-height: 1.12;
}

.guest-voice-credit {
  margin-bottom: 25px;
  color: rgba(255,255,255,0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--white);
}

.hosts-home {
  padding-block: clamp(105px, 11vw, 180px);
}

.hosts-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, 0.93fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.hosts-home-images {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 18px;
}

.hosts-home-images img:first-child {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.hosts-home-images img:last-child {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.hosts-home-copy {
  max-width: 590px;
}

.hosts-home-copy .lede {
  margin-bottom: 26px;
}

.brixham-home {
  padding: clamp(100px, 10vw, 160px) 0;
  color: var(--white);
  background: var(--ink);
}

.brixham-home-heading {
  display: grid;
  margin-bottom: clamp(50px, 7vw, 90px);
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.brixham-home-heading .eyebrow,
.brixham-home-heading h2 {
  color: var(--white);
}

.brixham-home-heading .lede {
  color: rgba(255,255,255,0.78);
}

.brixham-home-heading h2 {
  margin-bottom: 0;
}

.brixham-photo-grid {
  display: grid;
  width: min(1540px, calc(100vw - 36px));
  margin: 0 auto;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 330px);
  gap: 10px;
}

.brixham-photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.brixham-photo-main {
  grid-row: 1 / 3;
}

.brixham-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brixham-photo-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(16,41,45,0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brixham-home-link {
  margin-top: 40px;
  text-align: center;
}

.direct-home {
  padding: clamp(110px, 12vw, 190px) 0;
  background: var(--cream);
}

.direct-home-inner {
  max-width: 940px;
  text-align: center;
}

.direct-home-inner .eyebrow,
.direct-home-inner .button-row {
  justify-content: center;
}

.direct-home-inner .lede {
  margin: 0 auto 34px;
}

/* Property pages: text is kept off busy photography for reliable contrast. */
.property-opening {
  padding: clamp(78px, 9vw, 138px) 0 clamp(60px, 7vw, 100px);
  background: var(--paper);
}

.property-opening-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: end;
  gap: clamp(55px, 8vw, 120px);
}

.property-opening h1 {
  margin-bottom: 0;
  font-size: clamp(4.3rem, 8vw, 8.6rem);
  line-height: 0.94;
}

.property-opening-copy .lede {
  margin-bottom: 30px;
}

.property-main-image {
  width: min(1540px, calc(100vw - 36px));
  height: min(74vh, 810px);
  min-height: 570px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream-deep);
}

.property-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-main-image-sealark img {
  object-position: center 55%;
}

.property-main-image-sunberry img {
  object-position: center 53%;
}

.property-anchor-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.property-anchor-bar nav {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 55px);
}

.property-anchor-bar a {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.property-anchor-bar a:hover,
.property-anchor-bar a:focus-visible {
  color: var(--rust);
}

.summary-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-stat {
  background: transparent;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-list li {
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.room-card,
.destination-card,
.info-card {
  min-height: 0;
  padding: 30px 0 20px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.room-card:hover,
.destination-card:hover,
.info-card:hover {
  transform: none;
}

.section-ink .destination-card,
.section-ink .info-card {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.notice {
  padding: 25px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

/* Complete, horizontally scrollable review libraries. */
.review-library {
  padding: clamp(95px, 10vw, 160px) 0;
  background: var(--cream);
}

.review-library-heading {
  display: flex;
  margin-bottom: 44px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.review-library-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.review-library-summary {
  min-width: 210px;
  text-align: right;
}

.review-library-summary strong,
.review-library-summary span {
  display: block;
}

.review-library-summary strong {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.review-library-summary span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-rail-wrap {
  position: relative;
  width: min(1540px, calc(100vw - 36px));
  margin: 0 auto;
}

.review-rail {
  display: grid;
  padding-bottom: 18px;
  grid-auto-columns: minmax(390px, 32vw);
  grid-auto-flow: column;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--rust) rgba(24,54,58,0.12);
  scrollbar-width: thin;
}

.review-entry {
  min-height: 390px;
  padding: 40px clamp(28px, 3.2vw, 50px);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,249,0.68);
  scroll-snap-align: start;
}

.review-entry:first-child {
  border-left: 1px solid var(--line);
}

.review-stars {
  display: block;
  margin-bottom: 24px;
  color: var(--rust);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.review-entry blockquote {
  margin: 0 0 30px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(1.42rem, 1.8vw, 1.82rem);
  line-height: 1.42;
}

.review-entry footer {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.review-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 1.45rem;
  cursor: pointer;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.review-position {
  min-width: 110px;
  margin-right: 7px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.review-source {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.review-source a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .confidence-line-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-line p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .confidence-line p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .stay-row {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .stay-row-media img {
    min-height: 650px;
  }

  .stay-row-copy {
    padding: 70px 55px;
  }

  .hosts-home-grid,
  .property-opening-inner {
    grid-template-columns: 1fr;
  }

  .property-opening-copy {
    max-width: 760px;
  }

  .review-rail {
    grid-auto-columns: minmax(390px, 46vw);
  }
}

@media (max-width: 760px) {
  body.redesign-v2,
  body {
    font-size: 16px;
  }

  .home-opening {
    padding-top: 64px;
  }

  .home-opening-copy {
    margin-bottom: 54px;
    text-align: left;
  }

  .home-opening-copy .eyebrow,
  .home-opening-actions {
    justify-content: flex-start;
  }

  .home-opening-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 11vw, 4.4rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .home-opening-copy .lede {
    margin-inline: 0;
  }

  .dual-hero {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
  }

  .dual-hero-image {
    height: 430px;
  }

  .dual-hero-caption {
    min-height: 98px;
    padding: 18px 20px;
  }

  .dual-hero-caption strong {
    font-size: 1.8rem;
  }

  .dual-hero-caption small {
    font-size: 0.64rem;
  }

  .confidence-line-inner {
    grid-template-columns: 1fr;
  }

  .confidence-line p,
  .confidence-line p:first-child,
  .confidence-line p:nth-child(3) {
    padding: 21px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .confidence-line p:first-child {
    border-top: 0;
  }

  .stay-row,
  .stay-row-reverse {
    grid-template-columns: 1fr;
  }

  .stay-row-reverse .stay-row-media {
    order: 0;
  }

  .stay-row-media img {
    min-height: 430px;
    max-height: 520px;
  }

  .stay-row-copy {
    max-width: none;
    padding: 62px 24px 72px;
  }

  .stay-row-copy h2 {
    font-size: 4rem;
  }

  .stay-kicker {
    line-height: 1.7;
  }

  .guest-voice-inner {
    text-align: left;
  }

  .guest-voice .eyebrow {
    justify-content: flex-start;
  }

  .hosts-home-images {
    grid-template-columns: 1fr;
  }

  .hosts-home-images img:first-child {
    height: 470px;
  }

  .hosts-home-images img:last-child {
    display: none;
  }

  .brixham-home-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brixham-photo-grid {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    grid-template-rows: 430px 300px 300px;
  }

  .brixham-photo-main {
    grid-row: auto;
  }

  .direct-home-inner {
    text-align: left;
  }

  .direct-home-inner .eyebrow,
  .direct-home-inner .button-row {
    justify-content: flex-start;
  }

  .direct-home-inner .lede {
    margin-inline: 0;
  }

  .property-opening {
    padding-top: 65px;
  }

  .property-opening h1 {
    font-size: clamp(4rem, 18vw, 5.8rem);
    overflow-wrap: break-word;
  }

  .property-main-image {
    width: calc(100vw - 20px);
    height: 530px;
    min-height: 0;
  }

  .property-anchor-bar {
    overflow-x: auto;
  }

  .property-anchor-bar nav {
    width: max-content;
    min-width: 100%;
    padding: 0 18px;
    justify-content: flex-start;
  }

  .review-library-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .review-library-summary {
    text-align: left;
  }

  .review-rail-wrap {
    width: calc(100vw - 20px);
  }

  .review-rail {
    grid-auto-columns: calc(100vw - 48px);
  }

  .review-entry {
    min-height: 0;
    padding: 32px 24px;
  }

  .review-entry blockquote {
    font-size: 1.42rem;
  }

  .review-controls {
    justify-content: flex-start;
  }

  .review-position {
    order: 3;
    margin-left: auto;
    text-align: right;
  }
}

@media (max-width: 390px) {
  .home-opening-copy h1 {
    font-size: clamp(1.84rem, 9.2vw, 2.25rem);
  }

  .dual-hero-image {
    height: 380px;
  }

  .dual-hero-caption {
    gap: 10px;
  }

  .dual-hero-caption small {
    letter-spacing: 0.045em;
  }

  .property-opening h1 {
    font-size: 3.9rem;
  }
}

/* July 2026 agency audit: calmer layouts, readable reviews and live availability. */
.practical-note {
  margin: 30px 0 0;
  padding: 18px 0 2px 22px;
  border-left: 3px solid var(--rust);
  color: var(--ink-soft);
}

.practical-note strong {
  color: var(--ink-deep);
}

.brixham-home-title h2 {
  max-width: 690px;
}

.quote-content .eyebrow {
  color: var(--brass-light);
}

.quote-content .eyebrow::before {
  background: var(--brass-light);
}

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

.guide-editorial-grid {
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: clamp(55px, 7vw, 105px);
}

.guide-editorial-grid .editorial-aside {
  padding-left: 23px;
  border-left: 3px solid var(--rust);
}

.guide-editorial-grid .editorial-content {
  width: min(100%, 900px);
}

.guide-editorial-grid .editorial-aside nav a {
  padding-block: 16px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.guide-editorial-grid .feature-story-image img {
  box-shadow: var(--shadow-soft);
}

.cottage-map-section {
  background: #f4ede2;
}

.cottage-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: start;
  gap: clamp(42px, 6vw, 85px);
}

.cottage-map {
  position: relative;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  border: 1px solid rgba(24, 54, 58, 0.22);
  background: #dce4dc;
  box-shadow: var(--shadow-soft);
}

.orientation-map-art {
  width: 100%;
  height: 100%;
}

.map-sea {
  fill: #bdd7d6;
}

.map-land {
  fill: #eee6d8;
}

.map-harbour-water {
  fill: #bdd7d6;
}

.map-breakwater {
  fill: none;
  stroke: #7f8f8d;
  stroke-width: 7;
  stroke-linecap: round;
}

.map-road {
  fill: none;
  stroke: #fffdf9;
  stroke-width: 10;
  stroke-linecap: round;
}

.map-coast-path {
  fill: none;
  stroke: var(--rust);
  stroke-width: 3;
  stroke-dasharray: 9 10;
}

.map-town-blocks {
  fill: #d0c1ad;
}

.map-water-label,
.map-place-label,
.map-small-label {
  font-family: var(--sans);
  font-weight: 750;
  letter-spacing: 0.12em;
}

.map-water-label {
  fill: #668b8d;
  font-size: 28px;
  letter-spacing: 0.28em;
}

.map-place-label {
  fill: var(--ink);
  font-size: 26px;
  text-anchor: middle;
}

.map-small-label {
  fill: #6b716d;
  font-size: 16px;
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-deep);
  text-decoration: none;
  transform: translate(-24px, -50%);
}

.map-marker-sunberry {
  top: 51%;
  left: 17%;
}

.map-marker-sealark {
  top: 62%;
  left: 74%;
}

.map-pin {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--rust);
  font-family: var(--display);
  font-size: 1.35rem;
  place-items: center;
  box-shadow: 0 8px 25px rgba(16, 41, 45, 0.28);
  transform: none;
}

.map-pin {
  text-indent: 1px;
}

.map-label {
  display: grid;
  min-width: 155px;
  padding: 10px 13px;
  border: 1px solid rgba(24,54,58,0.18);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 7px 24px rgba(16,41,45,0.14);
}

.map-label strong {
  font-family: var(--display);
  font-size: 1.17rem;
  line-height: 1.1;
}

.map-label small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-location-list {
  display: grid;
  align-content: start;
}

.map-location-list article {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}

.map-location-list article:first-child {
  padding-top: 5px;
  border-top: 0;
}

.map-location-list h3 {
  font-size: 2.35rem;
}

.map-privacy-note {
  margin: 4px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.availability-section {
  background: var(--cream);
}

.availability-heading > div:last-child {
  max-width: 610px;
}

.availability-heading .lede {
  margin-bottom: 20px;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.availability-legend i {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
}

.legend-available {
  background: #eef1e9;
}

.legend-unavailable {
  background: #d9d5ce;
}

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

.availability-card {
  padding: clamp(28px, 3.5vw, 44px);
  border-top: 4px solid var(--rust);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.availability-card header {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}

.availability-card header > div {
  min-width: 0;
}

.availability-card header .eyebrow {
  margin-bottom: 10px;
  font-size: 0.67rem;
  white-space: nowrap;
}

.availability-card h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  white-space: nowrap;
}

.availability-card header .text-link {
  font-size: 0.78rem;
  white-space: nowrap;
}

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

.availability-status {
  min-height: 68px;
  margin-bottom: 22px;
  padding: 17px 19px;
  color: var(--ink-soft);
  background: var(--cream);
  font-size: 0.84rem;
  line-height: 1.55;
}

.availability-status.is-connected {
  min-height: 0;
  padding: 10px 14px;
  border-left: 3px solid var(--sage);
  color: var(--ink);
  background: #edf1ea;
  font-weight: 700;
}

.availability-months {
  display: none;
  margin-bottom: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.availability-months.is-ready {
  display: grid;
}

.availability-calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 3px;
}

.availability-calendar caption {
  padding-bottom: 10px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.25rem;
  text-align: left;
}

.availability-calendar th {
  padding: 3px 0 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.availability-calendar td {
  height: 34px;
  border: 1px solid transparent;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.calendar-available {
  color: var(--ink-deep);
  background: #eef1e9;
}

.calendar-unavailable {
  color: #777672;
  background: #d9d5ce;
  text-decoration: line-through;
}

.calendar-past {
  color: #aaa7a1;
  background: #f1eee8;
}

.calendar-today {
  border-color: var(--rust) !important;
}

.availability-airbnb {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.availability-disclaimer {
  max-width: 930px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-airbnb {
  margin-top: 40px;
  padding-top: 31px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.review-library {
  background: #f5eee4;
}

.review-library-heading {
  align-items: start;
}

.review-library-heading > div:first-child {
  max-width: 820px;
}

.review-heading-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.review-browser {
  margin-top: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.review-entry {
  display: flex;
  min-height: 0;
  padding: clamp(25px, 2.6vw, 36px);
  border: 1px solid var(--line);
  background: var(--white);
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(20, 43, 47, 0.055);
}

.review-entry:first-child {
  border-left: 1px solid var(--line);
}

.review-stars {
  margin-bottom: 18px;
}

.review-entry blockquote {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.68;
}

.review-entry footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.review-expand {
  display: block;
  min-height: 42px;
  margin-top: 14px;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.review-expand:hover,
.review-expand:focus-visible {
  color: var(--rust);
}

.review-pagination {
  display: grid;
  margin-top: 34px;
  grid-template-columns: minmax(190px, auto) 1fr minmax(190px, auto);
  align-items: center;
  gap: 20px;
}

.review-page-button,
.review-number-button {
  min-height: 52px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.review-page-button {
  padding: 13px 20px;
}

.review-page-button:hover:not(:disabled),
.review-page-button:focus-visible,
.review-number-button:hover,
.review-number-button:focus-visible,
.review-number-button[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.review-page-button:disabled {
  border-color: rgba(24,54,58,0.25);
  color: rgba(24,54,58,0.42);
  cursor: not-allowed;
}

.review-page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-number-button {
  width: 52px;
  padding: 0;
}

.review-position {
  min-width: 0;
  margin: 19px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.055em;
  text-align: center;
}

.review-source {
  margin-top: 17px;
  text-align: center;
}

@media (max-width: 1050px) {
  .guide-editorial-grid {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    gap: 55px;
  }

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

  .availability-grid,
  .cottage-map-grid {
    grid-template-columns: 1fr;
  }

  .map-location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }

  .map-privacy-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .home-opening-copy {
    text-align: center;
  }

  .home-opening-copy .eyebrow,
  .home-opening-actions {
    justify-content: center;
  }

  .home-opening-copy .lede {
    margin-inline: auto;
  }

  .dual-hero {
    width: min(900px, calc(100vw - 36px));
    grid-template-columns: 1fr;
  }

  .dual-hero-image {
    height: 560px;
  }

  .brixham-home-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brixham-home-heading .lede {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .guide-editorial-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .guide-editorial-grid .editorial-aside {
    position: static;
    padding-left: 18px;
  }

  .guide-editorial-grid .editorial-aside nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-editorial-grid .editorial-aside nav a:nth-child(odd) {
    padding-right: 12px;
  }

  .map-label {
    min-width: 0;
    max-width: 122px;
    padding: 8px 10px;
  }

  .map-label small {
    display: none;
  }

  .map-pin {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .map-location-list {
    grid-template-columns: 1fr;
  }

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

  .review-entry {
    padding: 28px 24px;
  }

  .review-entry blockquote {
    font-size: 1rem;
  }

  .review-pagination {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .review-page-numbers {
    display: none;
  }

  .review-page-button {
    min-width: 0;
    padding-inline: 12px;
  }

  .review-position,
  .review-source {
    text-align: left;
  }

  .availability-card header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .availability-months {
    grid-template-columns: 1fr;
  }

  .availability-calendar td {
    height: 40px;
    font-size: 0.82rem;
    line-height: 40px;
  }
}

@media (max-width: 390px) {
  .map-marker {
    gap: 4px;
  }

  .map-label strong {
    font-size: 0.98rem;
  }

  .review-page-button {
    font-size: 0.8rem;
  }
}

/* July 2026 map, calendar and homepage proportion refinements. */
.home-opening-actions .button {
  width: 220px;
  min-height: 54px;
  justify-content: center;
}

.guest-voice {
  padding: clamp(50px, 4.5vw, 68px) 0;
}

.guest-voice-inner {
  max-width: 880px;
}

.guest-voice blockquote {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 2.55vw, 2.7rem);
  line-height: 1.14;
}

.guest-voice-credit {
  margin-bottom: 18px;
}

.brixham-home {
  padding: clamp(76px, 7vw, 112px) 0;
  color: var(--ink-deep);
  background: var(--paper);
}

.brixham-home-heading {
  margin-bottom: clamp(38px, 5vw, 65px);
}

.brixham-home-heading .eyebrow {
  color: var(--rust);
}

.brixham-home-heading h2 {
  color: var(--ink-deep);
}

.brixham-home-heading .lede {
  color: var(--ink-soft);
}

.brixham-photo-grid {
  width: min(1440px, calc(100vw - 36px));
  grid-template-rows: repeat(2, 250px);
}

.brixham-photo-grid img {
  filter: saturate(1.07) brightness(1.04);
}

.brixham-photo-grid figcaption {
  color: var(--ink-deep);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 5px 22px rgba(16, 41, 45, 0.1);
}

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

.brixham-home .button-light:hover,
.brixham-home .button-light:focus-visible {
  border-color: var(--rust);
  background: var(--rust);
}

.direct-price-strip {
  padding: 24px 0;
  color: var(--white);
  background: var(--ink);
}

.booking-hero {
  padding: clamp(72px, 7vw, 100px) 0 clamp(62px, 6vw, 86px);
}

.booking-hero h1 {
  max-width: 1120px;
  font-size: clamp(3.8rem, 5.6vw, 5.8rem);
}

.booking-hero .lede {
  max-width: 880px;
}

.direct-price-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.direct-price-strip-inner > div {
  display: grid;
  gap: 3px;
}

.direct-price-strip strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
}

.direct-price-strip span {
  color: rgba(255,255,255,0.76);
  font-size: 0.86rem;
}

.direct-price-strip .button {
  flex: 0 0 auto;
}

.availability-status.is-preview {
  min-height: 0;
  padding: 12px 15px;
  border-left: 3px solid var(--brass);
  color: var(--ink-deep);
  background: #f4ead8;
  font-weight: 750;
}

.availability-months.is-preview {
  padding: 14px;
  border: 1px dashed rgba(157, 89, 66, 0.48);
  background: rgba(251, 248, 242, 0.72);
}

.availability-calendar.is-preview caption::after {
  margin-left: 7px;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  content: "EXAMPLE";
  vertical-align: middle;
}

.availability-actions {
  display: grid;
  gap: 10px;
}

.availability-actions .button {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.availability-disclaimer strong {
  color: var(--ink-deep);
}

.property-map-section {
  background: var(--paper);
}

.interactive-map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24,54,58,0.22);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.interactive-map-frame::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  color: var(--ink-soft);
  content: "Loading interactive map…";
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.interactive-map-frame.is-ready::after {
  display: none;
}

.map-nameplate {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  min-width: 205px;
  padding: 12px 15px 11px;
  border: 1px solid rgba(24,54,58,0.18);
  color: var(--ink-deep);
  background: rgba(251,248,242,0.96);
  box-shadow: 0 7px 24px rgba(16,41,45,0.14);
  pointer-events: none;
}

.map-nameplate strong {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.05;
}

.map-nameplate span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.interactive-map-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.interactive-map-frame.is-ready iframe {
  opacity: 1;
}

.property-map-note {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.property-map-note p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.property-map-note strong {
  color: var(--ink-deep);
}

.property-map-note .text-link {
  flex: 0 0 auto;
}

.property-map-note-link {
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .home-opening-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-opening-actions .button {
    width: 100%;
  }

  .guest-voice {
    padding: 50px 0 56px;
  }

  .guest-voice blockquote {
    font-size: 1.8rem;
  }

  .brixham-photo-grid {
    grid-template-rows: 310px 210px 210px;
  }

  .direct-price-strip-inner,
  .property-map-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-hero {
    padding: 54px 0 52px;
  }

  .booking-hero h1 {
    font-size: 3.35rem;
  }

  .direct-price-strip {
    padding: 18px 0;
  }

  .direct-price-strip-inner {
    gap: 14px;
  }

  .direct-price-strip strong {
    font-size: 1.42rem;
  }

  .direct-price-strip span {
    display: none;
  }

  .direct-price-strip .button,
  .property-map-note .text-link {
    width: 100%;
  }

  .interactive-map-frame iframe {
    height: 380px;
  }

  .map-nameplate {
    top: 10px;
    left: 10px;
    min-width: 176px;
    padding: 10px 12px 9px;
  }

  .map-nameplate strong {
    font-size: 1.08rem;
  }
}
