:root {
  --ink: #17201b;
  --muted: #5d675f;
  --paper: #fbfaf6;
  --mist: #eef3ef;
  --sage: #60765d;
  --deep-green: #24382f;
  --coast: #477889;
  --clay: #a85d47;
  --stone: #d9d1c2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 32, 27, 0.15);
  --radius: 8px;
  --content: min(1160px, calc(100vw - 40px));
  --section-padding-y: clamp(58px, 9vw, 112px);
  --section-padding-y-tight: clamp(38px, 6vw, 72px);
  --section-gap: clamp(30px, 6vw, 74px);
  --display-font: Baskerville, "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  --body-font: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  line-height: 1.6;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(23, 32, 27, 0.09);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: clamp(190px, 20vw, 248px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-family: var(--display-font);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--deep-green);
  font-size: 0.94rem;
}

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

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

.site-nav .nav-cta {
  color: var(--white);
  background: var(--deep-green);
  padding-inline: 18px;
  border-radius: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 70svh, 660px);
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(18, 30, 26, 0.78), rgba(18, 30, 26, 0.42) 45%, rgba(18, 30, 26, 0.04));
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  width: min(760px, calc(100vw - 40px));
  margin: 0 0 clamp(28px, 5vh, 56px) max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  transform: translateY(18px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-family: var(--display-font);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-caps: small-caps;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c9ac;
}

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

h1,
h2,
h3 {
  font-family: var(--display-font);
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.3vw, 5.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--display-font);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

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

.button.secondary {
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 56, 47, 0.18);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding-block: var(--section-padding-y);
}

.section > :first-child {
  margin-top: 0;
}

.section > :last-child {
  margin-bottom: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.intro-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--content);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 27, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(23, 32, 27, 0.08);
}

.textured {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.textured::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  filter: saturate(0.55) contrast(0.9);
}

.textured::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(251, 250, 246, 0.86);
}

.textured-stone::before {
  background-image: url("assets/property/hallway.jpg");
}

.textured-coast::before {
  background-image: url("assets/area/coast-country.jpg");
  opacity: 0.16;
}

.textured-garden::before {
  background-image: url("assets/property/garden-wide.jpg");
  opacity: 0.2;
}

.quick-info div {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-right: 1px solid rgba(23, 32, 27, 0.09);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 7px;
  color: var(--coast);
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.quick-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: var(--section-gap);
  align-items: center;
  position: relative;
}

.section-divider {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: clamp(8px, 1.5vw, 18px);
  margin-bottom: 0;
  line-height: 0;
}
.section-divider .ammonite {
  margin-bottom: 0;
}
.section-divider::before,
.section-divider::after {
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(96, 118, 93, 0.42), rgba(168, 93, 71, 0.26));
}

.section-divider::after {
  background: linear-gradient(90deg, rgba(168, 93, 71, 0.26), rgba(96, 118, 93, 0.42), transparent);
}

.section-divider .ammonite {
  display: block;
  width: 58px;
  height: 58px;
  padding: 5px;
  overflow: visible;
  color: var(--sage);
  background: var(--paper);
  border: 1px solid rgba(96, 118, 93, 0.26);
  border-radius: 50%;
}

.shell-outline,
.shell-spiral,
.shell-core,
.shell-ribs {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell-outline {
  stroke-width: 3.1;
}

.shell-spiral {
  stroke-width: 2.7;
}

.shell-core {
  stroke-width: 2.3;
}

.shell-ribs {
  opacity: 0.86;
  stroke-width: 2;
}

.split-media img,
.breakfast-images img,
.area-grid img,
.thumbnail-gallery img,
.review-panel img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media img {
  aspect-ratio: 4 / 3;
}

.split-copy p,
.breakfast-copy p,
.area-copy p,
.section-heading p,
.review-copy p,
.contact p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
}

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

.breakfast {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: var(--section-gap);
  align-items: center;
}

.breakfast-images {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 18px;
  align-items: end;
}

.breakfast-images img:first-child {
  aspect-ratio: 1 / 1;
}

.breakfast-images img:last-child {
  aspect-ratio: 4 / 3;
  margin-bottom: 42px;
}

.area {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: #edf2ed;
}

.area.textured::after {
  background: rgba(238, 243, 239, 0.88);
}

.area > * {
  position: relative;
  z-index: 1;
}

.area-copy {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

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

.area-grid article {
  background: var(--paper);
  border-radius: var(--radius);
}

.area-grid img {
  aspect-ratio: 1.55 / 1;
  box-shadow: none;
}

.area-grid h3,
.area-grid p {
  padding-inline: 20px;
}

.area-grid h3 {
  margin-top: 18px;
}

.area-grid p {
  margin-bottom: 22px;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 1 / -1;
  max-width: 640px;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-section .section-divider {
  margin-top: clamp(54px, 7vw, 88px);
}


.thumbnail-gallery a {
  display: block;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: var(--radius);
  background: var(--stone);
}

.thumbnail-gallery a:first-child,
.thumbnail-gallery a:hover,
.thumbnail-gallery a:focus-visible {
  border-color: var(--clay);
  outline: none;
}

.thumbnail-gallery img {
  height: 100%;
  box-shadow: none;
  transition: transform 180ms ease;
}

.thumbnail-gallery a:hover img,
.thumbnail-gallery a:focus-visible img {
  transform: scale(1.04);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: var(--section-gap);
  align-items: center;
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-panel img {
  height: 100%;
  object-fit: contain;
  background: #08489c;
}

.widget-placeholder {
  display: grid;
  min-height: 320px;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px dashed rgba(36, 56, 47, 0.32);
  border-radius: var(--radius);
}

.widget-placeholder span {
  display: block;
  margin-bottom: 12px;
  color: var(--coast);
  font-family: var(--display-font);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-caps: small-caps;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.widget-placeholder p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(38px, 6vw, 62px);
  color: var(--white);
  background: var(--deep-green);
  border-radius: var(--radius);
}

.contact.textured::after {
  background: rgba(36, 56, 47, 0.9);
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: #f0c9ac;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.text-link {
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  color: var(--muted);
  border-top: 1px solid rgba(23, 32, 27, 0.1);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    flex-direction: column;
  }

.brand {
  min-width: 0;
  width: 100%;
  justify-content: center;
}
	
.site-nav {
  width: 100%;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 2px;
}

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(18, 30, 26, 0.82), rgba(18, 30, 26, 0.28) 62%, rgba(18, 30, 26, 0.02));
  }

  .hero-copy {
    margin-right: 20px;
  }

  .intro,
  .split,
  .breakfast,
  .reviews,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .quick-info div:nth-child(2) {
    border-right: 0;
  }

  .quick-info div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 32, 27, 0.09);
  }

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

  .thumbnail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .review-panel img {
    max-width: 360px;
    height: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100vw - 28px, 1160px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 168px;
  }

.site-nav {
  flex-wrap: wrap;
  overflow-x: visible;
  row-gap: 6px;
}

.site-nav a {
  padding: 9px 10px;
  white-space: normal;
}

  .hero {
    min-height: 640px;
  }

  .hero-copy {
    width: calc(100vw - 28px);
    margin: 0 14px 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .section {
    padding-block: var(--section-padding-y);
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 32, 27, 0.09);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

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

  .breakfast-images img:last-child {
    margin-bottom: 0;
  }

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

  .contact {
    padding: 28px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .area {
    padding-inline: 14px;
  }
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--deep-green);
  border: 1px solid rgba(23, 32, 27, 0.16);
  border-radius: 50%;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
  background: var(--deep-green);
  outline: none;
}
.split-media {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: clamp(1.5rem, 4vw, 3rem);

    max-width: 700px;
    margin: 0 auto;
}

.media {
    width: 100%;
    max-width: 520px;
}

.media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;

    border: 18px solid #f7f4ef;
    border-radius: 14px;

    box-shadow:
        0 14px 34px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 768px) {

    .split-media {
        gap: 1.5rem;
    }

    .media-secondary {
        margin-left: 0;
    }
}
/* Tighten spacing around ammonite dividers */
#rooms,
.gallery-section {
  padding-bottom: clamp(22px, 3vw, 36px);
}

#rooms + .section,
.gallery-section + .section {
  padding-top: clamp(22px, 3vw, 36px);
}

#rooms .section-divider,
.gallery-section .section-divider {
  margin-top: clamp(22px, 3vw, 36px);
}

.reviews {
  padding-top: clamp(22px, 3vw, 36px);
}

/* External review links */
.review-links-panel {
  align-content: start;
}

.review-links-panel > p {
  margin-bottom: 20px;
}

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

.review-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 38px 11px 14px;
  color: var(--deep-green);
  background: var(--mist);
  border: 1px solid rgba(36, 56, 47, 0.14);
  border-radius: 6px;
  font-family: var(--display-font);
  font-weight: 600;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.review-links a::after {
  position: absolute;
  right: 14px;
  content: "↗";
  color: var(--coast);
  font-family: var(--body-font);
  font-size: 1rem;
}

.review-links a:hover,
.review-links a:focus-visible {
  color: var(--white);
  background: var(--deep-green);
  border-color: var(--deep-green);
  transform: translateY(-1px);
  outline: none;
}

.review-links a:hover::after,
.review-links a:focus-visible::after {
  color: var(--white);
}

@media (max-width: 620px) {
  .review-links {
    grid-template-columns: 1fr;
  }
}
