:root{
  --ivory:#f7f4ee;
  --paper:#fbf9f4;
  --charcoal:#121416;
  --muted:rgba(18,20,22,.62);
  --line:rgba(18,20,22,.14);
  --gold:#b59a5a;

  --container:1180px;
  --serif:"Playfair Display", Georgia, serif;
  --sans:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --radius:18px;
  --radiusLg:26px;
  --shadow:0 18px 46px rgba(18,20,22,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body.theme{
  margin:0;
  background:var(--ivory);
  color:var(--charcoal);
  font-family:var(--sans);
  line-height:1.55;
}
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }

.gallery {
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-track img {
  min-width: 100%;
  height: 70vh;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.gallery-btn.left { left: 1rem; }
.gallery-btn.right { right: 1rem; }

.container{
  width:min(var(--container), calc(100% - 56px));
  margin:0 auto;
}

.page{ padding: 84px 0 40px; }
.page-head{ padding: 18px 0 22px; }
.page-head h1{
  margin:0 0 6px;
  font-family:var(--serif);
  font-weight:600;
  letter-spacing:.02em;
  font-size: 42px;
}
.page-head p{ margin:0; color:var(--muted); max-width: 70ch; }

.section{ padding: 56px 0; }
.section-head{ text-align:center; margin-bottom: 18px; }
.section-head h2{
  margin:0 0 6px;
  font-family:var(--serif);
  font-weight:600;
  font-size: 28px;
}
.section-head p{ margin:0; color:var(--muted); font-size: 12.5px; }

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

.smallmuted{ color:var(--muted); font-size:12px; }
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  background: rgba(255,255,255,.35);
}
.filter-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin: 10px 0 22px;
}

/* ===== Topbar (LV/Gucci minimal) ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(247,244,238,.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}
.topbar--overlay{
  position:absolute;
  left:0; right:0;
  background: transparent;
  backdrop-filter:none;
}
.topbar-inner{
  width:min(var(--container), calc(100% - 56px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
}
.dotmenu{
  justify-self:start;
  width:42px; height:42px;
  border:0;
  background:transparent;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
}
.dotmenu span{
  width:5px; height:5px;
  border-radius:999px;
  background: rgba(18,20,22,.75);
  display:inline-block;
}
.pp-logo{
  justify-self:center;
  font-family:var(--serif);
  font-size: 18px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,20,22,.92);
}
.top-icons{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:14px;
}
.icon{
  width:20px; height:20px;
  display:grid; place-items:center;
  color: rgba(18,20,22,.78);
}
.icon:hover{ color: rgba(18,20,22,.95); }

/* Drawer */
.drawer{
  width:min(var(--container), calc(100% - 56px));
  margin: 8px auto 0;
  display:none;
  gap:14px;
  flex-wrap:wrap;
  padding: 10px 0 4px;
}
.drawer.open{ display:flex; }
.drawer a{
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: rgba(18,20,22,.72);
  padding: 6px 0;
}
.drawer a:hover{ color: rgba(18,20,22,.95); }
.drawer a[aria-current="page"]{ color: rgba(18,20,22,.95); border-bottom:1px solid rgba(18,20,22,.35); }

/* ===== Hero (copy directly on image) ===== */
.hero{
  position:relative;
  min-height: 86vh;
  background-size: cover;
  background-position:center;
  display:grid;
  align-items:center;
}
.hero--short{ min-height: 58vh; }
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.45) 100%);
}
.hero-copy{
  position:relative;
  width:min(var(--container), calc(100% - 56px));
  margin:0 auto;
  text-align:center;
  color: var(--paper);
  padding-top: 38px;
}
.hero-copy--left{ text-align:left; }
.hero-copy h1{
  margin:0 0 10px;
  font-family: var(--serif);
  font-weight:600;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height:1.06;
  text-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.hero-copy p{
  margin:0 auto 18px;
  max-width: 72ch;
  font-size:14px;
  color: rgba(251,249,244,.86);
}
.hero-copy--left p{ margin-left:0; }
.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 28px;
  flex-wrap:wrap;
}
.hero-copy--left .hero-actions{ justify-content:flex-start; }

/* Editorial links (no blocks) */
.hero-link{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(251,249,244,.92);
  padding-bottom:6px;
  border-bottom:1px solid rgba(251,249,244,.35);
}
.hero-link:hover{ border-bottom-color: rgba(251,249,244,.92); }
.hero-link--primary{ border-bottom-color: rgba(181,154,90,.92); }

/* ===== Cards ===== */
.card{
  background: rgba(251,249,244,.70);
  border: 1px solid var(--line);
  border-radius: var(--radiusLg);
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-media{
  height: 210px;
  background-size:cover;
  background-position:center;
}
.card-body{ padding: 16px 16px 18px; }
.card-body h3{
  margin:0 0 8px;
  font-family: var(--serif);
  font-weight:600;
  font-size:18px;
}
.meta{ color:var(--muted); font-size:12px; }
.card-bottom{
  border-top:1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
}
.price-big{
  font-family: var(--serif);
  font-size: 22px;
}
.price-small{
  font-size: 11px;
  color: var(--muted);
}

/* ===== Event Cards ===== */
.event-card{
  position:relative;
  border-radius: var(--radiusLg);
  overflow:hidden;
  min-height: 320px;
  background-size:cover;
  background-position:center;
  border:1px solid var(--line);
}
.event-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.52) 100%);
}
.event-copy{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  color: var(--paper);
}
.event-copy h2{
  margin:0 0 6px;
  font-family: var(--serif);
  font-weight:600;
}
.event-copy p{ margin:0 0 10px; color: rgba(251,249,244,.86); font-size:12.5px; }
.event-link{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(251,249,244,.35);
  padding-bottom:6px;
  display:inline-block;
}

/* ===== Detail layout ===== */
.detail-grid{
  display:grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 18px;
  align-items:start;
}
.detail-card, .aside-card{
  background: rgba(251,249,244,.72);
  border:1px solid var(--line);
  border-radius: var(--radiusLg);
  padding: 18px;
}
.detail-card h2{
  margin:0 0 10px;
  font-family: var(--serif);
  font-weight:600;
}
.detail-card p{ margin:0 0 12px; }
.hr{ height:1px; background: var(--line); margin: 14px 0; }

.specs{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0;
}
.spec{
  border:1px solid rgba(18,20,22,.10);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.35);
}
.spec .k{ font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.10em; }
.spec .v{ font-size:13px; margin-top: 3px; }

.price-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-top: 10px;
}

.cta-row{
  display:flex;
  gap: 22px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 10px;
}

.note{
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  border-left: 2px solid rgba(181,154,90,.55);
  padding-left: 12px;
}

/* ===== Our Guests single video ===== */
.guest-video .video-frame{
  border-radius: var(--radiusLg);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.35);
  aspect-ratio: 16/9;
}
.guest-video iframe{ width:100%; height:100%; border:0; }
.caption{ margin: 10px 0 0; text-align:center; color: var(--muted); font-size:12px; }

/* ===== Services ===== */
.service{
  background: rgba(251,249,244,.72);
  border:1px solid var(--line);
  border-radius: var(--radiusLg);
  overflow:hidden;
}
.service img{ width:100%; height: 210px; object-fit:cover; }
.service-body{ padding: 16px 16px 18px; }
.service-body h3{ margin:0 0 8px; font-family: var(--serif); font-weight:600; }
.service-body p{ margin:0; color: var(--muted); font-size:12.5px; }

/* ===== Form ===== */
.form .form-row{ margin-bottom: 14px; }
label{ display:block; font-size:11px; color: var(--muted); letter-spacing:.10em; text-transform:uppercase; margin-bottom: 8px; }
input, textarea, select{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(18,20,22,.16);
  background: rgba(255,255,255,.50);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  outline:none;
}
textarea{ resize: vertical; }
.radio-row{ display:flex; gap: 16px; flex-wrap:wrap; font-size: 14px; color: rgba(18,20,22,.78); }
.radio-row input{ width:auto; }

.steps{ display:grid; gap: 12px; margin-top: 10px; }
.step{
  display:flex; gap: 14px;
  background: rgba(251,249,244,.72);
  border:1px solid var(--line);
  border-radius: var(--radiusLg);
  padding: 14px;
}
.step-num{
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(181,154,90,.95);
  width: 46px;
}
.step-body h3{ margin:0 0 4px; font-family: var(--serif); font-weight:600; }
.step-body p{ margin:0; color: var(--muted); font-size: 12.5px; }

/* Toast */
.toast{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom: 22px;
  background: rgba(18,20,22,.86);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
  z-index: 100;
}

/* Footer */
.footer-min{ padding: 26px 0 34px; }
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.lang{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 12px;
  color: rgba(18,20,22,.72);
}
.contact-link{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(18,20,22,.28);
  padding-bottom: 6px;
}
.contact-link:hover{ border-bottom-color: rgba(18,20,22,.85); }

/* Responsive */
@media (max-width: 980px){
  .container, .topbar-inner, .drawer, .hero-copy{ width: calc(100% - 28px); }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .detail-grid{ grid-template-columns: 1fr; }
  .hero{ min-height: 78vh; }
}

.addon{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: var(--radiusLg);
  border:1px solid rgba(18,20,22,.14);
  background: rgba(255,255,255,.35);
  cursor:pointer;
}
.addon input{ width:auto; margin-top: 4px; }
.addon--on{ border-color: rgba(181,154,90,.55); box-shadow: 0 12px 30px rgba(18,20,22,.10); }
.addon-body{ flex:1; }
.addon-top{ display:flex; justify-content:space-between; gap:12px; }
.addon-title{ font-family: var(--serif); font-weight:600; }
.addon-price{ font-size:12px; color: rgba(18,20,22,.75); }
.addon-desc{ color: var(--muted); font-size:12.5px; margin-top: 6px; }

.footer-clean{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  padding:40px 0;
  flex-wrap:wrap;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-copy{
  margin:0;
  font-size:14px;
  letter-spacing:.03em;
}

.footer-copy.small{
  opacity:.7;
  font-size:13px;
}

.footer-right{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:flex-end;
}

.footer-right .contact-link{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

@media (max-width:768px){

  .footer-clean{
    flex-direction:column;
    align-items:flex-start;
  }

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

}

/* Gallery (between hero and description) */
.gallery {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-track img {
  min-width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

.gallery-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}

.gallery-btn {
  pointer-events: auto;
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  border-radius: 999px;
}

.gallery-counter {
  pointer-events: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Clean hero variant */
.hero--clean {
  background: #0f0f12;
}

/* Ensure overlay header stays visible on dark hero (if not already added) */
.topbar--light,
.topbar--light .pp-logo,
.topbar--light .icon,
.topbar--light .dotmenu span {
  color: #fff;
}
.topbar--light .dotmenu span { background: #fff; }

/* Buttons/text forced black as requested */
.pp-btn-blacktext {
  color: #000 !important;
}
.pp-btn-blacktext * {
  color: #000 !important;
}

/* Overlay header stays readable on dark hero */
.topbar--light,
.topbar--light .pp-logo,
.topbar--light .icon,
.topbar--light .dotmenu span {
  color: #fff;
}
.topbar--light .dotmenu span { background: #fff; }

/* Gallery block (between hero and detail card) */
.gallery {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery--detail .gallery-track img {
  height: 70vh;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-track img {
  min-width: 100%;
  object-fit: cover;
  display: block;
}

.gallery-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}

.gallery-btn {
  pointer-events: auto;
  background: rgba(255,255,255,0.82);
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  border-radius: 999px;
}

.gallery-counter {
  pointer-events: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Force black button/link text where requested */
.pp-btn-blacktext {
  color: #000 !important;
}
.pp-btn-blacktext * {
  color: #000 !important;
}

/* Concierge page – WhatsApp primary CTA */
#waConcierge {
  color: #111;                 /* true black */
  border-bottom-color: #111;   /* underline matches */
}

#waConcierge:hover {
  color: #000;
  border-bottom-color: #000;
}

/* Homepage hero topbar — force white controls */
.topbar--overlay .dotmenu span {
  background: rgba(255,255,255,0.95);
}

.topbar--overlay .pp-logo {
  color: rgba(255,255,255,0.95);
}

.topbar--overlay .icon {
  color: rgba(255,255,255,0.9);
}

.topbar--overlay .icon:hover {
  color: rgba(255,255,255,1);
}

/* =========================================
   Overlay header (hero pages) — force WHITE
   ========================================= */

/* 3-dot menu */
.topbar--overlay .dotmenu span {
  background: rgba(255,255,255,0.95);
}

/* Logo */
.topbar--overlay .pp-logo {
  color: rgba(255,255,255,0.95);
}

/* Social icons */
.topbar--overlay .icon {
  color: rgba(255,255,255,0.9);
}

.topbar--overlay .icon:hover {
  color: rgba(255,255,255,1);
}
/* Stay page — force black text for Add-Ons CTAs */
.hero-copy--left .hero-link--primary,
.detail-card .hero-link--primary,
.detail-aside .hero-link--primary {
  color: #111;
  border-bottom-color: #111;
}

.hero-copy--left .hero-link--primary:hover,
.detail-card .hero-link--primary:hover,
.detail-aside .hero-link--primary:hover {
  color: #000;
  border-bottom-color: #000;
}
/* Overlay headers — ALWAYS white controls */
.topbar--overlay .dotmenu span {
  background: rgba(255,255,255,0.95);
}

.topbar--overlay .pp-logo {
  color: rgba(255,255,255,0.95);
}

.topbar--overlay .icon {
  color: rgba(255,255,255,0.9);
}

.topbar--overlay .icon:hover {
  color: rgba(255,255,255,1);
}
/* Gallery spacing + editorial inset */
.gallery--detail {
  margin-top: 48px;        /* space below hero */
  margin-bottom: 56px;
}

.gallery--detail .gallery-track {
  max-width: calc(100% - 96px);  /* inset sides */
  margin: 0 auto;
}

@media (max-width: 900px) {
  .gallery--detail .gallery-track {
    max-width: calc(100% - 32px);
  }
}
/* Add-Ons page — force primary CTA links to black */
.page .hero-link--primary {
  color: #111;
  border-bottom-color: #111;
}
.page .hero-link--primary:hover {
  color: #000;
  border-bottom-color: #000;
}

/* --------------------------------
   HERO HEADER (WHITE NAV)
-------------------------------- */

.topbar--light .pp-logo,
.topbar--light .drawer a,
.topbar--light .icon {
  color: #ffffff;
}

.topbar--light .drawer a {
  opacity: 0.9;
}

.topbar--light .drawer a:hover {
  opacity: 1;
}

.topbar--light .dotmenu span {
  background: #ffffff;
}

/* Events page card image loading/alignment fix */
.event-card {
  position: relative;
  border-radius: var(--radiusLg);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.28);
}

.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--paper);
  z-index: 2;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.52) 100%);
  z-index: 1;
}
/* Stay detail page CTA fix */
.detail-card .cta-row .hero-link {
  color: rgba(18,20,22,.88);
  border-bottom-color: rgba(18,20,22,.25);
}

.detail-card .cta-row .hero-link:hover {
  color: rgba(18,20,22,1);
  border-bottom-color: rgba(18,20,22,.55);
}

.detail-card .cta-row .hero-link--primary.pp-btn-blacktext {
  color: #000 !important;
  border-bottom-color: rgba(18,20,22,.35);
}

.footer-clean{
  display:grid;
  grid-template-columns: 1.2fr 1.8fr auto auto;
  align-items:center;
  gap:32px;
  padding:38px 0;
}

.footer-copyblock{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-copyblock p{
  margin:0;
  font-size:13px;
  line-height:1.35;
}

.footer-legal{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:center;
}

.footer-legal a{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-social{
  width:46px;
  height:46px;
  border:1px solid currentColor;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  letter-spacing:.12em;
  text-decoration:none;
}

.footer-lang select{
  min-width:150px;
}

@media (max-width:900px){
  .footer-clean{
    grid-template-columns:1fr;
    align-items:flex-start;
    gap:22px;
  }

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

/* =========================================
   FINAL CLEAN FOOTER
========================================= */

.footer-min{
  width:100%;
  margin-top:60px;
}

.footer-clean-final{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:34px 24px 40px;
  text-align:center;
}

/* TOP LINKS */

.footer-links-final{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
}

.footer-links-final a{
  font-size:11px;
  font-weight:400;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(18,20,22,.92);
  text-decoration:none;
  border-bottom:1px solid rgba(18,20,22,.16);
  padding-bottom:4px;
  white-space:nowrap;
  transition:.2s ease;
}

.footer-links-final a:hover{
  border-bottom-color:rgba(18,20,22,.55);
}

/* PAYFAST */

.footer-payfast{
  font-size:13px;
  line-height:1.5;
  color:rgba(18,20,22,.68);
}

/* BOTTOM LINE */

.footer-bottom-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;

  font-size:13px;
  line-height:1.4;
  color:rgba(18,20,22,.58);
}

/* LANGUAGE */

.footer-bottom-line select{
  width:auto !important;
  min-width:auto !important;
  max-width:none !important;

  padding:0 !important;
  margin:0 !important;

  border:none !important;
  border-radius:0 !important;

  background:transparent !important;
  box-shadow:none !important;

  appearance:auto;
  -webkit-appearance:auto;
  -moz-appearance:auto;

  font-size:13px;
  line-height:1.4;
  color:rgba(18,20,22,.58);

  cursor:pointer;
  outline:none;
}

.footer-bottom-line select:focus{
  outline:none;
  box-shadow:none;
}

/* MOBILE */

@media (max-width:768px){

  .footer-clean-final{
    gap:12px;
    padding:28px 18px 34px;
  }

  .footer-links-final{
    gap:12px;
  }

  .footer-links-final a{
    font-size:10px;
    letter-spacing:.08em;
  }

  .footer-payfast{
    font-size:12px;
    padding:0 10px;
  }

  .footer-bottom-line{
    flex-direction:column;
    gap:8px;
    font-size:12px;
  }

  .footer-bottom-line select{
    font-size:12px;
  }

}

.date-input{
  appearance:none;
  -webkit-appearance:none;

  width:100%;
  padding:12px 14px;

  border-radius:14px;
  border:1px solid rgba(18,20,22,.16);

  background:rgba(255,255,255,.50);

  font-family:var(--sans);
  font-size:14px;
  color:var(--charcoal);

  outline:none;
}

/* =========================================
   FINAL CLEAN FOOTER
========================================= */

.footer-min{
  width:100%;
  margin-top:60px;
}

.footer-clean-final{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:12px;

  padding:34px 24px 40px;

  text-align:center;
}

/* LINKS */

.footer-links-final{
  display:flex;
  align-items:center;
  justify-content:center;

  flex-wrap:wrap;

  gap:18px;
}

.footer-links-final a{
  font-size:11px;

  letter-spacing:.10em;
  text-transform:uppercase;

  color:rgba(18,20,22,.92);

  text-decoration:none;

  border-bottom:1px solid rgba(18,20,22,.16);

  padding-bottom:4px;

  white-space:nowrap;
}

.footer-links-final a:hover{
  border-bottom-color:rgba(18,20,22,.55);
}

/* PAYFAST */

.footer-payfast{
  font-size:13px;
  color:rgba(18,20,22,.68);
}

/* BOTTOM ROW */

.footer-bottom-line{
  display:flex;

  align-items:center;
  justify-content:center;

  gap:16px;

  font-size:13px;

  color:rgba(18,20,22,.58);
}

/* LANGUAGE */

.footer-bottom-line select{
  width:auto !important;
  min-width:auto !important;

  border:none !important;

  background:transparent !important;

  padding:0 !important;

  margin:0 !important;

  box-shadow:none !important;

  font-size:13px;

  color:rgba(18,20,22,.58);

  outline:none;
}

/* MOBILE */

@media (max-width:768px){

  .footer-clean-final{
    padding:28px 18px 34px;
  }

  .footer-links-final{
    gap:12px;
  }

  .footer-links-final a{
    font-size:10px;
  }

  .footer-payfast{
    font-size:12px;
  }

  .footer-bottom-line{
    flex-direction:column;
    gap:8px;
  }

}

.guest-slideshow{
  width:100%;
  min-height:620px;
  border:1px solid rgba(18,20,22,.14);
  border-radius:26px;
  overflow:hidden;
  background:rgba(251,249,244,.72);
}

.guest-slideshow img{
  width:100%;
  height:620px;
  object-fit:cover;
  display:block;
  transition:opacity .35s ease;
}

.footer-min{
  width:100%;
  margin-top:60px;
}

.footer-clean-final{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:34px 24px 40px;
  text-align:center;
}

.footer-links-final{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

.footer-links-final a{
  font-size:11px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(18,20,22,.92);
  text-decoration:none;
  border-bottom:1px solid rgba(18,20,22,.16);
  padding-bottom:4px;
  white-space:nowrap;
}

.footer-payfast{
  font-size:13px;
  color:rgba(18,20,22,.68);
}

.footer-bottom-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  font-size:13px;
  color:rgba(18,20,22,.58);
}

.footer-bottom-line select{
  width:auto !important;
  min-width:auto !important;
  max-width:none !important;
  border:none !important;
  background:transparent !important;
  padding:0 !important;
  margin:0 !important;
  box-shadow:none !important;
  font-size:13px;
  color:rgba(18,20,22,.58);
  outline:none;
}

@media (max-width:768px){
  .guest-slideshow{
    min-height:360px;
  }

  .guest-slideshow img{
    height:360px;
  }

  .footer-links-final{
    gap:12px;
  }

  .footer-links-final a{
    font-size:10px;
  }

  .footer-bottom-line{
    flex-direction:column;
    gap:8px;
  }
}
