@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root{
  --deep-teal:#12403F;
  --teal-700:#1B5654;
  --sea-blue:#3C8494;
  --sand:#F3E9D6;
  --sand-light:#FAF5EA;
  --coral:#E28A4E;
  --coral-dark:#B96530;
  --ink:#16241F;
  --ink-soft:#4A5650;
  --white:#FFFDF8;
  --line:rgba(22,36,31,0.12);
  --radius:14px;
  --wrap:1100px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Work Sans', sans-serif;
  color:var(--ink);
  background:var(--sand-light);
  line-height:1.6;
}
h1,h2,h3,.brand{
  font-family:'Fraunces', serif;
  font-weight:500;
  color:var(--deep-teal);
  margin:0 0 .4em;
}
h1{font-size:clamp(2.2rem,5vw,3.4rem); line-height:1.08; font-weight:600;}
h2{font-size:clamp(1.6rem,3vw,2.2rem);}
h3{font-size:1.15rem;}
p{margin:0 0 1em; color:var(--ink-soft);}
a{color:inherit;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 24px;}

/* Nav */
.site-nav{
  position:sticky; top:0; z-index:50;
  background:var(--sand-light);
  border-bottom:1px solid var(--line);
}
.site-nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-size:1.3rem; text-decoration:none; color:var(--deep-teal);
}
.brand .dot{
  width:34px; height:34px; border-radius:50%;
  background:var(--deep-teal);
  display:flex; align-items:center; justify-content:center;
}
.brand .dot svg{width:18px; height:18px;}
.nav-links{display:flex; align-items:center; gap:32px; list-style:none; margin:0; padding:0;}
.nav-links a{
  text-decoration:none; font-size:.95rem; font-weight:500; color:var(--ink);
  padding-bottom:4px; border-bottom:2px solid transparent;
}
.nav-links a:hover, .nav-links a.active{border-bottom-color:var(--coral); color:var(--deep-teal);}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--coral); color:var(--white);
  padding:12px 22px; border-radius:999px;
  text-decoration:none; font-weight:600; font-size:.92rem;
  border:none; cursor:pointer;
  transition:background .15s ease, transform .15s ease;
}
.btn:hover{background:var(--coral-dark); transform:translateY(-1px);}
.btn-ghost{
  background:transparent; color:var(--deep-teal); border:1.5px solid var(--deep-teal);
}
.btn-ghost:hover{background:var(--deep-teal); color:var(--white);}
.btn-green{
  background:var(--deep-teal); color:var(--white); border:1.5px solid rgba(255,253,248,.6);
}
.btn-green:hover{background:var(--white); color:var(--deep-teal); border-color:var(--deep-teal);}
.nav-toggle{display:none;}

/* Wave divider — signature element echoing the Cozy Colibri logo/brand */
.wave{
  width:100%; height:40px; display:block;
}
.wave path{fill:none; stroke:var(--sea-blue); stroke-width:3; stroke-linecap:round;}
.section-flip .wave path{stroke:var(--coral);}

/* Hero */
.hero{
  position:relative;
  min-height:78vh;
  display:flex; align-items:flex-end;
  background:linear-gradient(180deg, rgba(18,64,63,0.05) 0%, rgba(18,64,63,0.75) 100%), var(--deep-teal);
  background-size:cover; background-position:center;
  color:var(--white);
}
.hero-inner{padding:60px 24px 56px; max-width:var(--wrap); margin:0 auto; width:100%;}
.eyebrow{
  text-transform:uppercase; letter-spacing:.14em; font-size:.78rem;
  font-weight:600; color:var(--sand);
  display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow .line{width:28px; height:1.5px; background:var(--coral);}
.hero h1{color:var(--white); max-width:820px;}
.hero p.lead{color:rgba(255,253,248,0.88); max-width:560px; font-size:1.08rem;}
.hero-ctas{display:flex; gap:14px; margin-top:22px; flex-wrap:wrap;}

/* Sections */
section{padding:76px 0;}
.section-tight{padding:48px 0;}
.two-col{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;}
.two-col img{border-radius:var(--radius);}

/* Highlight strip */
.highlights{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px;
}
.highlight{text-align:center;}
.highlight .ic{
  width:44px; height:44px; margin:0 auto 10px; color:var(--sea-blue);
}
.highlight .ic svg{width:100%; height:100%;}
.highlight strong{display:block; font-family:'Fraunces',serif; color:var(--deep-teal); font-size:1.05rem;}
.highlight span{font-size:.85rem; color:var(--ink-soft);}

/* Amenity groups */
.amenity-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.amenity-group h3{color:var(--sea-blue); font-size:1rem; text-transform:uppercase; letter-spacing:.04em; margin-bottom:10px;}
.amenity-group ul{list-style:none; margin:0; padding:0;}
.amenity-group li{
  padding:7px 0; border-bottom:1px dashed var(--line); font-size:.94rem; color:var(--ink-soft);
}
.amenity-group li:last-child{border-bottom:none;}

/* Cards */
.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px;
}

/* Gallery grid */
.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.gallery-grid figure{margin:0; border-radius:var(--radius); overflow:hidden; cursor:pointer; position:relative;}
.gallery-grid img{width:100%; height:260px; object-fit:cover; transition:transform .35s ease;}
.gallery-grid figure:hover img{transform:scale(1.06);}
.gallery-grid figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding:10px 14px; font-size:.82rem; color:var(--white);
  background:linear-gradient(0deg, rgba(18,64,63,.85), transparent);
}
.lightbox{
  position:fixed; inset:0; background:rgba(18,36,31,.92);
  display:none; align-items:center; justify-content:center; z-index:100; padding:24px;
}
.lightbox.open{display:flex;}
.lightbox img{max-height:86vh; border-radius:8px;}
.lightbox-close{
  position:absolute; top:22px; right:28px; background:none; border:none;
  color:var(--white); font-size:1.8rem; cursor:pointer; line-height:1;
}

/* Reviews */
.review-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.review{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; display:flex; flex-direction:column; gap:14px;
}
.review .stars{color:var(--coral); letter-spacing:2px;}
.review p{color:var(--ink); font-size:.98rem; margin:0;}
.review footer{font-size:.85rem; color:var(--ink-soft); font-weight:600;}

/* Map / access */
.map-frame{
  border:0; width:100%; height:380px; border-radius:var(--radius);
}
.info-list{list-style:none; margin:0; padding:0;}
.info-list li{
  display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); font-size:.95rem;
}
.info-list li:last-child{border-bottom:none;}
.info-list .ic{width:20px; height:20px; flex:none; color:var(--coral); margin-top:2px;}
.info-list .ic svg{width:100%; height:100%;}

/* CTA band */
.cta-band{
  background:var(--deep-teal); color:var(--white); border-radius:var(--radius);
  padding:48px; text-align:center;
}
.cta-band h2{color:var(--white);}
.cta-band p{color:rgba(255,253,248,.85); max-width:520px; margin-left:auto; margin-right:auto;}

/* Footer */
footer.site-footer{
  background:var(--deep-teal); color:rgba(255,253,248,.75);
  padding:40px 0; margin-top:80px; font-size:.88rem;
}
footer.site-footer .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;}
footer.site-footer a{color:var(--sand); text-decoration:none;}

/* Blog */
.tag{
  display:inline-block; background:var(--sand); color:var(--teal-700);
  font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em;
  padding:4px 10px; border-radius:999px; margin-bottom:10px;
}
.blog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.post-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; text-decoration:none; color:inherit; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.post-card:hover{transform:translateY(-3px); box-shadow:0 12px 28px rgba(18,64,63,.1);}
.post-card img{width:100%; height:190px; object-fit:cover;}
.post-card .post-body{padding:20px;}
.post-card h3{margin:0 0 8px; font-size:1.1rem;}
.post-card p{font-size:.9rem; margin:0;}
.post-meta{font-size:.78rem; color:var(--ink-soft); margin-top:10px;}

.article-hero{
  height:44vh; min-height:280px; background-size:cover; background-position:center;
  border-radius:var(--radius); position:relative; margin-top:24px;
}
.article-hero .tag{position:absolute; left:24px; bottom:24px;}
.prose{max-width:680px; margin:0 auto;}
.prose p{font-size:1.05rem; color:var(--ink);}
.prose h2{margin-top:1.6em;}
.back-link{
  display:inline-flex; align-items:center; gap:6px; text-decoration:none;
  color:var(--sea-blue); font-weight:600; font-size:.9rem; margin-bottom:8px;
}

/* Responsive */
@media (max-width:860px){
  .nav-links{
    position:fixed; top:76px; left:0; right:0; background:var(--sand-light);
    flex-direction:column; align-items:flex-start; padding:20px 24px; gap:18px;
    border-bottom:1px solid var(--line);
    transform:translateY(-140%); transition:transform .25s ease; z-index:40;
  }
  .nav-links.open{transform:translateY(0);}
  .nav-toggle{
    display:flex; background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle svg{width:26px; height:26px; color:var(--deep-teal);}
  .two-col, .amenity-grid, .gallery-grid, .review-grid, .blog-grid{grid-template-columns:1fr;}
  .highlights{grid-template-columns:repeat(2,1fr);}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important;}
}
