/* ===========================================================
   Lets in the Sun — theme stylesheet
   -----------------------------------------------------------
   Everything between the "BEGIN VERBATIM" and "END VERBATIM"
   markers below is a byte-for-byte copy of the original static
   template stylesheet (css/style.css). Do not reformat it and
   do not edit it in place — tests/test-assets.php compares that
   block against the original file and fails the build on any
   difference.

   WordPress-specific additions live *after* the END VERBATIM
   marker, in the "WordPress parity layer" section.
   =========================================================== */

/* BEGIN VERBATIM css/style.css */
/* ===========================================================
   Lets in the Sun — Holiday Rentals Template
   Ultra-modern luxury edition
   Fonts: Playfair Display (headings) / Roboto (body)
   =========================================================== */

:root {
  --ink: #0b0a08;
  --ink-soft: #17140f;
  --cream: #f7f3ea;
  --cream-deep: #efe6d3;
  --white: #ffffff;
  --gold: #c8a25a;
  --gold-bright: #e6c384;
  --gold-line: rgba(200, 162, 90, 0.35);
  --gold-soft: rgba(200, 162, 90, 0.1);
  --gold-soft-strong: rgba(200, 162, 90, 0.28);
  --grey: #6b6455;
  --grey-light: #c9c0ab;
  --border: rgba(11, 10, 8, 0.09);
  --border-light: rgba(255, 255, 255, 0.12);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Roboto", Arial, sans-serif;
  --container: 1240px;
  --radius: 2px;
  --radius-lg: 6px;
  --header-h: 92px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 20px 45px rgba(11, 10, 8, 0.08);
  --shadow-strong: 0 30px 70px rgba(11, 10, 8, 0.22);
  --gold-text: #835f21;

  /* Vacation accent palette — used in body content only (not header/hero/logo) */
  --teal: #0e8f8a;
  --teal-dark: #0a6d69;
  --teal-light: #5fc2bd;
  --teal-soft: rgba(14, 143, 138, 0.1);
  --teal-soft-strong: rgba(14, 143, 138, 0.28);
  --coral: #f2704a;
  --coral-dark: #c04a29;
  --coral-soft: rgba(242, 112, 74, 0.1);
  --sun: #f2b134;
  --sun-soft: rgba(242, 177, 52, 0.12);
  --sand: #fbf6ec;
  --aqua-tint: #eef7f6;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 2000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Utility / motion ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold-text);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.text-center {
  text-align: center;
}
.text-center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.section {
  padding: 140px 0;
}
.section-sm {
  padding: 72px 0;
}
.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-bottom: 22px;
  font-weight: 500;
}
.section-lead {
  color: var(--grey);
  max-width: 620px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}
.section-header {
  margin-bottom: 72px;
}
.section-header.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.bg-off-white {
  background: var(--aqua-tint);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.9s var(--ease),
      transform 0.9s var(--ease);
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  border-radius: var(--radius-lg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  overflow: hidden;
  z-index: 1;
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.btn:hover {
  background: #075a57;
  color: var(--white);
  border-color: #075a57;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 109, 105, 0.22);
}
.btn:hover .ico,
.btn:focus-visible .ico,
.btn:hover::before,
.btn:focus-visible::before {
  color: currentColor;
}
.btn-primary,
.btn-outline,
.btn-dark {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.btn-primary:hover,
.btn-outline:hover,
.btn-dark:hover {
  background: #075a57;
  color: var(--white);
  border-color: #075a57;
}
.btn-ghost {
  background: rgba(11, 10, 8, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}
.btn-ghost:hover {
  background: var(--cream-deep);
  color: var(--ink);
  border-color: var(--cream-deep);
}
.btn-booking {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-booking:hover {
  background: #075a57;
  color: var(--white);
  border-color: #075a57;
}
.btn-phone {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.btn-phone .ico {
  color: currentColor;
  font-size: 14px;
  line-height: 1;
}
.btn[href="contact.html"]::before,
.btn[href$="/contact.html"]::before {
  content: "✉";
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.link-arrow:hover {
  border-color: var(--gold-text);
  color: var(--gold-text);
  gap: 16px;
}

/* ---------- Marquee strip ---------- */
.marquee-strip {
  background: var(--teal-dark);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 34s linear infinite;
  padding: 13px 0;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 22px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "\2726";
  margin-left: 22px;
  color: var(--gold);
  font-size: 10px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: linear-gradient(
    180deg,
    rgba(15, 12, 8, 0.4) 0%,
    rgba(15, 12, 8, 0) 100%
  );
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(11, 10, 8, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  transition: padding 0.3s var(--ease);
}
.site-header.is-scrolled .container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.is-scrolled .logo {
  color: var(--ink);
}
.logo span {
  color: var(--gold-bright);
}
.is-scrolled .logo span {
  color: var(--gold);
}
.logo svg {
  display: block;
  height: clamp(48px, 10vw, 68px);
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
  transition: filter 0.4s var(--ease);
}
.is-scrolled .logo svg {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
.logo svg text {
  fill: #ffffff;
  transition: fill 0.4s var(--ease);
}
.is-scrolled .logo svg text {
  fill: url(#waveGrad);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav > ul {
  display: flex;
  align-items: center;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  transition:
    color 0.3s var(--ease),
    text-shadow 0.3s var(--ease);
}
.is-scrolled .main-nav > ul > li > a {
  color: var(--ink-soft);
  text-shadow: none;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.current > a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.is-scrolled .main-nav > ul > li > a:hover,
.is-scrolled .main-nav > ul > li.current > a {
  color: var(--gold-text);
}
.main-nav .caret {
  font-size: 9px;
  margin-top: 1px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  min-width: 250px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  border-radius: var(--radius-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
}
.sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 28px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-radius: 2px;
}
.main-nav li:hover > .sub-menu,
.main-nav li.open > .sub-menu,
.main-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.sub-menu li + li {
  margin-top: 2px;
}
.sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.sub-menu li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.2s var(--ease);
}
.sub-menu li a:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.sub-menu li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 6px 13px;
  transition: all 0.3s var(--ease);
}
.lang-toggle .lang-flag {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.lang-toggle .lang-code {
  line-height: 1;
}
.is-scrolled .lang-toggle {
  color: var(--ink-soft);
  border-color: var(--border);
}
.lang-toggle:hover {
  background: var(--cream-deep);
  border-color: var(--cream-deep);
  color: var(--ink);
}
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(11, 10, 8, 0.18);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s var(--ease);
}
.is-scrolled .header-phone {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.header-phone:hover {
  background: var(--cream-deep);
  border-color: var(--cream-deep);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(247, 243, 234, 0.28);
}
.header-phone .ico {
  color: currentColor;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease);
}
.is-scrolled .nav-toggle {
  background: rgba(11, 10, 8, 0.06);
}
.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--ink-soft);
  transition: all 0.25s ease;
}
.site-header:not(.is-scrolled) .nav-toggle span {
  background: var(--white);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-close {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 12px) 0 120px;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  background: linear-gradient(160deg, #23201a, #0b0a08);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
  }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 17, 9, 0.22) 0%,
    rgba(20, 14, 8, 0.42) 55%,
    rgba(15, 10, 6, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 92px);
  color: var(--white);
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(10, 7, 4, 0.35);
}
.hero p {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.8;
  text-shadow: 0 2px 16px rgba(10, 7, 4, 0.3);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 184px;
  justify-content: center;
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  letter-spacing: 2.2px;
  box-shadow: 0 16px 36px rgba(10, 7, 4, 0.24);
}

.page-hero {
  min-height: 56vh;
  padding: calc(var(--header-h) + 60px) 0 70px;
}
.page-hero .hero-content {
  max-width: 680px;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  position: relative;
  z-index: 2;
  margin-top: -92px;
  padding: 0 32px;
}
.stat-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(11, 10, 8, 0.06);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-strong);
}
.stat-item {
  text-align: center;
  padding: 42px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold-text);
  font-weight: 500;
  margin-bottom: 8px;
}
.stat-item > span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  --accent: var(--gold);
  --accent-line: var(--gold-line);
  --accent-soft: var(--gold-soft);
  text-align: center;
  padding: 56px 28px;
  background: var(--cream);
  transition: all 0.4s var(--ease);
}
.feature-card:nth-child(4n + 1) {
  --accent: var(--teal);
  --accent-line: rgba(14, 143, 138, 0.35);
  --accent-soft: var(--teal-soft);
}
.feature-card:nth-child(4n + 2) {
  --accent: var(--coral);
  --accent-line: rgba(242, 112, 74, 0.35);
  --accent-soft: var(--coral-soft);
}
.feature-card:nth-child(4n + 3) {
  --accent: var(--sun);
  --accent-line: rgba(242, 177, 52, 0.4);
  --accent-soft: var(--sun-soft);
}
.feature-card:hover {
  background: var(--accent-soft);
}
.feature-card:hover .feature-icon {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  color: var(--accent);
  transition: all 0.4s var(--ease);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  transition: color 0.4s var(--ease);
}
.feature-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.4s var(--ease);
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  position: relative;
  overflow: hidden;
}
.split-media img {
  border-radius: var(--radius);
  transition: transform 0.8s var(--ease);
}
.split-media:hover img {
  transform: scale(1.05);
}
.split-media .badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--white);
  color: var(--ink);
  padding: 26px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--gold-line);
}
.split-media .badge strong {
  display: block;
  font-size: 32px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gold-text);
}
.split-media .badge span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.split-body p {
  color: var(--grey);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.85;
}
.split-body .checklist {
  margin-top: 26px;
}
.split-body .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 15px;
}
.split-body .checklist li::before {
  content: "";
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
.checklist.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 20px;
}

/* ---------- Property gallery strip (villa-crystal.html) ---------- */
.property-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  cursor: zoom-in;
}
.property-gallery-main img {
  display: block;
  width: 100%;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.property-gallery-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50px;
  border: 0;
  background: rgba(10, 109, 105, 0.42);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: background 0.25s var(--ease);
}
.property-gallery-nav:hover,
.property-gallery-nav:focus-visible {
  background: rgba(10, 109, 105, 0.72);
}
.property-gallery-prev {
  left: 0;
}
.property-gallery-next {
  right: 0;
}
.property-gallery-nav span {
  color: var(--white);
  font-size: 42px;
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 40px;
  align-items: start;
}
.gallery-thumb {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.gallery-thumb.is-active {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px var(--teal-soft-strong);
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  transform-origin: center;
}
.gallery-thumb:hover img {
  transform: scale(1.04);
}
.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px;
  background: rgba(11, 10, 8, 0.88);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s var(--ease);
}
.gallery-lightbox.show {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, 100%);
  height: min(78vh, 820px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.gallery-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(10, 109, 105, 0.72);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}
.gallery-lightbox-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 38px;
  border: 0;
  background: rgba(10, 109, 105, 0.42);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: rgba(10, 109, 105, 0.72);
}
.gallery-lightbox-prev {
  left: 0;
}
.gallery-lightbox-next {
  right: 0;
}
.gallery-lightbox-nav span {
  color: var(--white);
  font-size: 42px;
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.gallery-lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 999px;
  background: rgba(10, 109, 105, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  padding: 8px 14px;
}
.gallery-lightbox.single-image .gallery-lightbox-nav {
  display: none;
}

/* ---------- Video embed ---------- */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(rgba(12, 34, 42, 0.48), rgba(12, 34, 42, 0.48)),
    url("../images/about-team.jpg") center / cover;
}
.video-embed iframe,
.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--ink);
}
.video-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
}
.video-play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  position: relative;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease);
}
.video-play::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid var(--ink);
}
.video-trigger:hover .video-play {
  transform: scale(1.06);
  background: var(--gold);
}
.video-fallback {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.video-fallback a {
  color: var(--gold-text);
  border-bottom: 1px solid var(--gold-line);
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.video-fallback a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ---------- Location ---------- */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--aqua-tint);
}
.location-body {
  padding: 120px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-map iframe,
.location-map img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.location-facts {
  display: flex;
  gap: 48px;
  margin-top: 34px;
}
.location-facts div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--gold-text);
  font-weight: 500;
}
.location-facts div span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
  text-transform: uppercase;
}

/* ---------- Property cards ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  align-items: start;
}
.property-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.property-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}
.property-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}
.property-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  contain: paint;
}
.property-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  transform-origin: center;
}
.property-card:hover .property-media img {
  transform: scale(1.04);
}
.property-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(11, 10, 8, 0.75);
  backdrop-filter: blur(6px);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
}
.property-tag.tag-featured {
  background: var(--teal-dark);
  color: var(--white);
}
.property-tag.tag-popular {
  background: var(--coral-dark);
  color: var(--white);
}
.property-tag.tag-new {
  background: var(--sun);
  color: var(--ink);
}
.property-price {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 9px 16px;
  border-radius: 20px;
}
.property-body {
  padding: 30px;
}
.property-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
.property-body h3 a:hover {
  color: var(--gold-text);
}
.property-loc {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--grey);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.property-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--grey);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.property-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.property-meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold-text);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--gold-line);
  box-shadow: var(--shadow);
}
.testimonial-card .stars {
  color: var(--gold-text);
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-size: 14px;
}
.testimonial-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 26px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 16px;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.5px;
}

/* ---------- Listing filter bar ---------- */
.listing-filter {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 26px;
  margin-bottom: 56px;
}
.listing-filter input,
.listing-filter select {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s var(--ease);
}
.listing-filter input:focus,
.listing-filter select:focus {
  outline: none;
  border-color: var(--gold-text);
  box-shadow: 0 0 0 3px var(--gold-soft-strong);
}
.listing-filter input[name="q"] {
  flex: 1;
  min-width: 220px;
}
.listing-empty {
  display: none;
  text-align: center;
  padding: 70px 20px;
  color: var(--grey);
  border: 1px dashed var(--border);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(
    120deg,
    var(--teal-dark) 0%,
    var(--coral-dark) 100%
  );
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
}
.cta-band .container {
  position: relative;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 46px);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.cta-band .btn-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn {
  min-width: 202px;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 5px;
  box-shadow: none;
}
.cta-band .btn-actions .btn:first-child {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.cta-band .btn-actions .btn:first-child:hover {
  background: var(--cream-deep);
  color: var(--ink);
  border-color: var(--cream-deep);
  box-shadow: 0 14px 34px rgba(247, 243, 234, 0.22);
}
.cta-band .btn-actions .btn:not(:first-child) {
  background: rgba(11, 10, 8, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.cta-band .btn-actions .btn:not(:first-child):hover {
  background: var(--cream-deep);
  color: var(--ink);
  border-color: var(--cream-deep);
  box-shadow: 0 14px 34px rgba(247, 243, 234, 0.22);
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  max-width: 840px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 28px 4px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.accordion-trigger:hover {
  background: var(--cream-deep);
  color: var(--ink);
}
.accordion-trigger .plus {
  font-size: 22px;
  font-weight: 300;
  color: var(--teal-dark);
  transition: transform 0.35s var(--ease);
}
.accordion-item.open .accordion-trigger .plus {
  transform: rotate(45deg);
}
.accordion-item.open .accordion-trigger {
  color: var(--teal-dark);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel-inner {
  padding: 0 4px 28px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.85;
}
.accordion-panel-inner a {
  color: var(--gold-text);
  border-bottom: 1px solid var(--gold-line);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-text);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-soft-strong);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ---------- Custom touch-friendly date picker ---------- */
.datepicker-wrap {
  position: relative;
}
.datepicker-wrap input[data-datepicker] {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e8f8a' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}
.datepicker-popover {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1000;
  width: 360px;
  max-width: min(92vw, 360px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--border);
  padding: 18px;
}
.datepicker-popover.show {
  display: block;
}
.datepicker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.datepicker-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.datepicker-nav {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--teal-dark);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.datepicker-nav:hover {
  background: var(--cream-deep);
  color: var(--ink);
  border-color: var(--cream-deep);
}
.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.datepicker-dow {
  margin-bottom: 6px;
}
.datepicker-dow span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--grey);
  text-transform: uppercase;
}
.datepicker-day {
  aspect-ratio: 1/1;
  /* 44px, not 42: every other target on the site holds that floor, and a
     calendar cell is the smallest thing anyone has to hit accurately. */
  min-height: 44px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s var(--ease);
  cursor: pointer;
}
.datepicker-day:hover:not(.is-disabled) {
  background: var(--cream-deep);
  color: var(--ink);
}
.datepicker-day.is-today {
  font-weight: 700;
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1.5px var(--teal-light);
}
.datepicker-day.is-selected {
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 700;
}
.datepicker-day.is-disabled {
  color: var(--grey-light);
  cursor: not-allowed;
}
.datepicker-grid.datepicker-days span {
  min-height: 42px;
}

@media (max-width: 700px) {
  .datepicker-popover {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 50%;
    width: auto;
    max-width: none;
    transform: translateY(-50%);
  }
  .datepicker-day {
    min-height: 46px;
  }
  .datepicker-grid.datepicker-days span {
    min-height: 46px;
  }
}
.form-group .error-text {
  display: none;
  color: #a63d2f;
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 0.3px;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #a63d2f;
}
.form-group.has-error .error-text {
  display: block;
}
.form-note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 10px;
}
.form-success {
  display: none;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  font-weight: 500;
}
.form-success.show {
  display: block;
}

/* ---------- Sidebar / info cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: start;
}
.info-card {
  background: var(--white);
  color: var(--ink);
  padding: 38px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.info-card h3 {
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}
.info-card ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--grey);
}
.info-card ul li a:hover {
  color: var(--gold-text);
}
.info-card ul li .ico {
  color: var(--gold-text);
}
.info-card ul li:last-child {
  margin-bottom: 0;
}
.info-card.alt {
  background: var(--cream-deep);
  border-color: var(--gold-line);
}
.info-card.alt .btn-booking {
  display: flex;
  width: min(100%, 240px);
  justify-content: center;
  margin: 28px auto 0;
}
.info-card.alt .btn-booking:hover,
.info-card.alt .btn-booking:focus-visible {
  background: #075a57;
  border-color: #075a57;
  color: var(--white);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  position: relative;
  padding-top: 24px;
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 600;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 500;
}
.step-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- Area guide list ---------- */
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.area-item {
  display: flex;
  gap: 22px;
  padding: 32px;
  background: var(--white);
  transition: background 0.35s var(--ease);
}
.area-item:hover {
  background: var(--cream-deep);
}
.area-item .num {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--gold-text);
  min-width: 38px;
  font-weight: 500;
}
.area-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}
.area-item p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--aqua-tint);
  color: var(--grey);
  padding-top: 96px;
  position: relative;
  border-top: 1px solid var(--teal-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo svg {
  height: 46px;
  width: auto;
  display: block;
}
.footer-col h4 {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-col ul li a:hover {
  color: var(--gold-text);
}
.footer-col p {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.85;
  color: var(--grey);
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  transition: all 0.3s var(--ease);
}
.footer-social a svg {
  width: 19px;
  height: 19px;
}
.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 16px;
  font-size: 12px;
  letter-spacing: 0.3px;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--grey);
}
.footer-bottom-links {
  display: flex;
  gap: 26px;
}
.footer-bottom-links a:hover {
  color: var(--gold-text);
}
.footer-credit {
  text-align: center;
  padding: 16px 0 30px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--grey);
}
.footer-credit a {
  color: var(--grey);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-credit a:hover {
  color: var(--gold-text);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  color: var(--grey);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  transform: translateY(160%);
  transition: transform 0.5s var(--ease);
  border: 1px solid var(--gold-line);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 13px;
  flex: 1;
  min-width: 200px;
  line-height: 1.7;
}
.cookie-banner a {
  color: var(--gold-text);
  text-decoration: underline;
}

/* ---------- Back to top ---------- */
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .split,
  .location,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .location-body {
    padding: 72px 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .area-list {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    margin-top: -60px;
  }
  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 1120px) {
  .header-phone span.txt {
    display: none;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(380px, 88vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 30px 30px;
    box-shadow: var(--shadow-strong);
    transition: left 0.4s var(--ease);
    overflow-y: auto;
    z-index: 450;
  }
  .nav-open {
    overflow: hidden;
  }
  .main-nav.open {
    left: 0;
  }
  .nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--teal-dark);
    border-radius: var(--radius-lg);
    background: var(--teal-dark);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition:
      background 0.25s var(--ease),
      border-color 0.25s var(--ease);
  }
  .nav-close:hover,
  .nav-close:focus-visible {
    background: #075a57;
    border-color: #075a57;
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .main-nav > ul > li {
    width: 100%;
  }
  .main-nav > ul > li > a {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
    color: var(--ink-soft) !important;
    text-shadow: none !important;
  }
  .sub-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
  }
  .main-nav li.open .sub-menu {
    display: block;
    max-height: 600px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 8, 0.5);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s var(--ease),
      visibility 0.3s var(--ease);
  }
  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 700px) {
  .gallery-lightbox {
    padding: 14px;
  }
  .gallery-lightbox-stage {
    width: 100%;
    height: 82vh;
  }
  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .gallery-lightbox-nav {
    width: 38px;
  }
  .gallery-lightbox-nav span {
    font-size: 38px;
  }
  .gallery-lightbox-count {
    bottom: 12px;
  }
  .property-gallery-nav {
    opacity: 1;
    width: 50px;
  }
  .property-gallery-nav span {
    font-size: 38px;
  }
  .section {
    padding: 92px 0;
  }
  .features-grid,
  .property-grid,
  .property-grid.cols-2,
  .footer-grid,
  .form-row,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .checklist.cols-2 {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 88vh;
    text-align: left;
  }
  .stat-strip-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
  }
  .location-body {
    padding: 56px 28px;
  }
}
.property-contact-card .btn {
  margin-top: 18px;
}
.property-contact-card .contact-list {
  margin-bottom: 0;
}
.property-contact-card .contact-list li {
  margin: 0;
}
.property-contact-card .btn-phone {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}
.property-contact-card .btn-outline {
  width: 100%;
  justify-content: center;
}
.info-card .btn-phone,
.info-card .btn-outline[href="contact.html"],
.info-card .btn-outline[href$="/contact.html"] {
  width: 100%;
  justify-content: center;
}
.info-card ul .btn {
  margin: 8px 0;
}
.info-card .btn-phone,
.info-card ul li .btn-phone,
.property-contact-card .btn-phone,
.property-contact-card .contact-list .btn-phone {
  color: var(--white);
}
.info-card .btn-phone:hover,
.info-card ul li .btn-phone:hover,
.info-card .btn-outline[href="contact.html"]:hover,
.info-card .btn-outline[href$="/contact.html"]:hover,
.property-contact-card .btn-phone:hover,
.property-contact-card .btn-outline:hover,
.property-contact-card .contact-list .btn-phone:hover {
  background: #075a57;
  border-color: #075a57;
  color: var(--white);
}
.info-card .btn-phone .ico,
.info-card ul li .btn-phone .ico,
.property-contact-card .btn-phone .ico,
.property-contact-card .contact-list .btn-phone .ico {
  color: var(--white);
}
.info-card .btn-phone:hover .ico,
.info-card ul li .btn-phone:hover .ico,
.info-card .btn-outline[href="contact.html"]:hover::before,
.info-card .btn-outline[href$="/contact.html"]:hover::before,
.property-contact-card .btn-phone:hover .ico,
.property-contact-card .btn-outline:hover::before,
.property-contact-card .contact-list .btn-phone:hover .ico {
  color: var(--white);
}
.property-reference {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.property-reference span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.property-reference strong {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--ink);
}
/* END VERBATIM css/style.css */

/* ===========================================================
   WordPress parity layer
   -----------------------------------------------------------
   The static template targeted flat ".html" URLs, so a handful
   of its selectors were written as attribute matches such as
   [href="contact.html"]. Under WordPress the same links become
   pretty permalinks (/contact/), which those selectors would
   miss. Every rule below re-states an existing rule from the
   verbatim block for the WordPress equivalent so the rendered
   result is visually identical. No new styling is introduced.
   =========================================================== */

/* Mirror of: .btn[href="contact.html"]::before */
.btn-contact::before {
  content: "✉";
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

/* Mirror of: .info-card .btn-outline[href="contact.html"] */
.info-card .btn-outline.btn-contact,
.property-contact-card .btn-outline.btn-contact {
  width: 100%;
  justify-content: center;
}

/* Mirror of: .info-card .btn-outline[href="contact.html"]:hover */
.info-card .btn-outline.btn-contact:hover,
.property-contact-card .btn-outline.btn-contact:hover {
  background: #075a57;
  border-color: #075a57;
  color: var(--white);
}

/* Mirror of: .info-card .btn-outline[href="contact.html"]:hover::before */
.info-card .btn-outline.btn-contact:hover::before,
.property-contact-card .btn-outline.btn-contact:hover::before {
  color: var(--white);
}

/* ---------- WordPress core output classes ----------
   WordPress emits a small set of markup classes (alignment,
   captions, sticky posts, screen-reader text, admin bar) that
   the static template never produced. These are the standard
   theme handlers required by the Theme Review guidelines. They
   only affect editor-authored block content, never the ported
   template sections. */

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--ink);
  clip-path: none;
  color: var(--white);
  display: block;
  font-size: 14px;
  height: auto;
  left: 12px;
  line-height: normal;
  padding: 12px 20px;
  text-decoration: none;
  top: 12px;
  width: auto;
  z-index: 2000;
}

.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 16px;
}
.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignwide {
  max-width: calc(var(--container) + 160px);
  margin-left: auto;
  margin-right: auto;
}
.alignfull {
  max-width: none;
  width: 100%;
}

.wp-caption {
  max-width: 100%;
}
.wp-caption-text,
.wp-block-image figcaption {
  font-size: 13px;
  color: var(--grey);
  margin-top: 10px;
  text-align: center;
}

.sticky .entry-title::after {
  content: "★";
  color: var(--gold-text);
  margin-left: 10px;
  font-size: 0.7em;
  vertical-align: super;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.bypostauthor > .comment-body {
  border-left: 2px solid var(--gold-line);
  padding-left: 18px;
}

/* The admin bar is 32px (46px on small screens) of fixed chrome
   at the top of the viewport. Offset the fixed site header by
   the same amount so logged-in editors see the same layout. */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ---------- Blog / archive fallbacks ----------
   The static template had no blog. These rules render core
   post lists using the exact tokens already defined above so
   any editor-created posts inherit the same visual language. */

.entry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  align-items: start;
}
.entry-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}
.entry-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}
.entry-card .entry-card-body {
  padding: 30px;
}
.entry-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
.entry-card h2 a:hover {
  color: var(--gold-text);
}
.entry-card .entry-meta {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--grey);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.entry-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.8;
}
.entry-content > * + * {
  margin-top: 20px;
}
.entry-content p,
.entry-content li {
  color: var(--grey);
  line-height: 1.85;
}
.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content h2 {
  font-size: 30px;
  margin-top: 40px;
}
.entry-content h3 {
  font-size: 22px;
  margin-top: 32px;
}
.entry-content blockquote {
  border-left: 2px solid var(--gold-line);
  padding-left: 24px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.entry-content a {
  color: var(--gold-text);
  border-bottom: 1px solid var(--gold-line);
}
.entry-content a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}
.entry-content th {
  background: var(--cream-deep);
  font-weight: 600;
}
.entry-content code,
.entry-content pre {
  background: var(--cream-deep);
  border-radius: var(--radius);
  font-size: 14px;
}
.entry-content code {
  padding: 2px 6px;
}
.entry-content pre {
  padding: 20px;
  overflow-x: auto;
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink-soft);
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.comment-list {
  max-width: 840px;
  margin: 0 auto;
}
.comment-list li {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.comment-list .children {
  padding-left: 32px;
}
.comment-meta {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.comment-form .form-group {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .entry-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .entry-list {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
