:root{
  --bg:#faf6e4;
  --panel:#ffffff;
  --ink:#000000;
  --muted:#5c5850;
  --teal:#275d31;
  --teal-dark:#173a1e;
  --teal-soft:#e4ece2;
  --accent:#f46b27;
  --accent-soft:#fce3d1;
  --rose:#df9795;
  --rose-soft:#f6e2e1;
  --border:#ecdfc0;
  --radius:20px;
  --shadow:0 10px 30px rgba(39,93,49,0.10);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.brand{font-family:'Poppins', 'Inter', sans-serif;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.container{max-width:1140px;margin:0 auto;padding:0 24px;}
ul{list-style:none;}

/* ===== Header ===== */
header{
  position:sticky;top:0;z-index:100;
  background:rgba(250,246,228,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
nav{
  display:flex;align-items:center;justify-content:space-between;
  max-width:1140px;margin:0 auto;padding:18px 24px;
}
.brand{font-weight:700;font-size:1.2rem;color:var(--teal-dark);}
.brand span{color:var(--ink);}
.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{font-size:.94rem;font-weight:600;color:var(--muted);transition:color .2s;}
.nav-links a:hover{color:var(--accent);}
.nav-cta{
  background:var(--teal);color:#fff!important;padding:10px 22px;
  border-radius:30px;font-weight:600;font-size:.9rem;
}
.nav-cta:hover{background:var(--teal-dark);}
.menu-toggle{
  display:none;flex-direction:column;gap:5px;background:none;border:none;
  cursor:pointer;padding:6px;
}
.menu-toggle span{width:24px;height:2px;background:var(--teal-dark);border-radius:2px;}
.mobile-nav{
  display:none;flex-direction:column;gap:2px;
  background:var(--panel);border-top:1px solid var(--border);
  padding:10px 24px 18px;
}
.mobile-nav.open{display:flex;}
.mobile-nav a{padding:12px 0;font-weight:600;color:var(--ink);border-bottom:1px solid var(--border);}
.mobile-nav a:last-child{border-bottom:none;}

/* ===== Hero ===== */
.hero{
  position:relative;overflow:hidden;
  background:
    linear-gradient(120deg, rgba(15,35,18,0.6) 0%, rgba(39,93,49,0.5) 45%, rgba(15,35,18,0.45) 100%),
    url('coco-cover.jpg');
  background-size:cover;
  background-position:center;
  color:#fff;padding:90px 0 110px;
}
.hero-inner{position:relative;display:flex;align-items:center;gap:56px;flex-wrap:wrap;}
.hero-photo{
  width:340px;height:340px;border-radius:28px;flex-shrink:0;
  background:rgba(255,255,255,0.08);
  border:3px solid rgba(255,255,255,0.35);
  display:flex;align-items:center;justify-content:center;text-align:center;
  font-size:.85rem;color:rgba(255,255,255,0.7);padding:0;
  overflow:hidden;box-shadow:0 12px 32px rgba(0,0,0,0.25);
}
.hero-photo img{width:100%;height:100%;object-fit:cover;}
.hero-text{flex:1;min-width:300px;}
.eyebrow{
  display:inline-block;text-transform:uppercase;letter-spacing:1.6px;font-size:.78rem;
  background:rgba(244,107,39,0.22);color:#ffb488;padding:6px 14px;border-radius:20px;
  font-weight:700;margin-bottom:18px;
}
.hero-text h1{font-size:2.6rem;font-weight:800;margin-bottom:16px;letter-spacing:-.5px;}
.hero-text p{font-size:1.08rem;color:rgba(255,255,255,0.85);max-width:540px;margin-bottom:30px;}

/* smaller page-header hero, used on Blog and post pages */
.page-hero{padding:60px 0 70px;}
.page-hero h1{font-size:2.2rem;}
.page-hero p{font-size:1.02rem;}

.btn{
  display:inline-block;padding:14px 30px;border-radius:30px;
  font-weight:700;font-size:.95rem;transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{background:var(--accent);color:#fff;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(244,107,39,0.35);}
.btn-outline{border:2px solid rgba(255,255,255,0.55);color:#fff;margin-left:12px;}
.btn-outline:hover{background:rgba(255,255,255,0.12);}
.btn-dark{background:var(--teal);color:#fff;}
.btn-dark:hover{background:var(--teal-dark);transform:translateY(-2px);}

/* ===== Tagline banner ===== */
.tagline-banner{background:var(--teal-dark);padding:56px 0;text-align:center;}
.tagline-inner{display:flex;flex-direction:column;align-items:center;}
.tagline-eyebrow{
  display:inline-block;text-transform:uppercase;letter-spacing:1.6px;font-size:.78rem;
  background:rgba(244,107,39,0.22);color:#ffb488;padding:6px 14px;border-radius:20px;
  font-weight:700;margin-bottom:18px;
}
.tagline-headline{font-size:2.1rem;font-weight:800;color:#fff;letter-spacing:-.5px;margin-bottom:10px;}
.tagline-highlight{
  background:var(--accent);color:#fff;padding:2px 14px;border-radius:10px;
  display:inline-block;
}
.tagline-sub{font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:24px;}
.trust-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-bottom:28px;}
.trust-pill{
  font-size:.85rem;font-weight:600;color:#fff;background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.3);padding:7px 16px;border-radius:20px;
}

/* ===== Sections ===== */
section{padding:80px 0;}
.section-head{max-width:640px;margin-bottom:44px;}
.kicker{
  text-transform:uppercase;letter-spacing:1.6px;font-size:.78rem;font-weight:700;
  color:var(--accent);margin-bottom:10px;
}
.section-title{font-size:1.9rem;font-weight:800;color:var(--teal-dark);margin-bottom:10px;}
.section-sub{color:var(--muted);font-size:1.02rem;}
.alt-bg{background:var(--panel);}

/* fade-in on scroll */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

/* ===== About ===== */
.about-grid{display:flex;gap:48px;flex-wrap:wrap;align-items:flex-start;}
.about-text{flex:2;min-width:280px;font-size:1.02rem;}
.about-text p{margin-bottom:16px;}
.credential-box{
  flex:1;min-width:250px;background:var(--teal-soft);border-radius:var(--radius);
  padding:26px;border-left:4px solid var(--rose);
}
.credential-box h3{font-size:1rem;color:var(--teal-dark);margin-bottom:10px;}
.credential-box p{font-size:.92rem;color:var(--muted);margin-bottom:16px;}
.credential-box a{color:var(--teal);font-weight:700;font-size:.9rem;}
.credential-logo{max-width:180px;margin-bottom:16px;}

/* ===== Services ===== */
.services-carousel{display:flex;align-items:center;gap:14px;}
.services-track{
  display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  flex:1;min-width:0;padding:4px 4px 18px;-webkit-overflow-scrolling:touch;
}
.services-track::-webkit-scrollbar{height:6px;}
.services-track::-webkit-scrollbar-track{background:transparent;}
.services-track::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}
.service-card{
  background:var(--panel);border-radius:var(--radius);padding:28px;
  box-shadow:var(--shadow);transition:transform .2s ease;
  flex:0 0 260px;scroll-snap-align:start;
}
.service-card:hover{transform:translateY(-6px);}
.service-icon{
  width:46px;height:46px;border-radius:12px;background:var(--accent-soft);
  display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:16px;
}
.service-card h3{font-size:1.05rem;margin-bottom:8px;color:var(--teal-dark);}
.service-card p{font-size:.92rem;color:var(--muted);margin-bottom:14px;}
.service-link{font-size:.85rem;font-weight:700;color:var(--teal);}
.service-link:hover{color:var(--teal-dark);text-decoration:underline;}
.carousel-nav{
  flex-shrink:0;width:42px;height:42px;border-radius:50%;
  background:var(--panel);box-shadow:var(--shadow);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;font-size:1.4rem;line-height:1;
  color:var(--teal-dark);cursor:pointer;transition:background .2s ease,color .2s ease;
}
.carousel-nav:hover{background:var(--teal);color:#fff;}

/* ===== Listings ===== */
.listings-carousel{display:flex;align-items:center;gap:14px;}
.listings-track{
  display:flex;gap:26px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  flex:1;min-width:0;padding:4px 4px 18px;-webkit-overflow-scrolling:touch;
}
.listings-track::-webkit-scrollbar{height:6px;}
.listings-track::-webkit-scrollbar-track{background:transparent;}
.listings-track::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}
.listing-card{
  background:var(--panel);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);transition:transform .2s ease;
  flex:0 0 320px;scroll-snap-align:start;
}
.listing-card:hover{transform:translateY(-6px);}
.listing-photo{
  aspect-ratio:4/3;background:var(--teal-soft);overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  color:var(--teal);font-size:.85rem;text-align:center;
  border-bottom:1px solid var(--border);
  position:relative;cursor:pointer;text-decoration:none;
}
.listing-photo:not(:has(img)){padding:16px;}
.listing-photo img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease;}
.listing-photo:hover img{transform:scale(1.04);}
.gallery-badge{
  position:absolute;bottom:10px;right:10px;background:rgba(0,0,0,.62);color:#fff;
  font-size:.72rem;font-weight:700;padding:4px 10px;border-radius:20px;letter-spacing:.2px;
}
.listing-thumbs{
  display:grid;grid-template-columns:repeat(6,1fr);gap:4px;padding:4px;background:var(--panel);
}
.listing-thumb{
  aspect-ratio:1/1;overflow:hidden;border-radius:6px;cursor:pointer;
  border:1px solid var(--border);
}
.listing-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .2s ease;}
.listing-thumb:hover img{transform:scale(1.08);}
.listing-body{padding:22px;}
.listing-status{
  display:inline-block;font-size:.72rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.6px;color:var(--accent);background:var(--accent-soft);
  padding:4px 10px;border-radius:20px;margin-bottom:10px;
}
.listing-price{font-size:1.3rem;font-weight:800;color:var(--teal-dark);margin-bottom:4px;}
.listing-loc{font-size:.9rem;color:var(--muted);margin-bottom:12px;}
.listing-specs{display:flex;gap:14px;font-size:.85rem;color:var(--muted);margin-bottom:16px;}
.listing-desc{font-size:.9rem;color:var(--ink);line-height:1.5;margin-bottom:16px;}
.listing-btn{
  display:inline-block;width:100%;text-align:center;padding:11px;border-radius:12px;
  background:var(--teal-soft);color:var(--teal-dark);font-weight:700;font-size:.88rem;
}
.listing-btn:hover{background:var(--teal);color:#fff;}
.listings-note{
  margin-top:28px;font-size:.88rem;color:var(--muted);background:var(--accent-soft);
  border-radius:14px;padding:16px 20px;
}

/* ===== Photography ===== */
#photography .section-head{margin-bottom:26px;}
.photo-wrap{max-width:760px;}
.photo-text p{margin-bottom:10px;color:var(--ink);font-size:1rem;line-height:1.5;}

.photo-cta-row{margin-top:4px;}
.photo-carousel{display:flex;align-items:center;gap:12px;margin-top:22px;}
.photo-track{
  display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  flex:1;min-width:0;padding:4px 4px 14px;-webkit-overflow-scrolling:touch;
}
.photo-track::-webkit-scrollbar{height:6px;}
.photo-track::-webkit-scrollbar-track{background:transparent;}
.photo-track::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}
.photo-card{
  flex:0 0 260px;scroll-snap-align:start;aspect-ratio:4/3;border-radius:14px;
  overflow:hidden;box-shadow:var(--shadow);
}
.photo-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
.photo-card:hover img{transform:scale(1.05);}

.photo-cta-row{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.instagram-link{
  display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:.92rem;
  color:var(--teal-dark);
}
.instagram-icon{
  width:32px;height:32px;border-radius:9px;flex-shrink:0;
  background:linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7);
  color:#fff;display:flex;align-items:center;justify-content:center;
}
.instagram-link:hover{color:var(--accent);}

.photo-pricing{margin-top:32px;}
.pricing-title{font-size:1.2rem;font-weight:800;color:var(--teal-dark);margin-bottom:16px;}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px;}
.pricing-card{
  background:var(--panel);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow);
}
.pricing-card-icon{
  width:42px;height:42px;border-radius:12px;background:var(--teal-soft);
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:14px;
}
.pricing-card h4{font-size:.98rem;color:var(--teal-dark);margin-bottom:14px;}
.price-list{display:flex;flex-direction:column;gap:0;}
.price-list li{
  display:flex;justify-content:space-between;gap:12px;
  padding:10px 0;border-bottom:1px solid var(--border);
  font-size:.86rem;color:var(--ink);
}
.price-list li:last-child{border-bottom:none;padding-bottom:0;}
.price-list li span:last-child{font-weight:700;color:var(--teal-dark);white-space:nowrap;}
.pricing-note{margin-top:22px;font-size:.85rem;color:var(--muted);}

/* ===== Areas ===== */
.area-tags{display:flex;flex-wrap:wrap;gap:12px;}
.area-tag{
  background:var(--panel);padding:10px 20px;border-radius:30px;
  font-size:.9rem;font-weight:600;color:var(--teal-dark);box-shadow:var(--shadow);
  text-decoration:none;display:inline-flex;align-items:center;gap:6px;
  border:1px solid transparent;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
}
.area-tag:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(39,93,49,0.16);}
.area-tag-home{
  background:var(--teal);color:#fff;font-size:.98rem;padding:12px 24px;
}
.area-tag-home:hover{background:var(--teal-dark);color:#fff;}

/* ===== Reviews ===== */
.review-placeholder{
  border:1px dashed var(--border);border-radius:var(--radius);padding:36px;
  text-align:center;color:var(--muted);background:var(--panel);
}
.review-placeholder a{color:var(--teal);font-weight:700;}

/* ===== Blog ===== */
.blog-carousel{display:flex;align-items:center;gap:14px;}
.blog-track{
  display:flex;gap:26px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  flex:1;min-width:0;padding:4px 4px 18px;-webkit-overflow-scrolling:touch;
}
.blog-track::-webkit-scrollbar{height:6px;}
.blog-track::-webkit-scrollbar-track{background:transparent;}
.blog-track::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px;}
.blog-card{
  background:var(--panel);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);transition:transform .2s ease;display:flex;flex-direction:column;
  flex:0 0 320px;scroll-snap-align:start;
}
.blog-card:hover{transform:translateY(-6px);}
.blog-photo{
  aspect-ratio:16/10;background:var(--teal-soft);overflow:hidden;
  border-bottom:1px solid var(--border);
}
.blog-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease;}
.blog-card:hover .blog-photo img{transform:scale(1.05);}
.blog-body{padding:22px;flex:1;display:flex;flex-direction:column;}
.blog-date{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.6px;color:var(--accent);margin-bottom:8px;}
.blog-card h3{font-size:1.1rem;color:var(--teal-dark);margin-bottom:10px;}
.blog-card p{font-size:.92rem;color:var(--muted);margin-bottom:18px;flex:1;}
.blog-link{font-weight:700;font-size:.88rem;color:var(--teal);border-bottom:2px solid var(--accent);align-self:flex-start;padding-bottom:2px;}
.blog-note{
  margin-top:28px;font-size:.88rem;color:var(--muted);background:var(--accent-soft);
  border-radius:14px;padding:16px 20px;
}

/* ===== Single blog post ===== */
.post-article{max-width:760px;margin:0 auto;}
.post-meta{font-size:.85rem;color:var(--muted);margin-bottom:18px;}
.post-article h1{font-size:2.1rem;color:var(--teal-dark);margin-bottom:18px;}
.post-cover{
  aspect-ratio:16/9;border-radius:var(--radius);background:var(--teal-soft);
  overflow:hidden;box-shadow:var(--shadow);margin-bottom:36px;
}
.post-cover img{width:100%;height:100%;object-fit:cover;display:block;}
.post-body p{margin-bottom:20px;font-size:1.03rem;}
.post-body h2{font-size:1.4rem;color:var(--teal-dark);margin:32px 0 14px;}
.post-body ul{list-style:disc;padding-left:22px;margin-bottom:20px;}
.post-body li{margin-bottom:8px;}
.post-cta{
  margin-top:40px;padding:28px;border-radius:var(--radius);background:var(--teal-soft);
  text-align:center;
}
.post-cta p{margin-bottom:16px;color:var(--teal-dark);font-weight:600;}
.back-link{display:inline-block;margin-bottom:30px;font-weight:700;color:var(--teal);font-size:.9rem;}

/* ===== Listing detail page ===== */
.post-article:has(.listing-card){max-width:980px;}
.listing-detail-specs{margin-bottom:28px;}
.listing-detail-price{font-size:1.8rem;font-weight:800;color:var(--teal-dark);}
.listing-detail-loc{font-size:1rem;color:var(--muted);margin-bottom:12px;}
.post-article .listing-card{margin-bottom:36px;}
.listing-thumbs.full-grid{grid-template-columns:repeat(6,1fr);}

/* ===== Contact ===== */
.contact{
  background:radial-gradient(circle at 80% 20%, #2f6b3b 0%, var(--teal-dark) 60%);
  color:#fff;text-align:center;
}
.contact .section-head{margin-left:auto;margin-right:auto;}
.contact .section-title,.contact .kicker{color:#fff;}
.contact .section-sub{color:rgba(255,255,255,0.8);}
.contact-buttons{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-top:10px;}
.social-links{margin-top:30px;display:flex;justify-content:center;gap:24px;font-size:.95rem;}
.social-links a{font-weight:700;border-bottom:2px solid var(--accent);padding-bottom:3px;}

.contact-form-wrap{
  background:var(--panel);border-radius:var(--radius);padding:32px;
  max-width:560px;margin:40px auto 0;text-align:left;box-shadow:var(--shadow);
}
.contact-form-label{
  font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.6px;
  color:var(--accent);margin-bottom:16px;
}
.contact-form{display:flex;flex-direction:column;gap:14px;}
.contact-form .form-row{display:flex;gap:14px;flex-wrap:wrap;}
.contact-form .form-row input{flex:1;min-width:200px;}
.contact-form input,.contact-form textarea{
  width:100%;padding:12px 16px;border-radius:12px;border:1px solid var(--border);
  font-family:inherit;font-size:.95rem;color:var(--ink);background:var(--bg);
  transition:border-color .15s ease;
}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--accent);}
.contact-form textarea{resize:vertical;}
.contact-form button{align-self:flex-start;border:none;cursor:pointer;}
.contact-form-note{font-size:.8rem;color:var(--muted);margin-top:-4px;}

footer{background:var(--teal-dark);color:rgba(255,255,255,0.55);text-align:center;padding:24px 0;font-size:.85rem;}
.footer-brand{display:flex;flex-direction:column;align-items:center;gap:10px;margin-bottom:14px;}
.footer-brand .footer-logo-wrap{
  background:#fff;border-radius:12px;padding:8px 16px;
  display:inline-flex;align-items:center;
}
.footer-brand img{height:32px;width:auto;display:block;}
.footer-brand span{font-size:.8rem;color:rgba(255,255,255,0.55);}

/* ===== Lightbox ===== */
.lightbox{
  display:none;position:fixed;inset:0;background:rgba(10,15,10,.92);
  z-index:999;align-items:center;justify-content:center;
}
.lightbox.open{display:flex;}
.lightbox-stage{max-width:90vw;max-height:88vh;display:flex;flex-direction:column;align-items:center;gap:12px;}
.lightbox-stage img{max-width:90vw;max-height:78vh;object-fit:contain;border-radius:10px;box-shadow:0 20px 60px rgba(0,0,0,.5);}
.lightbox-caption{color:rgba(255,255,255,.85);font-size:.9rem;text-align:center;}
.lightbox-close{
  position:absolute;top:18px;right:24px;background:none;border:none;color:#fff;
  font-size:2.2rem;line-height:1;cursor:pointer;padding:6px 10px;
}
.lightbox-close:hover{color:var(--accent);}
.lightbox-nav{
  position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);
  border:none;color:#fff;font-size:2.4rem;line-height:1;width:52px;height:52px;
  border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;
}
.lightbox-nav:hover{background:var(--accent);}
.lightbox-prev{left:16px;}
.lightbox-next{right:16px;}

@media (max-width:760px){
  .nav-links{display:none;}
  .menu-toggle{display:flex;}
  .hero-inner{flex-direction:column;text-align:center;}
  .hero-photo{width:260px;height:260px;}
  .hero-text p{margin-left:auto;margin-right:auto;}
  .btn-outline{margin-left:0;margin-top:12px;}
  .photo-card{flex-basis:210px;}
  .listing-thumbs{grid-template-columns:repeat(4,1fr);}
  .listing-thumbs.full-grid{grid-template-columns:repeat(3,1fr);}
  .lightbox-nav{width:42px;height:42px;font-size:1.8rem;}
  .lightbox-close{top:10px;right:14px;font-size:1.8rem;}
  .service-card{flex-basis:230px;}
  .listing-card{flex-basis:270px;}
  .blog-card{flex-basis:270px;}
  .carousel-nav{width:34px;height:34px;font-size:1.2rem;}
}
