:root {
  --cream: #f7f1e7;
  --paper: #fffaf2;
  --ink: #173d45;
  --teal: #2f6f78;
  --gold: #c79a4b;
  --muted: #6c7778;
  --line: rgba(23, 61, 69, 0.16);
  --shadow: 0 24px 60px rgba(23, 61, 69, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 241, 231, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark img{
  display: grid;
  place-items: center;
  width:100px;
  height:100px;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--gold);
}

.logo {
	
	width:100px;
	height:100px;
	border-radius:50%;
	object-fit:contain;
	display:block;
}
 
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(47,111,120,.18); }

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}

.btn.small { padding: 9px 16px; font-size: 0.9rem; }
.btn.full { width: 100%; border-radius: 14px; }

.hero { 
    padding-top:120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow-lg {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.90rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.lead {
  font-size: 1.12rem;
  color: #38595e;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: var(--paper);
  padding: 14px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-main {
	position: relative;
	width:100%
	aspect-ratio:4/3;
	overflow:hidden;
	border-radius: 22px;
	padding-bottom:25px;
	
}

.gallery-main img {
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;
	display:block;
	
}

.gallery-main img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Helpful fallback if an image is missing */
.gallery-main img:not([src]),
.gallery-main img[src=""] {
  display: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumb {
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  background: #efe6d8;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.thumb.active { border-color: var(--gold); }

.map-placeholder {
  min-height: 320px;
  border-radius: 22px;
  border: 1px dashed rgba(23, 61, 69, 0.28);
  background: linear-gradient(135deg, rgba(47,111,120,.12), rgba(199,154,75,.16)), var(--paper);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}


.map-placeholder,
.map-placeholder iframe {
  width: 100%;
  max-width: 100%;
}

.map-placeholder iframe {
  display: block;
  border: 0;
  border-radius: 18px;
  height: 360px;
}

.section { padding: 72px 0; }

.tinted {
  background: #edf3f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.features article,
.booking-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(23, 61, 69, 0.08);
}

.features p { color: var(--muted); margin-bottom: 0; }

.booking-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.booking-form button,
.booking-form .form-status { grid-column: 1 / -1; }

.note,
.form-status {
  color: var(--muted);
  font-size: 0.95rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.site-footer {
  padding: 32px 0;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.78);
  margin: 4px 0 0;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(57,57,57,.25) !important;
  text-decoration: line-through;
}


.booking-highlights {
    background: #f8f6f2;
    border: 1px solid #e8dfd3;
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
}

.booking-highlights h3 {
    margin: 0 0 18px;
    color: #0f4c5c;
    font-size: 1.6rem;
    font-weight: 700;
}

.booking-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-highlights li {
    padding: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 860px) {
  nav a:not(.btn) { display: none; }
  .hero-grid,
  .booking-panel,
  .location-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  
  .eyebrow-lg {  display:none; }
  

}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  
  .eyebrow-lg {  display:none; }
  
}

.whatsapp-float {
     animation: whatsapp-pulse 2s infinite;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: #fff;

    padding: 14px 18px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;
    font-size: 15px;

    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    transition: all .25s ease;
     overflow: visible;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,.25);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

.whatsapp-float span {
    white-space: nowrap;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.20),
            0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.20),
            0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.20),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-bubble {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);

    width: 220px;
    padding: 13px 16px;

    background: #fff;
    color: #244f52;

    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);

    font-size: 14px;
    line-height: 1.35;
    text-align: left;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;

    pointer-events: none;
}

.wa-bubble strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.wa-bubble::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 100%;

    border-width: 9px 8px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.wa-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


@media (max-width: 768px) {
    .whatsapp-float {
         animation: whatsapp-pulse 2s infinite;
        bottom: 18px;
        right: 18px;

        width: auto;
        max-width: 150px;
        min-height: 52px;

        padding: 10px 14px;
        gap: 8px;

        border-radius: 18px;
        font-size: 13px;
        line-height: 1.15;

        align-items: center;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .whatsapp-float span {
        display: block;
        white-space: normal;
        text-align: left;
    }
    .wa-bubble {
        width: 200px;
        right: 0;
        bottom: calc(100% + 12px);
        font-size: 13px;
    }

    .wa-bubble strong {
        font-size: 14px;
    }
    
}

@media (max-width: 768px) {

  .availability-section,
  .availability-container {
      width: 100%;
      max-width: 100%;
      display: block;
  }

  .booking-card {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
  }
}

.amenities-section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#C8A86B;
    font-weight:700;
    letter-spacing:3px;
    font-size:13px;
}

.section-title h2{
    color:#173D45;
    font-size:42px;
    margin-top:12px;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:24px;
}

.amenity-card{
    background:#fff;
    border-radius:22px;
    padding:28px 20px;
    text-align:center;
    transition:.25s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.amenity-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.amenity-card i{
    width:72px;
    height:72px;
    line-height:72px;
    border-radius:50%;
    background:#F7F3EC;
    color:#2C6C76;
    font-size:30px;
    margin-bottom:18px;
}

.amenity-card h4{
    font-size:18px;
    color:#173D45;
    margin:0;
    font-weight:600;
}

@media(max-width:768px){

    .section-title h2{
        font-size:30px;
    }

    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .amenity-card{
        padding:22px 12px;
    }

    .amenity-card i{
        width:60px;
        height:60px;
        line-height:60px;
        font-size:24px;
    }

    .amenity-card h4{
        font-size:15px;
    }

}

.contact-form{
    display:grid;
    gap:14px;
    margin-top:20px;
 }

.contact-form input,.contact-form textarea
{
    padding:12px;
    border:1px solid #d8d8d8;
    border-radius:10px;
    width:100%;
    box-sizing:border-box;
    font:inherit;
}

/* Email enquiry */

.booking-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 28px 0;
    color: #888;
}

.booking-divider::before,
.booking-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.booking-divider span {
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
}

.email-enquiry {
  margin-top: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ddd;
}

.email-enquiry summary {
  /*cursor: pointer;*/
  font-weight: 700;
  color: #183b45;
  font-size: 18px;
}

.email-enquiry p {
  color: #666;
  margin: 16px 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  color: #183b45;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}
.booking-form {
  display: block;
}

.booking-inner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-inner-form button {
  grid-column: 1 / -1;
}

.booking-divider,
.email-enquiry,
.form-status {
  width: 100%;
  margin-top: 22px;
}

@media (max-width: 768px) {
  .booking-inner-form {
    grid-template-columns: 1fr;
  }
}
.full-width {
    width: 100%;
}

/* ===========================
   Shrinking Sticky Header
=========================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:all .3s ease;
}

.site-header .nav{
    transition:padding .3s ease;
}

.site-header .logo{
    transition:width .3s ease,height .3s ease;
}

.site-header nav{
    transition:font-size .3s ease;
}

.site-header.shrink .nav{
    padding:8px 0;
}

.site-header.shrink .logo{
    width:60px;
    height:60px;
}

.site-header.shrink nav{
    font-size:.9rem;
}

.site-header.shrink .btn.small{
    padding:7px 14px;
}

.mobile-property-title{
    display:none;
}

.header-title
{
    color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-size: 0.90rem;
      font-weight: 800;
    
}

@media (max-width:768px){

    .header-title{
        display:none;
    }

    .mobile-property-title{
        display:block;
        margin:20px 0 16px;
        text-align:center;
        color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-size: 0.90rem;
      font-weight: 800;
    }

    .mobile-property-title h2{
        margin:0;
        font-size:2rem;
    }

    .mobile-property-title p{
        margin:4px 0 0;
        color:#666;
        font-size:1rem;
    }
}