/* =========================================================
   Kipos Zante | Residence — custom.css
   Project-specific styles layered on top of the purchased
   template (template.css / vendors.min.css / bootstrap).
   ========================================================= */

:root {
  --kz-accent: #c89d66;
  --kz-accent-dark: #4b514d;
  --kz-dark: #24262d;
  --kz-ink: #122223;
  --kz-cream: #faf8f5;
  --kz-line: #ededed;
  --kz-font-heading: 'GFS Neohellenic', 'Montserrat', serif;
  --kz-font-text: 'Manrope', 'Zen Maru Gothic', 'Montserrat', Helvetica, sans-serif;
}

/* ---------------------------------------------------------
   0a-ink. Headings — deep ink tone instead of generic #333
   --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--kz-ink);
}

/* ---------------------------------------------------------
   0a-img. Photos — tighter corners everywhere (was 10px)
   --------------------------------------------------------- */
img.rounded-img {
  border-radius: 3px;
}

/* ---------------------------------------------------------
   0a. Buttons — tighter corners (was a 25px pill); outline
   variant gets a thinner border + lighter letters
   --------------------------------------------------------- */
a.btn_1,
.btn_1 {
  border-radius: 2px;
}
a.btn_1.outline,
.btn_1.outline {
  border-width: 1px;
  font-weight: 400;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
  border-width: 1px;
}

/* ---------------------------------------------------------
   -1. Headings — GFS Neohellenic (Greek-friendly serif)
   --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.title h2, .title h3,
.slide-text .owl-slide-title-2 {
  font-family: var(--kz-font-heading);
}

/* ---------------------------------------------------------
   -1b. Body text — Manrope (everything except headings)
   --------------------------------------------------------- */
body {
  font-family: var(--kz-font-text);
}

/* ---------------------------------------------------------
   0. Logo — logo_white.png (transparent/top header) swaps to
      logo_black.png (solid header) via the template's own
      .logo_normal / .logo_sticky headroom classes.
   --------------------------------------------------------- */
.site-logo { display: inline-block; line-height: 0; }
.site-logo .logo_normal,
.site-logo .logo_sticky {
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo { height: 62px; width: auto; }

/* Thin separating line under the header — visible from the very
   start (over the transparent/hero state), not just once scrolled. */
header.reveal_header {
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
header.reveal_header.headroom--not-top {
  border-bottom-color: rgba(18, 34, 35, .1);
}

/* Pin + address on the left, logo pushed to true page-center —
   wide screens only; mobile keeps the original two-column header. */
.header-address {
  display: none;
}
@media (min-width: 992px) {
  .header-address {
    display: flex;
    align-items: center;
    gap: 22px;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 13px;
  }
  .header-address a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
  }
  header.reveal_header.headroom--not-top .header-address a {
    color: var(--kz-dark);
  }
  .header-address i {
    color: var(--kz-accent);
    font-size: 16px;
  }

  header.reveal_header .site-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.footer-col-brand {
  text-align: center;
}
.footer-col-contact {
  text-align: center;
}
/* template.css's own footer .move_content has padding-bottom:120px —
   that dead space made the footer-bottom bar sit far below the
   visible columns, easy to miss without scrolling further. */
footer .move_content {
  padding-bottom: 40px;
}

.footer-col-menu {
  text-align: left;
}

/* template.css hides the first header nav <li> under 991px — that item
   is our Book Now CTA, which sot.md requires to stay reachable on mobile. */
@media (max-width: 991px) {
  header.reveal_header nav ul li.li-book-now { display: inline-block !important; }
}

/* Book Now + hamburger must never wrap onto separate lines on mobile. */
header.reveal_header nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* .hamburger has zero built-in padding — without this it sits flush
   against the container edge on narrow screens. */
header.reveal_header nav ul li.li-hamburger {
  padding-right: 4px;
}

/* template.css nudges the hamburger icon down 8px (!important, tuned
   for the original larger pill button) — that offset made it sit
   below-center next to the smaller Book Now button. */
header.reveal_header .hamburger {
  top: 0 !important;
}

/* Thinner hamburger bars (was 2px). */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  height: 1px;
}

/* The hamburger icon itself is 24px tall and, as an inline-block
   inside an inline <a>, sits on the text baseline rather than truly
   centered. Giving its link the same box height as Book Now (and
   flex-centering the icon inside it) makes both sit on one shared
   line at one shared height. */
header.reveal_header nav ul li.li-hamburger a.menu_open {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
}

/* Smaller, lighter Book Now — centers more cleanly against the
   24px-tall hamburger icon, on both wide and mobile. */
header.reveal_header nav ul li.li-book-now .btn_1 {
  height: 33px;
  padding: 0 20px;
  font-weight: 400;
  font-size: 13px;
}

@media (max-width: 480px) {
  .site-logo .logo_normal,
  .site-logo .logo_sticky { height: 28px; }
  header.reveal_header nav ul li.li-book-now .btn_1 {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
   0b. Off-canvas menu — logo on its own row, above the address
   column, desktop only. Closing is handled by the header
   hamburger (turns into an X while the panel is open) — the
   only close control, on every screen size.
   --------------------------------------------------------- */
.panel__logo {
  margin-bottom: 30px;
}
.panel__logo img {
  display: block;
  height: 56px;
  width: auto;
}
@media (max-width: 991px) {
  .panel__logo { display: none; }
}

/* Slight see-through instead of a fully solid panel — blur keeps the
   white text readable over whatever page content shows behind it. */
.panel_menu {
  background-color: rgba(18, 34, 35, 0.88);
}
.panel_menu .panel__content .panel__content_wrapper {
  background-color: rgba(18, 34, 35, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.panel-address {
  white-space: pre-line;
}

/* headroom.js can slide the header off-screen on scroll (translateY
   -100% via the .slideUp animation). Clicking a control inside the
   open panel (e.g. the language switch) can trigger an incidental
   scroll — some browsers auto-scroll a focused element into view —
   which headroom reads as "scrolling down" and hides the header,
   taking the only close button (the hamburger-turned-X) with it.
   Force the header to stay pinned for as long as the panel is open. */
body.no_scroll header.reveal_header {
  animation: none !important;
  transform: translateY(0) !important;
}

/* ---------------------------------------------------------
   0c. Off-canvas menu — smaller/thinner nav links, room to breathe
   --------------------------------------------------------- */
.panel_menu .panel__content .panel__content_wrapper {
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 130px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .panel_menu .panel__content .panel__content_wrapper {
    padding-top: 90px;
  }
  /* template.css adds its own 100px margin-top here on top of the
     wrapper's padding — that stacked up into a large empty gap. */
  .panel_menu .wrapper_menu {
    margin-top: 0;
  }
}
.panel_menu .wrapper_menu > ul li {
  margin-bottom: 18px;
}
.panel_menu .wrapper_menu > ul li:last-child {
  margin-bottom: 0;
}
.panel_menu .wrapper_menu > ul li a {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}
.panel_menu .contacts ul li {
  margin-bottom: 12px;
}
.panel_menu .contacts .contact-type {
  display: block;
  margin: 2px 0 0 34px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .65;
}

/* ---------------------------------------------------------
   1. Bilingual toggle (EN / EL share the same markup)
   --------------------------------------------------------- */
.lang-en, .lang-el { transition: none; }
html.lang-el .lang-en { display: none !important; }
html:not(.lang-el) .lang-el { display: none !important; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 11px;
  border-radius: 20px;
  cursor: pointer;
  line-height: 1;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--kz-accent);
  color: #fff;
}
footer .lang-switch {
  border-color: rgba(255,255,255,0.25);
}
.panel_menu .lang-switch { border-color: rgba(255,255,255,0.6); }
.panel_menu .lang-switch button { color: #fff; }
.panel_menu .lang-switch button[aria-pressed="true"] { color: #fff; }

/* template.css styles slide headings via h2/h3 tag selectors only.
   Slide 1 uses a real <h1> (sot.md #8, one primary H1 on the page);
   slides 2-3 reuse the same class on a <p> to avoid extra H1s. Both
   need the same treatment, keyed off the shared class instead of tag. */
.slide-text .owl-slide-title-2 {
  font-size: 38px;
  font-size: 2.375rem;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 10px 0;
}
@media (max-width: 767px) {
  .slide-text .owl-slide-title-2 { font-size: 30px; font-size: 1.875rem; }
}
.slide-text.white .owl-slide-title-2 { color: #fff; }
.slide-text.black .owl-slide-title-2 { color: #000; }

/* ---------------------------------------------------------
   2. Hero information banner
   --------------------------------------------------------- */
.hero-info-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(20, 20, 16, 0.32);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-info-banner .hib-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: clamp(10px, 2vw, 18px) 16px;
}
.hero-info-banner .hib-item {
  display: flex;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-info-banner .hib-item strong {
  display: block;
  font-size: clamp(15px, 2.4vw, 20px);
  line-height: 1.1;
  font-weight: 400;
}
.hero-info-banner .hib-item small {
  display: block;
  font-size: clamp(10px, 1.6vw, 12px);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}
@media (max-width: 575px) {
  .hero-info-banner .hib-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }
  .hero-info-banner .hib-item { justify-content: center; }
}

/* ---------------------------------------------------------
   3. Facilities — intro column + accordion (each ~half width)
   --------------------------------------------------------- */
.facilities-intro { padding-top: 6px; }
.facilities-intro .title h3 { margin-bottom: 14px; }

#facilities .title h2 {
  display: inline-block;
  background: linear-gradient(100deg, var(--kz-ink), var(--kz-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.facilities-accordion .card {
  border: none;
  box-shadow: 0 16px 32px -22px rgba(18, 34, 35, .4);
  margin-bottom: 4px;
}

.facilities-accordion .card-header h5 a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.facilities-accordion .card-header h5 a .fg-icon {
  font-size: 18px;
  color: var(--kz-accent);
  order: -1;
}
.facilities-accordion .card-header h5 a i.indicator {
  float: none;
  margin-left: auto;
  order: 2;
}
.facility-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  padding: 0;
  margin: 0 0 15px;
}
.facility-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13px;
  color: #555;
  border-bottom: 1px dashed var(--kz-line);
}
.facility-list li:last-child { border-bottom: none; }
.facility-list li:before {
  content: "\f633";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--kz-accent);
  font-size: 13px;
}

/* ---------------------------------------------------------
   4. Garden storytelling band
   --------------------------------------------------------- */
.garden-band {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0;
  background-color: #2f2c22;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.garden-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 26, 20, .55);
}
.garden-band .container { position: relative; z-index: 2; }
.garden-band h2 {
  font-family: var(--kz-font-heading);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}
.garden-band p {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(15px, 2vw, 18px);
  opacity: .92;
}
.garden-band__inner {
  display: inline-block;
  border-right: 3px solid var(--kz-accent);
  padding-right: 28px;
}

/* ---------------------------------------------------------
   5. Chapel parallax section (small, not in Gallery)
   --------------------------------------------------------- */
.chapel-parallax {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.chapel-parallax .chapel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,.35), rgba(20,18,14,.65));
}
.chapel-parallax .chapel-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 0 20px;
}
.chapel-parallax .chapel-content small {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .85;
}
.chapel-parallax .chapel-content h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  margin: 10px 0 14px;
}
.chapel-parallax .chapel-content p {
  font-size: clamp(14px, 1.8vw, 16px);
  opacity: .95;
}
@media (prefers-reduced-motion: reduce) {
  .chapel-parallax .jarallax-img,
  .parallax_section_1 .jarallax-img { transform: none !important; }
}

/* ---------------------------------------------------------
   6. Filtered gallery
   --------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.gallery-filters button {
  border: 1px solid rgba(18, 34, 35, .25);
  background: transparent;
  color: var(--kz-dark);
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .25s ease-in-out;
}
.gallery-filters button:hover { background: rgba(200,157,102,.12); }
.gallery-filters button[aria-pressed="true"] {
  background: var(--kz-accent);
  border-color: var(--kz-accent);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-grid .item {
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-grid .item.is-hidden {
  display: none;
}
.gallery-grid .item.gallery-collapsed {
  display: none;
}
.gallery-grid .item.gallery-revealing {
  opacity: 0;
  transform: translateY(16px) scale(.97);
}

.gallery-view-more-wrap {
  display: none;
  text-align: center;
  margin-top: 34px;
}
.gallery-view-more-wrap.show {
  display: block;
}
.gallery-grid .item-img {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-grid .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform .5s ease;
}
.gallery-grid .item-img:hover img { transform: scale(1.06); }
.gallery-grid .item-img .content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background: rgba(20,18,14,0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s ease;
}
.gallery-grid .item-img:hover .content {
  width: 100%;
  height: 100%;
  background: rgba(20,18,14,.35);
  opacity: 1;
}
.gallery-grid .item-img .content i {
  color: #fff;
  font-size: 26px;
}

/* ---------------------------------------------------------
   7. Location — map / distances
   --------------------------------------------------------- */
.location-map-wrap {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
/* Map dissolves toward the distances column instead of a hard edge. */
.location-map-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0) 55%, #fff 100%);
}
.distances-block {
  padding: 10px 0 10px 48px;
}
.distances-block h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--kz-accent);
  margin: 22px 0 12px;
}
.distances-block h4:first-child { margin-top: 0; }
.distances-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 6px;
}
.distances-table tr {
  border-bottom: 1px dashed var(--kz-line);
}
.distances-table td {
  padding: 9px 4px;
  font-size: 14.5px;
  color: #444;
}
.distances-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--kz-dark);
  white-space: nowrap;
}
.location-note {
  font-size: 13px;
  color: #777;
  font-style: italic;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .location-map-wrap { min-height: 300px; border-radius: 12px; }
  .location-map-wrap iframe { min-height: 300px; }
  .location-map-fade { background: linear-gradient(to bottom, rgba(255,255,255,0) 55%, #fff 100%); }
  .distances-block { padding: 30px 4px 0; }
}

/* ---------------------------------------------------------
   8. Contact form
   --------------------------------------------------------- */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }
#message-contact { margin-bottom: 14px; }
#message-contact:empty { display: none; }
#message-contact.ok {
  background: #eaf3ea; color: #2c5c2c; border: 1px solid #bfe0bf;
  padding: 12px 16px; border-radius: 8px; font-size: 14px;
}
#message-contact.err {
  background: #fbeaea; color: #7a2323; border: 1px solid #f0c2c2;
  padding: 12px 16px; border-radius: 8px; font-size: 14px;
}
.form-control.is-invalid { border-color: #c0392b !important; }
.field-error {
  color: #c0392b;
  font-size: 12.5px;
  margin-top: -12px;
  margin-bottom: 14px;
  display: none;
}
.field-error.show { display: block; }

/* Contact info card — template.css ships this at a much bigger,
   plainer scale (36px icons, 45px padding); tighten it up and give
   it the same gradient/shadow lift as the other cards. */
.contact_info {
  padding: 22px 26px 14px;
  background: linear-gradient(155deg, #ffffff 0%, #f7f4ee 55%, rgba(18, 34, 35, .06) 100%);
  box-shadow: 0 22px 44px -26px rgba(18, 34, 35, .4);
}
.contact_info ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact_info ul li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 28px;
}
.contact_info ul li h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

/* Subtle, gold-tinted field borders instead of default Bootstrap gray. */
#contact .form-control {
  border: 1px solid rgba(200, 157, 102, .35);
  background: var(--kz-cream);
}
#contact .form-control:focus {
  border-color: var(--kz-accent);
  box-shadow: 0 0 0 3px rgba(200, 157, 102, .18);
}

.contact-book-cta {
  padding: 26px 32px;
  text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #f7f4ee 55%, rgba(18, 34, 35, .08) 100%);
  border: 1px solid rgba(200, 157, 102, .3);
  border-radius: 6px;
  box-shadow: 0 22px 40px -26px rgba(18, 34, 35, .4);
}
.contact-book-cta__icon {
  display: block;
  font-size: 30px;
  color: var(--kz-accent);
  margin-bottom: 14px;
}
.contact-book-cta__text {
  font-family: var(--kz-font-heading);
  font-size: clamp(17px, 1.8vw, 20px);
  margin-bottom: 18px;
}

/* Let more of the footer photo show through — template.css had it
   at 30% opacity + full grayscale. The dark gradient still goes
   fully solid by the text zone lower down, so readability holds. */
footer .footer_bg .background-image {
  opacity: 0.55;
  filter: grayscale(30%);
}
footer .footer_bg .gradient_over {
  background: linear-gradient(to bottom, transparent 0%, transparent 35%, #24262d 100%);
}

/* ---------------------------------------------------------
   9. Footer bottom bar
   --------------------------------------------------------- */
.footer-bottom {
  background: var(--kz-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-family: var(--kz-font-text);
  font-weight: 300;
  font-size: 13px;
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom a:hover { color: var(--kz-accent); }

/* ---------------------------------------------------------
   10. Accessibility — focus states
   --------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  background: var(--kz-dark);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--kz-accent);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   11. Section rhythm helpers
   --------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kz-accent);
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .margin_120_95 { padding: 60px 0 !important; }
}

/* ---------------------------------------------------------
   12. Mobile safety net — shrink titles further, keep body
       copy off the screen edge, protect the navbar row.
   --------------------------------------------------------- */
@media (max-width: 575px) {
  .title h2 { font-size: clamp(24px, 7.5vw, 30px); }
  .title h3 { font-size: clamp(19px, 6vw, 23px); }
  .garden-band h2 { font-size: clamp(28px, 9vw, 38px); }

  .container,
  .container-fluid { padding-left: 20px; padding-right: 20px; }

  .garden-band p,
  .chapel-content p,
  .intro p,
  .facilities-intro p,
  #concierge p {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 359px) {
  header.reveal_header nav ul li.li-book-now .btn_1 {
    padding: 8px 10px;
    font-size: 11px;
  }
  .site-logo .logo_normal,
  .site-logo .logo_sticky { height: 24px; }
}

/* ---------------------------------------------------------
   13. House Layout — offset line frame + tighter corners
   --------------------------------------------------------- */
#house-layout {
  background: linear-gradient(160deg, #ffffff 0%, #faf8f5 55%, #f5efe4 100%);
}

#house-layout .rounded_container {
  position: relative;
}

#house-layout .rounded_container::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--kz-accent);
  z-index: -1;
}

#house-layout .rounded_container img.rounded-img,
#house-layout .rounded_container .owl-carousel.rounded-img {
  border-radius: 1px;
  overflow: hidden;
}

@media (max-width: 767px) {
  #house-layout .rounded_container::before {
    top: 12px;
    left: 12px;
    right: -10px;
    bottom: -10px;
  }
}

/* Card background/padding/shadow apply everywhere so the box never
   reads as bare text — only the overlap margin is desktop-only,
   since that trick needs the side-by-side image+text layout. */
#house-layout .house-layout__caption {
  position: relative;
  z-index: 3;
  background: var(--kz-cream);
  padding: 24px 26px;
  box-shadow: 0 22px 40px -26px rgba(18, 34, 35, .4);
}
@media (min-width: 992px) {
  #house-layout .house-layout__caption {
    padding: 32px 34px;
    margin-left: -40px;
  }
  #house-layout .house-layout__caption.-reverse {
    margin-left: 0;
    margin-right: -40px;
  }
}

/* Vertical accent line so the caption card doesn't read so flat —
   on the outer edge, away from the image (right normally, left
   when mirrored on the kitchen row). */
#house-layout .house-layout__caption.-accent {
  border-right: 3px solid var(--kz-accent);
}
#house-layout .house-layout__caption.-accent.-reverse {
  border-right: none;
  border-left: 3px solid var(--kz-accent);
}

/* ---------------------------------------------------------
   14. Concierge — service photo on each card
   --------------------------------------------------------- */
/* Premium services deserve less of a flat page — soft warm gradient
   behind the section, and each column becomes an actual elevated
   card instead of a plain divider-separated column. */
#concierge {
  background: linear-gradient(155deg, #ffffff 0%, #faf6ef 50%, #f3e9d8 100%);
}

.box_facilities__img {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
}

.box_facilities__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#concierge .row {
  --bs-gutter-x: 1rem;
  row-gap: 16px;
}
#concierge .box_facilities {
  position: relative;
  height: 100%;
  border: none;
  background: linear-gradient(155deg, #ffffff 0%, #f7f4ee 55%, rgba(18, 34, 35, .06) 100%);
  border-radius: 6px;
  padding: 34px 26px 28px;
  box-shadow: 0 20px 40px -26px rgba(18, 34, 35, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
#concierge .box_facilities:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 56px -22px rgba(18, 34, 35, .55);
}
.box_facilities h3 .stretched-link {
  color: inherit;
  text-decoration: none;
}

.concierge-cta {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 36px;
  text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #f7f4ee 55%, rgba(18, 34, 35, .08) 100%);
  border: 1px solid rgba(200, 157, 102, .3);
  border-radius: 6px;
  box-shadow: 0 24px 44px -26px rgba(18, 34, 35, .4);
}
.concierge-cta__text {
  font-family: var(--kz-font-heading);
  font-size: clamp(19px, 2vw, 23px);
  margin-bottom: 22px;
}

/* ---------------------------------------------------------
   15. About — centered intro, full-width parallax band,
   host note as a standalone info tip
   --------------------------------------------------------- */
.about-parallax {
  position: relative;
  min-height: clamp(320px, 42vw, 480px);
  margin: 60px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-parallax { margin: 40px 0; }
}

.about-title-big {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.15;
}

.about-lead {
  font-size: clamp(19px, 2.2vw, 25px);
  margin-top: 16px;
}

.about-row-2 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-row-2 { margin-top: 30px; }
}

/* Columns stack below lg — give the text some breathing room
   instead of sitting flush against the image above it. */
@media (max-width: 991px) {
  .about-row-text {
    margin-top: 22px;
  }
}

/* The paragraph text sat flat on the plain page background — lift
   it onto its own card with a soft ink-tinted gradient and shadow. */
.about-row-text {
  background: linear-gradient(155deg, #ffffff 0%, #f7f4ee 55%, rgba(18, 34, 35, .08) 100%);
  padding: 26px 30px;
  border-radius: 4px;
  box-shadow: 0 22px 40px -26px rgba(18, 34, 35, .4);
}

/* Row 2 gets a quieter treatment — a single accent line instead of
   a second identical card, so the two rows don't read as twins. */
.about-row-2 .about-row-text {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 24px 0 0;
  border-right: 3px solid var(--kz-accent);
}

/* Bigger text fills the tall empty space beside the images and
   centers with them — desktop only, normal size on mobile where
   the columns stack instead of sitting side by side. */
@media (min-width: 992px) {
  .about-row-text p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.7;
  }
  /* Row 2's text sits to the left of its image — right-align it so
     it leans into the image instead of drifting away from it. */
  .about-row-2 .about-row-text p {
    text-align: right;
  }
}

.about-tip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
  padding: 20px 24px;
  background: var(--kz-cream);
  border: 1px solid rgba(200, 157, 102, 0.45);
  border-left: 4px solid var(--kz-accent);
  border-radius: 3px;
}
.about-tip i {
  flex-shrink: 0;
  font-size: 19px;
  color: var(--kz-accent);
}
.about-tip p {
  margin: 0;
  color: var(--kz-accent-dark);
}
