:root {
  --ink: #15353b;
  --teal: #0c4350;
  --teal-deep: #082f38;
  --sea: #276778;
  --ochre: #c88d3e;
  --cream: #f4ead7;
  --paper: #fbf7ee;
  --white: #fffef9;
  --soft-blue: #dbe8e8;
  --muted: #657679;
  --line: rgba(12, 67, 80, 0.17);
  --shadow: 0 24px 70px rgba(8, 47, 56, 0.14);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  background: var(--white);
}

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

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 10px clamp(24px, 5vw, 78px);
  color: var(--white);
  transition: background .3s ease, min-height .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  min-height: 76px;
  color: var(--ink);
  background: rgba(251, 247, 238, .96);
  box-shadow: 0 8px 30px rgba(8, 47, 56, .08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(8, 47, 56, .18);
}

.brand-wordmark {
  display: grid;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: .02em;
}

.brand-wordmark small {
  margin-top: .22rem;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.4rem); }
.site-nav a { position: relative; font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.4rem; left: 0; height: 1px; content: ''; transform: scaleX(0); transform-origin: right; background: currentColor; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .75rem 1.15rem; border: 1px solid currentColor; }
.nav-toggle { display: none; color: inherit; border: 0; background: transparent; }

.hero {
  position: relative;
  min-height: 790px;
  height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: url('../images/855469.jpg') center 45% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 37, 44, .88) 0%, rgba(5, 37, 44, .49) 48%, rgba(5, 37, 44, .08) 77%),
    linear-gradient(0deg, rgba(5, 37, 44, .62) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 48px));
  margin: 110px 0 60px clamp(24px, 10vw, 160px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sea);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--cream); }

h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; }

.hero h1 {
  max-width: 730px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-copy { max-width: 610px; margin: 0 0 2.25rem; font-family: var(--serif); font-size: clamp(1.08rem, 1.65vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.45rem;
  border: 1px solid transparent;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ochre); }
.button-primary:hover { background: #af732c; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); }
.button-ghost:hover { color: var(--teal-deep); background: var(--white); }
.button-cream { color: var(--teal-deep); background: var(--cream); }

.hero-facts {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 78px);
  bottom: 0;
  left: clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.36);
}

.hero-facts span { padding: 1.4rem 1.2rem; border-right: 1px solid rgba(255,255,255,.24); font-size: .78rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.hero-facts span:last-child { border-right: 0; }
.hero-facts strong { margin-right: .25rem; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; letter-spacing: 0; }

.intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); padding-block: clamp(6rem, 11vw, 10rem); }
.section-heading h2, .feature-copy h2, .conwy-content h2, .contact-inner h2 { margin-bottom: 1.5rem; font-size: clamp(2.4rem, 4.6vw, 4.6rem); letter-spacing: -.035em; }
.intro-copy { max-width: 690px; }
.lead { font-family: var(--serif); font-size: clamp(1.28rem, 2vw, 1.65rem); line-height: 1.55; }
.text-link { display: inline-block; margin-top: 1rem; color: var(--teal); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: .35rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(.35rem); }

.feature-split { display: grid; min-height: 680px; grid-template-columns: 1.25fr .75fr; background: var(--cream); }
.feature-image { min-height: 560px; background-position: center; background-size: cover; }
.lounge-image { background-image: url('../images/11567120.jpg'); }
.feature-copy { align-self: center; padding: clamp(4rem, 8vw, 8rem); }
.feature-copy p:not(.eyebrow) { color: var(--muted); }
.tick-list { display: grid; gap: .7rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 1.7rem; font-size: .9rem; font-weight: 700; letter-spacing: .04em; }
.tick-list li::before { position: absolute; top: .17rem; left: 0; color: var(--ochre); content: '✦'; }

.details { padding-block: clamp(6rem, 10vw, 9rem); }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.detail-grid { display: grid; margin-top: 4rem; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-card { min-height: 270px; padding: 2.2rem clamp(1.3rem, 3vw, 2.6rem); border-right: 1px solid var(--line); }
.detail-card:last-child { border-right: 0; }
.detail-number { display: block; margin-bottom: 2.5rem; color: var(--ochre); font-size: .68rem; font-weight: 800; letter-spacing: .2em; }
.detail-card h3 { margin-bottom: .9rem; font-size: 1.65rem; }
.detail-card p { margin: 0; color: var(--muted); }
.amenities { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 3rem; }
.amenities span { padding: .5rem .85rem; border: 1px solid var(--line); border-radius: 999px; color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.practical-note { max-width: 760px; margin: 1.6rem auto 0; color: var(--muted); font-size: .82rem; text-align: center; }

.gallery-section { padding-block: clamp(6rem, 10vw, 9rem); background: var(--teal-deep); color: var(--white); }
.gallery-section .eyebrow { color: #92bec5; }
.split-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 4rem; align-items: end; }
.split-heading p:last-child { max-width: 480px; color: rgba(255,255,255,.68); }
.gallery-grid { display: grid; margin-top: 3.4rem; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; gap: 12px; }
.gallery-item { min-width: 0; overflow: hidden; padding: 0; border: 0; background: #08272e; cursor: zoom-in; }
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .3s; }
.gallery-item:hover img { transform: scale(1.045); opacity: .86; }

.conwy-banner { position: relative; min-height: 760px; display: flex; align-items: center; color: var(--white); background: url('../images/855453.jpg') center / cover fixed no-repeat; }
.conwy-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,37,44,.88), rgba(4,37,44,.48) 60%, rgba(4,37,44,.16)); }
.conwy-content { position: relative; width: min(790px, calc(100% - 48px)); margin-left: clamp(24px, 10vw, 160px); }
.conwy-content p:not(.eyebrow) { max-width: 610px; margin: 0 0 2rem; font-family: var(--serif); font-size: 1.2rem; }

.guestbook { padding-block: clamp(6rem, 10vw, 9rem); }
.rating { color: var(--muted); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.rating strong { color: var(--ochre); font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.review-grid { display: grid; margin-top: 3.4rem; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.review-card { display: flex; min-height: 270px; flex-direction: column; justify-content: space-between; margin: 0; padding: 2rem; border: 1px solid var(--line); background: var(--white); }
.review-card.featured { color: var(--white); border-color: var(--teal); background: var(--teal); transform: translateY(-16px); }
.review-card blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55; }
.review-card figcaption { margin-top: 2rem; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-card.featured figcaption { color: #b8d3d7; }
.guestbook-coming { max-width: 760px; margin: 3rem auto 0; color: var(--muted); font-family: var(--serif); font-style: italic; text-align: center; }

.contact-section { display: grid; min-height: 850px; grid-template-columns: .85fr 1.15fr; }
.contact-photo { background: url('../images/826827.jpg') center / cover no-repeat; }
.contact-panel { display: flex; align-items: center; padding: clamp(4rem, 8vw, 8rem); background: var(--cream); }
.contact-inner { width: min(650px, 100%); }
.contact-inner > p:not(.eyebrow) { color: var(--muted); }
.contact-form { display: grid; gap: 1rem; margin-top: 2.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: .35rem; padding: .8rem .1rem; color: var(--ink); border: 0; border-bottom: 1px solid rgba(12,67,80,.4); border-radius: 0; outline: 0; background: transparent; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--ochre); box-shadow: 0 1px 0 var(--ochre); }
.contact-form textarea { resize: vertical; }
.contact-form .consent-line { display: flex; gap: .75rem; align-items: flex-start; margin-block: .5rem; font-size: .7rem; font-weight: 500; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.consent-line input { width: auto; margin-top: .25rem; accent-color: var(--teal); }
.contact-form .button { justify-self: start; }
.form-notice { margin: 1rem 0; padding: .9rem 1rem; border-left: 3px solid; background: rgba(255,255,255,.55); }
.form-notice.success { border-color: #3a806b; }
.form-notice.error { border-color: #a04d3f; }
.direct-contact { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 2rem; color: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.direct-contact a { text-underline-offset: .3rem; }

.site-footer { display: grid; min-height: 180px; align-items: center; padding: 2.5rem clamp(24px, 5vw, 78px); color: var(--white); background: #05262d; grid-template-columns: 1fr auto 1fr; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; font-family: var(--serif); font-size: 1.05rem; }
.footer-brand img { border-radius: 50%; }
.footer-brand span { display: grid; }
.footer-brand small { font-family: var(--sans); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.3rem; }
.footer-links a { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-footer > p { justify-self: end; color: rgba(255,255,255,.55); font-size: .68rem; }

.lightbox { width: min(1100px, calc(100% - 32px)); padding: 0; color: var(--white); border: 0; background: #061f25; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(2,20,24,.88); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 76vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 1rem 1.2rem; font-family: var(--serif); }
.lightbox-close { position: absolute; top: 12px; right: 12px; width: 42px; height: 42px; color: var(--white); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.5); font-size: 1.7rem; cursor: pointer; }

.has-js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.has-js .reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; }
.legal-header { padding: 20px clamp(24px, 5vw, 78px); border-bottom: 1px solid var(--line); }
.legal-content { max-width: 850px; padding-block: 5rem 7rem; }
.legal-content h1 { margin-bottom: 2rem; font-size: clamp(3rem, 7vw, 5rem); }
.legal-content h2 { margin: 2.5rem 0 .6rem; font-size: 1.7rem; }

@media (max-width: 980px) {
  .site-header { min-height: 78px; padding-inline: 22px; }
  .brand img { width: 72px; height: 72px; }
  .nav-toggle { position: relative; display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; }
  .nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: currentColor; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: 1.5rem 24px 2rem; color: var(--ink); background: var(--paper); box-shadow: 0 18px 35px rgba(8,47,56,.12); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .55rem 0; }
  .nav-cta { padding-inline: 1rem !important; text-align: center; }
  .intro { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-copy { padding: 5rem max(24px, 8vw); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-card:last-child { border-bottom: 0; }
  .detail-number { margin-bottom: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-photo { min-height: 460px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer > p { justify-self: start; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 32px, 1180px); }
  .brand-wordmark { display: grid; font-size: 1.4rem; }
  .hero { min-height: 760px; }
  .hero-content { width: calc(100% - 32px); margin: 140px 16px 60px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-shade { background: linear-gradient(0deg, rgba(5,37,44,.88) 0%, rgba(5,37,44,.45) 70%, rgba(5,37,44,.22)); }
  .hero-facts { right: 16px; left: 16px; grid-template-columns: repeat(2, 1fr); }
  .hero-facts span { padding: .75rem .3rem; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .62rem; }
  .hero-facts strong { font-size: 1.1rem; }
  .split-heading { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-wide { grid-column: auto; }
  .conwy-banner { min-height: 650px; background-attachment: scroll; }
  .conwy-content { width: calc(100% - 32px); margin-inline: 16px; }
  .contact-panel { padding: 4.5rem 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

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

/* Static multipage site */
.top-ribbon {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  left: 0;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: #05262d;
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.site-header { top: 30px; }
.site-nav { gap: clamp(.75rem, 1.4vw, 1.4rem); }
.site-nav a { font-size: .69rem; }
.site-nav a[aria-current='page']:not(.nav-cta)::after { transform: scaleX(1); }
.site-nav .nav-cta[aria-current='page'] { background: rgba(255,255,255,.12); }
.site-header.scrolled .nav-cta[aria-current='page'] { background: var(--teal); color: var(--white); }
.home-page .hero { padding-top: 30px; }

/* Clip entrances without creating a separate vertical scrolling container. */
.home-page main { overflow-x: clip; }
.home-page .hero { overflow: hidden; isolation: isolate; background-image: none; }
.home-page .hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background: url('../images/855469.jpg') center 45% / cover no-repeat;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}
.has-js .home-page .reveal {
  transform: translate3d(var(--reveal-offset, -64px), 0, 0);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1);
}
.home-page .reveal-left { --reveal-offset: -64px; }
.home-page .reveal-right { --reveal-offset: 64px; }
.has-js .home-page .reveal.visible,
.has-js .home-page .reveal:focus-within { opacity: 1; transform: none; }
@media (max-width: 680px) {
  .home-page .reveal-left { --reveal-offset: -32px; }
  .home-page .reveal-right { --reveal-offset: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-page .hero::before { transform: none; }
  .has-js .home-page .reveal { opacity: 1; transform: none; transition: none; }
}

.home-links {
  padding-block: clamp(6rem, 10vw, 9rem);
  background: var(--cream);
}

.link-card-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.image-link-card {
  position: relative;
  min-height: 380px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  background-image: linear-gradient(0deg, rgba(5,38,45,.88), rgba(5,38,45,.08) 70%), var(--card-image);
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

.image-link-card::before {
  position: absolute;
  inset: 0;
  content: '';
  background: rgba(200,141,62,0);
  transition: background .35s ease;
}

.image-link-card:hover::before { background: rgba(200,141,62,.18); }
.image-link-card > * { position: relative; }
.image-link-card span { font-size: .74rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.image-link-card strong { margin-top: .25rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; }
.image-link-card i { position: absolute; right: 2rem; bottom: 2.2rem; font-size: 1.8rem; font-style: normal; transition: transform .25s ease; }
.image-link-card:hover i { transform: translateX(.4rem); }

.guestbook-preview { padding-block: clamp(6rem, 10vw, 9rem); }
.quote-large { max-width: 900px; margin-inline: auto; text-align: center; }
.quote-large .quote-mark { display: block; height: 4.7rem; color: var(--ochre); font: 7rem/1 var(--serif); }
.quote-large blockquote { margin: 0 auto 1.5rem; font-family: var(--serif); font-size: clamp(1.65rem, 3.4vw, 3rem); line-height: 1.35; }
.quote-large > p { color: var(--muted); font-size: .76rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.closing-cta {
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem clamp(24px, 8vw, 130px);
  color: var(--white);
  background: var(--teal);
}

.closing-cta h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.6rem); }
.closing-cta .eyebrow { margin-bottom: .5rem; }

.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(24px, 9vw, 145px) 80px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,38,45,.9), rgba(5,38,45,.14) 75%); }
.page-hero-content { position: relative; z-index: 1; width: min(820px, 100%); }
.page-hero h1 { margin-bottom: .7rem; font-size: clamp(3.6rem, 8vw, 7rem); letter-spacing: -.045em; }
.page-hero-content > p:last-child { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.bookings-hero { background-image: url('../images/11567125.jpg'); background-position: center 45%; }
.reviews-hero { background-image: url('../images/11567119.jpg'); background-position: center; }
.guide-hero { background-image: url('../images/855453.jpg'); background-position: center 55%; }
.gallery-hero { background-image: url('../images/11567122.jpg'); background-position: center; }

.booking-layout {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(6rem, 10vw, 9rem);
  grid-template-columns: .85fr 1.15fr;
}

.booking-copy h2, .guide-section h2, .review-summary h2, .guestbook-copy h2 { font-size: clamp(2.3rem, 4.7vw, 4.5rem); }
.dark-actions .button-outline { color: var(--teal); border-color: var(--teal); }
.dark-actions .button-outline:hover { color: var(--white); background: var(--teal); }

.calendar-placeholder { padding: clamp(1.2rem, 3vw, 2.3rem); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.calendar-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; }
.calendar-heading button { width: 38px; height: 38px; color: var(--muted); border: 1px solid var(--line); background: transparent; }
.calendar-note { margin: 1rem 0; padding: .7rem; color: var(--sea); background: var(--soft-blue); font-size: .76rem; text-align: center; }
.calendar-skeleton { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-skeleton span { padding: .45rem 0; color: var(--muted); font-size: .65rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-skeleton i { aspect-ratio: 1; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(219,232,232,.55), rgba(244,234,215,.35)); }

.stay-facts { padding-block: clamp(5rem, 9vw, 8rem); background: var(--cream); }
.fact-card-grid { display: grid; margin-top: 3.5rem; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-card { min-height: 220px; padding: 1.8rem; border-right: 1px solid var(--line); }
.fact-card:last-child { border-right: 0; }
.fact-card > span, .recommendation-card > span, .thing-card > span { color: var(--ochre); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.fact-card h3 { margin: 2rem 0 .6rem; font-size: 1.6rem; }
.fact-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.booking-next { display: grid; gap: 4rem; padding-block: clamp(6rem, 10vw, 9rem); grid-template-columns: .85fr 1.15fr; }
.planned-grid { display: grid; gap: 0; }
.planned-grid > div { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.planned-grid strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.planned-grid p { margin: .4rem 0 0; color: var(--muted); }

.guide-jump { display: grid; margin-top: -34px; position: relative; z-index: 3; grid-template-columns: repeat(4, 1fr); background: var(--white); box-shadow: var(--shadow); }
.guide-jump a { display: flex; gap: .7rem; align-items: center; justify-content: center; min-height: 78px; padding: 1rem; border-right: 1px solid var(--line); color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.guide-jump a:last-child { border-right: 0; }
.guide-jump span { color: var(--ochre); }
.guide-jump a:hover { color: var(--white); background: var(--teal); }
.guide-section { padding-block: clamp(6rem, 10vw, 9rem); scroll-margin-top: 115px; }
.guide-section > .section-heading:not(.split-heading) { max-width: 850px; }
.info-grid { display: grid; margin-top: 3.5rem; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.info-card { min-height: 330px; padding: clamp(1.6rem, 4vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.info-icon { display: inline-grid; min-width: 54px; height: 28px; place-items: center; padding-inline: .4rem; color: var(--cream); background: var(--teal); font-size: .62rem; font-weight: 850; letter-spacing: .11em; }
.info-card h3 { margin: 1.6rem 0 .7rem; font-size: 1.75rem; }
.info-card p { color: var(--muted); }
.card-links { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; margin-top: 1.3rem; }
.card-links a, .recommendation-card a { color: var(--teal); font-size: .72rem; font-weight: 800; text-underline-offset: .3rem; text-transform: uppercase; }

.parking-section { padding-block: clamp(6rem, 10vw, 9rem); background: var(--teal-deep); color: var(--white); scroll-margin-top: 110px; }
.parking-layout { display: grid; gap: clamp(3rem, 8vw, 8rem); grid-template-columns: .9fr 1.1fr; }
.parking-section .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.parking-list article { display: grid; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,.18); grid-template-columns: 1fr auto; gap: .4rem 1rem; }
.parking-list strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.parking-list span { color: #9cc4ca; font-size: .74rem; font-weight: 800; letter-spacing: .1em; }
.parking-list p { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.66); font-size: .88rem; }
.small-note { margin-top: 1.5rem !important; font-size: .76rem !important; }

.guide-section .split-heading p:last-child, .full-gallery .split-heading p:last-child { color: var(--muted); }
.recommendation-grid { display: grid; margin-top: 3.5rem; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.recommendation-card { display: flex; min-height: 300px; flex-direction: column; padding: 2rem; border: 1px solid var(--line); background: var(--white); }
.recommendation-card h3 { margin: 2rem 0 .7rem; font-size: 1.8rem; }
.recommendation-card p { flex: 1; color: var(--muted); }

.things-section { padding-block: clamp(6rem, 10vw, 9rem); color: var(--white); background: #082f38; scroll-margin-top: 110px; }
.things-section .eyebrow { color: #92bec5; }
.things-grid { display: grid; margin-top: 3.5rem; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.thing-card { min-height: 290px; padding: 2rem; color: var(--white); border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; transition: background .25s ease; }
.thing-card:hover { background: rgba(255,255,255,.07); }
.thing-card.featured { color: var(--teal-deep); background: var(--cream); }
.thing-card h3 { margin: 2rem 0 .7rem; font-size: 1.7rem; }
.thing-card p { color: rgba(255,255,255,.68); }
.thing-card.featured p { color: var(--muted); }
.thing-card strong { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.daytrip-strip { padding-block: clamp(5rem, 9vw, 8rem); color: var(--white); background: linear-gradient(90deg, rgba(5,38,45,.9), rgba(5,38,45,.38)), url('../images/855469.jpg') center / cover no-repeat; }
.daytrip-strip h2 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 5.2rem); }
.daytrip-strip p:last-child { max-width: 650px; font-family: var(--serif); font-size: 1.2rem; }

.review-summary { display: grid; align-items: center; gap: clamp(3rem, 8vw, 8rem); padding-block: clamp(6rem, 10vw, 9rem); grid-template-columns: .65fr 1.35fr; }
.score-block { padding: 2rem; border-right: 1px solid var(--line); text-align: center; }
.score-block strong { display: block; color: var(--ochre); font-family: var(--serif); font-size: clamp(5rem, 10vw, 8rem); font-weight: 400; line-height: .9; }
.score-block span { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.score-block p { margin: 1.5rem auto 0; max-width: 260px; color: var(--muted); font-size: .78rem; }
.reviews-list { display: grid; padding-bottom: clamp(6rem, 10vw, 9rem); grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.reviews-list .review-card { min-height: 360px; }
.reviews-list .review-card.featured { transform: none; }
.stars { color: var(--ochre); font-size: .85rem; letter-spacing: .15em; }
.guestbook-project { display: grid; min-height: 720px; grid-template-columns: 1.1fr .9fr; background: var(--cream); }
.guestbook-image { min-height: 520px; background: url('../images/11567120.jpg') center / cover no-repeat; }
.guestbook-copy { align-self: center; padding: clamp(4rem, 8vw, 8rem); }

.full-gallery { padding-block: clamp(6rem, 10vw, 9rem); }
.expanded-gallery { grid-auto-rows: 250px; }
.gallery-tall { grid-row: span 2; }
.conwy-gallery-section { padding-block: clamp(6rem, 10vw, 9rem); color: var(--white); background: var(--teal-deep); }
.conwy-gallery-section .eyebrow { color: #92bec5; }
.conwy-gallery { display: grid; margin-top: 3.5rem; grid-template-columns: 1.1fr .9fr .9fr; gap: 12px; }
.conwy-gallery .gallery-item { min-height: 360px; }

.contact-layout { display: grid; min-height: 100vh; padding-top: 30px; grid-template-columns: .85fr 1.15fr; }
.contact-page .contact-photo { min-height: 740px; }
.contact-inner h1 { margin-bottom: 1.2rem; font-size: clamp(3rem, 6vw, 5.6rem); }
.contact-alternatives { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.contact-alternatives h2 { margin-bottom: .5rem; font-size: 1.6rem; }
.form-notice.preview { border-color: var(--ochre); }
.form-notice.ready { border-color: var(--sea); }
.contact-form button:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.legal-page .top-ribbon { position: sticky; top: 0; }
.legal-page .site-header { position: sticky; top: 30px; color: var(--ink); background: rgba(251,247,238,.98); box-shadow: 0 8px 30px rgba(8,47,56,.08); }
.legal-page .legal-content { padding-top: clamp(5rem, 9vw, 8rem); }
.draft-notice { margin: 0 0 2.5rem; padding: 1rem 1.2rem; border-left: 4px solid var(--ochre); background: var(--cream); }

@media (max-width: 1180px) {
  .site-header { padding-inline: 22px; }
  .brand-wordmark { display: grid; font-size: 1.4rem; }
  .site-nav { gap: .8rem; }
}

@media (max-width: 980px) {
  .top-ribbon { font-size: .58rem; }
  .link-card-grid, .info-grid, .parking-layout, .booking-layout, .booking-next, .review-summary, .guestbook-project, .contact-layout { grid-template-columns: 1fr; }
  .page-hero { min-height: 520px; }
  .fact-card-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-card:nth-child(2) { border-right: 0; }
  .fact-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .guide-jump { grid-template-columns: repeat(2, 1fr); }
  .guide-jump a:nth-child(2) { border-right: 0; }
  .guide-jump a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .recommendation-grid, .things-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-list { grid-template-columns: 1fr; }
  .score-block { border-right: 0; border-bottom: 1px solid var(--line); }
  .conwy-gallery { grid-template-columns: 1fr; }
  .contact-page .contact-photo { min-height: 500px; }
}

@media (max-width: 680px) {
  .top-ribbon { padding-inline: 8px; letter-spacing: .08em; }
  .site-nav { top: 100%; }
  .link-card-grid, .info-grid, .recommendation-grid, .things-grid { grid-template-columns: 1fr; }
  .image-link-card { min-height: 310px; }
  .closing-cta { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 470px; padding: 150px 16px 58px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .fact-card-grid { grid-template-columns: 1fr; }
  .fact-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .guide-jump { width: calc(100% - 32px); grid-template-columns: 1fr 1fr; }
  .guide-jump a { font-size: .64rem; }
  .info-card { min-height: 0; }
  .parking-list article { grid-template-columns: 1fr; }
  .parking-list p { grid-column: auto; }
  .expanded-gallery { grid-auto-rows: 260px; }
  .gallery-tall { grid-row: auto; }
}

/* Phone and tablet refinements shared by every public page. */
.brand img, .nav-toggle { flex-shrink: 0; }
.brand-wordmark { white-space: nowrap; }
.contact-form input, .contact-form select, .contact-form textarea {
  min-width: 0;
  font-size: 1rem;
}
.contact-form label, .contact-panel, .guestbook-copy { min-width: 0; }
.legal-content, .contact-inner { overflow-wrap: anywhere; }
.guide-section, .parking-section, .things-section { scroll-margin-top: 150px; }
@media (max-width: 980px) {
  .site-nav { max-height: calc(100dvh - 122px); overflow-y: auto; overscroll-behavior: contain; }
  .site-header { color: var(--ink); background: rgba(251, 247, 238, .96); }
  .site-nav a { display: flex; align-items: center; min-height: 44px; font-size: .8rem; }
  .site-nav .nav-cta { justify-content: center; }
  .footer-links { flex-wrap: wrap; gap: .4rem 1.3rem; }
  .footer-links a { display: inline-flex; align-items: center; min-height: 44px; }
  .conwy-banner { background-attachment: scroll; }
}
@media (max-width: 680px) {
  .site-header { padding-inline: 16px; }
  .brand { gap: .6rem; }
  .brand-wordmark { font-size: clamp(1.15rem, 5.5vw, 1.4rem); }
  .home-page .hero { height: auto; min-height: 100svh; padding: 172px 0 56px; }
  .hero-content { margin: 0 16px; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 180px; text-align: center; }
  .page-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); overflow-wrap: anywhere; }
  .feature-image, .guestbook-image { min-height: 300px; height: 65vw; max-height: 440px; }
  .contact-page .contact-photo { min-height: 280px; height: 75vw; max-height: 380px; }
  .feature-copy, .guestbook-copy, .contact-panel { padding: 3.5rem 20px; }
  .intro, .details, .home-links, .guestbook-preview, .booking-layout, .booking-next,
  .guide-section, .parking-section, .things-section, .review-summary, .full-gallery,
  .conwy-gallery-section { padding-block: 4rem; }
  .guestbook-project { min-height: 0; }
  .conwy-banner { min-height: 560px; padding-block: 4rem; }
  .conwy-gallery .gallery-item { min-height: 260px; }
  .image-link-card { padding: 1.5rem; }
  .image-link-card strong { padding-right: 2rem; }
  .image-link-card i { right: 1.5rem; }
  .calendar-heading { gap: .5rem; font-size: 1rem; }
  .calendar-heading button { flex-shrink: 0; width: 44px; height: 44px; }
  .calendar-skeleton { gap: 3px; grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .lightbox-close { width: 44px; height: 44px; }
  .lightbox { max-height: 90dvh; }
  .lightbox img { max-height: 70dvh; }
  .contact-form .consent-line { align-items: center; min-height: 44px; }
  .consent-line input { flex-shrink: 0; width: 20px; height: 20px; }
}

/* Owner calendar and the larger, collapsing home identity. */
[hidden] { display: none !important; }
.site-header, .legal-page .site-header { top: 0; }
.contact-layout { padding-top: 0; }
.home-page .hero { padding-top: 0; }
.brand img { transition: width .4s ease, height .4s ease; }
.brand-wordmark { transition: font-size .4s ease; }
@media (min-width: 981px) {
  .home-page .site-header { min-height: 108px; }
  .home-page .site-header .brand {
    position: absolute;
    top: 10px;
    left: clamp(24px, 5vw, 78px);
    transform-origin: top left;
    transition: top .65s cubic-bezier(.22,1,.36,1), left .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
  }
  .home-page .site-header:not(.scrolled) .brand {
    top: 30vh;
    left: 70vw;
    transform: translateX(-35%) scale(1.5);
  }
  .home-page .site-nav { margin-left: auto; }
  .home-page .hero-content { width: min(680px, 49vw); }
  .home-page .hero h1 { font-size: clamp(3.4rem, 6.2vw, 6rem); }
}
@media (min-width: 981px) and (max-width: 1180px) {
  .home-page .site-header .brand { left: 22px; }
  .home-page .site-header:not(.scrolled) .brand { left: 70vw; transform: translateX(-35%) scale(1.3); }
}
.footer-contact { display: grid; gap: .5rem; font-size: .85rem; overflow-wrap: anywhere; }
.google-business-placeholder { font-size: .75rem; color: var(--cream); }
.site-footer { grid-template-columns: 1fr 1fr; }
.amenities-section, .booking-section { padding-block: 5rem; }
.amenity-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.amenity-grid article { border-top: 2px solid var(--ochre); padding: 1.5rem; background: var(--cream); }
.amenity-grid h3 { font-size: 1.6rem; }
.local-photo-placeholder { margin: -2rem -2rem 1.5rem; min-height: 180px; display: grid; place-items: center; color: var(--cream); background: linear-gradient(135deg, #276778, #082f38); }
.local-photo-placeholder span { font-family: var(--serif); font-size: 1.4rem; }
.owner-shell { padding-block: 3rem; }
.owner-shell h1 { font-size: clamp(2.2rem,5vw,4rem); }
.owner-shell h2 { margin-top: 3rem; font-size: 2rem; }
.owner-login { max-width: 480px; }
.design-credit { grid-column: 1 / -1; width: 100%; border-top: 1px solid rgba(244,234,215,.18); padding-top: 1rem; }
.design-credit a { display: inline-flex; align-items: center; gap: .7rem; min-height: 44px; color: var(--cream); font-size: .75rem; text-decoration: none; }
.design-credit a:hover strong { text-decoration: underline; text-underline-offset: .25em; }
.design-credit a:focus-visible { outline: 2px solid var(--ochre); outline-offset: 5px; }
.design-credit strong { font-weight: 600; }
.design-credit-mark { display: block; width: 40px; height: 40px; overflow: hidden; flex-shrink: 0; }
.design-credit-mark img { width: 40px; height: 40px; max-width: none; transform: scale(1.2); filter: invert(1) sepia(.2); mix-blend-mode: screen; }
.credit-only { min-height: 0; }
.local-guide-photo { width: calc(100% + 4rem); max-width: none; height: 220px; object-fit: cover; margin: -2rem -2rem 1.5rem; }
.recommendation-card, .thing-card { overflow: hidden; }
.availability-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); padding-block: 5rem; gap: 3rem; align-items: center; }
.availability-photo { min-height: 440px; background: url('../images/11567120.jpg') center / cover; }
.availability-panel h2 { font-size: clamp(2.2rem,4vw,3.7rem); }
.availability-panel .button { text-align: center; }
.availability-note { font-size: .8rem; color: var(--muted); }
@media (max-width: 680px) {
  .availability-section { grid-template-columns: minmax(0,1fr); padding-block: 3rem; gap: 2rem; }
  .availability-photo { min-height: 280px; }
}
.owner-calendar-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 2.5rem; align-items: start; }
.live-calendar { border: 1px solid var(--line); padding: 1.2rem; background: var(--white); }
.calendar-heading h3 { margin: 0; font-size: 1.4rem; }
.booking-calendar { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 4px; margin-top: 1rem; text-align: center; }
.booking-calendar > span { font-size: .75rem; }
.calendar-day { min-height: 54px; min-width: 0; padding: .2rem; background: var(--paper); color: var(--teal); border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.calendar-day small { display: block; font-size: .55rem; overflow-wrap: anywhere; }
.calendar-day:disabled { cursor: default; color: #6b7272; }
.calendar-day.busy { background: repeating-linear-gradient(135deg,#d6dddd,#d6dddd 5px,#e6ebeb 5px,#e6ebeb 10px); }
.calendar-day.selected { outline: 2px solid var(--ochre); background: var(--cream); }
.calendar-day.private { border-bottom: 4px solid #276778; }
.calendar-day.cottages { border-bottom: 4px solid #a66630; }
.calendar-day.changeover { border-bottom: 4px solid #80528b; }
.calendar-day.hold { border-bottom: 4px solid #c88d3e; }
.calendar-legend { display:flex; gap:1.5rem; font-size:.85rem; }
[data-calendar-status] { padding: 1rem; border-left: 3px solid var(--ochre); background: var(--cream); overflow-wrap: anywhere; }
.enquiry-card { padding:1.5rem; border:1px solid var(--line); margin-block:1rem; overflow-wrap:anywhere; }
.enquiry-card .button { margin: .25rem; }
.owner-calendar-layout .contact-form { margin-top: 0; }
@media (max-width:980px) {
  .site-nav { max-height: calc(100dvh - 112px); }
  .home-page .site-header:not(.scrolled) .site-nav { max-height: calc(100dvh - 160px); }
  .amenity-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:680px) {
  .home-page .site-header:not(.scrolled) .brand img { width:clamp(76px,24vw,112px); height:clamp(76px,24vw,112px); }
  .home-page .site-header:not(.scrolled) .brand-wordmark { font-size:clamp(1.5rem,6.6vw,2.1rem); }
  .home-page .hero { padding-top:180px; }
  .site-footer, .amenity-grid, .owner-calendar-layout { grid-template-columns:minmax(0,1fr); }
  .owner-calendar-layout { gap:2rem; }
  .booking-section, .amenities-section { padding-block:3.5rem; }
  .live-calendar { padding:.6rem; }
  .calendar-heading h3 { font-size:1.1rem; }
  .calendar-day { min-height:44px; }
}
