:root {
  --paper: #f4efe6;
  --paper-deep: #e6ded1;
  --ink: #342d27;
  --muted: #74695f;
  --line: rgba(52, 45, 39, 0.22);
  --sage: #6f8071;
  --sea: #48646a;
  --brass: #9b7a4a;
  --white: #fffaf2;
  --shadow: 0 22px 60px rgba(43, 36, 28, 0.14);
  --top-strip-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.8), transparent 28rem),
    linear-gradient(180deg, var(--paper), #eee6da 48%, #f8f3ea);
  color: var(--ink);
  font-family: "Inter", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: var(--top-strip-height) 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(22px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.solid,
body.inner .site-header {
  position: sticky;
  background: rgba(244, 239, 230, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body.home .site-header {
  color: var(--ink);
}

.brand {
  display: grid;
  gap: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.brand::before {
  content: "";
  width: 42px;
  height: 22px;
  margin: 0 auto 2px;
  border-top: 2px solid currentColor;
  border-radius: 50% 50% 0 0;
}

.brand span {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.nav a {
  text-decoration: none;
}

.nav .button {
  border-color: currentColor;
}

.warren-nav-link,
.warren-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.warren-nav-link img,
.warren-footer-link img {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(52, 45, 39, 0.18);
  border-radius: 50%;
  object-fit: cover;
  object-position: left center;
  background: var(--white);
}

body.home .warren-nav-link img {
  border-color: rgba(255, 250, 242, 0.34);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
}

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

.text-link {
  border: 0;
  min-height: 0;
  padding: 0;
  color: var(--ink);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 150px clamp(24px, 7vw, 94px) 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.9) 0%, rgba(244, 239, 230, 0.62) 36%, rgba(30, 27, 24, 0.15) 72%),
    linear-gradient(0deg, rgba(52, 45, 39, 0.36), rgba(52, 45, 39, 0.1));
}

.hero-content {
  width: min(620px, 100%);
}

.home-gallery-hero {
  min-height: 92vh;
  padding-top: calc(var(--top-strip-height) + 170px);
  background: #d5c4ad;
}

.home-gallery-hero::before {
  display: none;
}

.home-gallery-hero::after {
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.94) 0%, rgba(244, 239, 230, 0.78) 34%, rgba(244, 239, 230, 0.22) 62%, rgba(26, 23, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(52, 45, 39, 0.35), rgba(52, 45, 39, 0.05));
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08) translateX(2%);
  animation: heroGlide 18s infinite ease-in-out;
}

.slide-two {
  animation-delay: 6s;
}

.slide-three {
  animation-delay: 12s;
}

.home-hero-content {
  width: min(680px, 100%);
  position: relative;
  z-index: 2;
}

.home-hero-content .brand-mark {
  width: 54px;
  height: 28px;
  margin-bottom: 26px;
  border-top: 2px solid var(--ink);
  border-radius: 50% 50% 0 0;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
}

.home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.home-hero-meta span {
  border: 1px solid rgba(52, 45, 39, 0.24);
  background: rgba(255, 250, 242, 0.36);
  padding: 8px 12px;
  border-radius: 3px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@keyframes heroGlide {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(2%);
  }

  7% {
    opacity: 1;
  }

  31% {
    opacity: 1;
  }

  40% {
    opacity: 0;
    transform: scale(1.02) translateX(-2%);
  }

  100% {
    opacity: 0;
    transform: scale(1.08) translateX(2%);
  }
}

.eyebrow {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--sea);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 820px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
}

h3 {
  font-size: 23px;
  text-transform: uppercase;
}

.hero p,
.lead {
  max-width: 560px;
  color: var(--muted);
  margin: 28px 0;
}

.section {
  padding: clamp(58px, 7vw, 104px) clamp(24px, 6vw, 82px);
}

.section.compact {
  padding-top: 42px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}

.section-heading .brand-mark {
  width: 42px;
  height: 22px;
  margin: 0 auto 18px;
  border-top: 2px solid var(--ink);
  border-radius: 50% 50% 0 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

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

.address-grid {
  align-items: start;
}

.property-card {
  display: grid;
  gap: 18px;
}

.image-link {
  display: block;
  text-decoration: none;
}

.property-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.feature-card img {
  aspect-ratio: 16 / 10;
}

.mini {
  margin-bottom: 12px;
  font-size: 10px;
}

.card-copy {
  margin: 14px 0 16px;
  font-size: 15px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.feature-band {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 8px;
}

.feature span {
  color: var(--muted);
  font-size: 14px;
}

.destination-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.destination-copy {
  max-width: 580px;
}

.destination-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.destination-gallery img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.destination-gallery .destination-wide {
  grid-column: 1 / -1;
  min-height: 260px;
}

.coast-band {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1.3fr;
  align-items: center;
  background: #e9e1d5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coast-copy {
  padding: clamp(42px, 7vw, 86px);
}

.coast-image {
  height: 100%;
  min-height: 330px;
  background: linear-gradient(90deg, #e9e1d5, rgba(233, 225, 213, 0.08)), url("assets/destination/portrush-panorama.jpg") center / cover no-repeat;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
  padding: 54px clamp(24px, 6vw, 82px) clamp(44px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.address-hero {
  align-items: center;
}

.page-hero img {
  width: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.stat {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 14px;
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.copy-block {
  max-width: 760px;
}

.copy-block p {
  color: var(--muted);
}

.detail-list,
.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.detail-list li,
.amenity-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
  color: var(--muted);
}

.booking-panel {
  position: sticky;
  top: 102px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.72);
  backdrop-filter: blur(16px);
}

.booking-panel h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.booking-panel p {
  color: var(--muted);
  margin: 0 0 20px;
}

.booking-widget {
  display: grid;
  gap: 14px;
}

.booking-widget label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 700;
}

.booking-widget .checkbox-label {
  align-items: flex-start;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.booking-widget input,
.booking-widget select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  letter-spacing: 0;
}

.booking-widget .checkbox-label input {
  min-height: 0;
  width: auto;
  margin-top: 2px;
}

.booking-summary {
  display: grid;
  gap: 4px;
  min-height: 86px;
  border: 1px solid rgba(72, 100, 106, 0.28);
  background: rgba(72, 100, 106, 0.08);
  border-radius: 4px;
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
}

.booking-summary strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.booking-submit {
  width: 100%;
}

.stripe-link {
  width: 100%;
}

.stripe-link.disabled,
.stripe-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.stripe-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.booking-privacy {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.booking-ready {
  border-color: rgba(111, 128, 113, 0.8);
  box-shadow: 0 18px 50px rgba(111, 128, 113, 0.18);
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.thing-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.58);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(43, 36, 28, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.thing-card:hover,
.thing-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(72, 100, 106, 0.42);
  background: rgba(255, 250, 242, 0.82);
}

.thing-card span {
  margin-bottom: 44px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sea);
  font-size: 11px;
  font-weight: 700;
}

.thing-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.thing-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.walk-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding-left: 22px;
  color: var(--muted);
}

.walk-list li::marker {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.map-panel {
  max-width: 980px;
  margin: 0 auto;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.58);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 48vw, 520px);
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.map-note {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.policy-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.68);
  box-shadow: var(--shadow);
}

.policy-panel h2 {
  margin-bottom: 24px;
}

.policy-panel p {
  color: var(--muted);
}

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

.policy-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.policy-list strong {
  color: var(--ink);
}

.credit-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.credit-list a {
  color: var(--ink);
}

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

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

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.full-gallery img:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 1.2fr) minmax(260px, 1fr);
  gap: 36px;
  padding: 44px clamp(24px, 6vw, 82px) 132px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.footer-links a {
  text-decoration: none;
}

.footer-contact {
  display: grid;
  gap: 6px;
  justify-items: end;
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact span {
  margin-top: 8px;
  color: var(--sea);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact span:first-child {
  margin-top: 0;
}

.footer-contact a {
  color: var(--ink);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 50;
  color: var(--ink);
}

.chat-toggle {
  display: grid;
  gap: 2px;
  min-width: 154px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 250, 242, 0.58);
  background: rgba(52, 45, 39, 0.92);
  color: var(--white);
  box-shadow: 0 16px 46px rgba(43, 36, 28, 0.22);
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(16px);
}

.chat-toggle span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-toggle small {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: grid;
  width: min(380px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 120px));
  border: 1px solid var(--line);
  background: rgba(244, 239, 230, 0.97);
  box-shadow: var(--shadow);
  overflow: auto;
  backdrop-filter: blur(18px);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}

.chat-header h2 {
  margin: 2px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 270px;
  padding: 18px 20px;
  overflow: auto;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.75);
  font-size: 13px;
  line-height: 1.55;
}

.chat-message.guest {
  justify-self: end;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}

.chat-prompts button,
.chat-form button,
.chat-enquiry-form button {
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-prompts button {
  min-height: 34px;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: rgba(230, 222, 209, 0.62);
}

.chat-form input,
.chat-form button,
.chat-enquiry-form input,
.chat-enquiry-form textarea,
.chat-enquiry-form button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.chat-form input,
.chat-enquiry-form input,
.chat-enquiry-form textarea {
  width: 100%;
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
}

.chat-enquiry-form textarea {
  min-height: 84px;
  padding-top: 10px;
  resize: vertical;
}

.chat-form button,
.chat-enquiry-form button {
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
}

.chat-enquiry-form {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.chat-enquiry-form[hidden] {
  display: none;
}

.chat-enquiry-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.chat-enquiry-form label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  :root {
    --top-strip-height: 0px;
  }

  .site-header,
  .site-header.solid,
  body.inner .site-header {
    position: sticky;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink);
    background: rgba(244, 239, 230, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
  }

  .nav {
    gap: 14px;
    letter-spacing: 0.1em;
    font-size: 10px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    min-height: 74vh;
    padding: 90px 24px 58px;
  }

  .home-gallery-hero {
    min-height: 86vh;
    padding-top: 116px;
  }

  .hero-slide {
    object-position: 58% center;
  }

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

  .home-hero-actions {
    align-items: stretch;
  }

  .home-hero-meta {
    margin-top: 30px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(244, 239, 230, 0.94), rgba(244, 239, 230, 0.68)),
      linear-gradient(0deg, rgba(52, 45, 39, 0.2), rgba(52, 45, 39, 0.08));
  }

  .home-gallery-hero::after {
    background:
      linear-gradient(180deg, rgba(244, 239, 230, 0.9) 0%, rgba(244, 239, 230, 0.7) 38%, rgba(244, 239, 230, 0.18) 100%),
      linear-gradient(0deg, rgba(52, 45, 39, 0.45), rgba(52, 45, 39, 0.08));
  }

  .collection-grid,
  .apartments-grid,
  .things-grid,
  .page-hero,
  .property-layout,
  .destination-section,
  .coast-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .destination-gallery .destination-wide {
    min-height: 220px;
  }

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

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .page-hero img {
    min-height: 300px;
  }

  .booking-panel {
    position: static;
  }

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

  .full-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .full-gallery img:nth-child(7n + 1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-toggle {
    min-width: 128px;
    padding: 10px 12px;
  }
}

@media (max-width: 560px) {
  .nav .button {
    padding: 0 12px;
  }

  .feature-band,
  .detail-list,
  .amenity-list,
  .things-grid,
  .destination-gallery,
  .gallery,
  .full-gallery {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .chat-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
  }

  .chat-header,
  .chat-messages {
    padding-left: 16px;
    padding-right: 16px;
  }

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

.site-lock-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center start;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(239, 233, 222, .98) 0%, rgba(239, 233, 222, .9) 42%, rgba(239, 233, 222, .38) 100%),
    url("assets/destination/portrush-east-strand-beach.jpg") center / cover no-repeat;
}

.site-locked body > *:not(.site-lock-screen) {
  display: none !important;
}

.site-lock-card {
  width: min(100%, 560px);
  margin-left: clamp(0px, 5vw, 70px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(58, 49, 43, .22);
  background: rgba(244, 239, 230, .9);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 30px 90px rgba(58, 49, 43, .16);
  backdrop-filter: blur(10px);
}

.site-lock-logo {
  width: min(310px, 76vw);
  height: auto;
  margin: 0 0 28px;
  mix-blend-mode: multiply;
}

.site-lock-card h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 68px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-lock-card p {
  margin: 0 0 28px;
  max-width: 430px;
  color: var(--muted);
}

.site-lock-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

.site-lock-form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-lock-form input {
  min-height: 52px;
  border: 1px solid rgba(58, 49, 43, .28);
  background: rgba(255, 255, 255, .5);
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
}

.site-lock-form .button {
  width: 100%;
  justify-content: center;
}

.site-lock-error {
  min-height: 20px;
  margin: 0;
  color: #8f2e1f;
  font-size: 14px;
  text-align: left;
}

@media (max-width: 720px) {
  .site-lock-screen {
    place-items: center;
    background:
      linear-gradient(180deg, rgba(239, 233, 222, .98) 0%, rgba(239, 233, 222, .88) 64%, rgba(239, 233, 222, .62) 100%),
      url("assets/destination/portrush-east-strand-beach.jpg") center / cover no-repeat;
  }

  .site-lock-card {
    margin-left: 0;
  }
}
