/* ============================================================
   THE COVE HOUSE — Design System
   Palette:  plaster #F6F0E4 · ink #211D17 · pool #1C7A73
             clay #C1552E · sage #7C8B5F · gold #D9A441
   Type:     Fraunces (display) / Archivo (body + ui)
   Motif:    the Palm Springs arch — doorways, breeze-block,
             kidney-pool curves. Used for crops, buttons, dividers.
   ============================================================ */

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

:root{
  --plaster:#F6F0E4;
  --plaster-dark:#EBE1CC;
  --ink:#211D17;
  --ink-soft:#4A4239;
  --pool:#006f82;
  --pool-dark:#123F3B;
  --pool-light:#4FA79E;
  --clay:#C1552E;
  --clay-dark:#8F3D1F;
  --sage:#7C8B5F;
  --gold:#D9A441;
  --line: rgba(33,29,23,0.12);
  --shadow: 0 24px 60px -30px rgba(18,20,18,0.45);

  --font-display:'Fraunces', serif;
  --font-body:'Archivo', sans-serif;

  --arch-lg: 480px 480px 0 0;
  --arch-md: 280px 280px 0 0;
  --arch-sm: 120px 120px 0 0;

  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--plaster);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; font-weight:600; line-height:1.05; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.container{ max-width:var(--container); margin:0 auto; padding:0 32px; }

:focus-visible{ outline:3px solid var(--clay); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family:var(--font-body);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--clay);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--clay);
  display:inline-block;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 34px;
  border-radius:100px;
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.03em;
  border:1.5px solid transparent;
  text-shadow: none !important;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space:nowrap;
}
.btn-primary{ background:var(--clay); color:var(--plaster); }
.btn-primary:hover{ background:var(--clay-dark); transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(193,85,46,.55); }
.btn-pool{ background:var(--pool); color:#ffffff; border-color:var(--pool); }
.btn-pool:hover{ background:var(--pool-dark); color:#ffffff; transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(0,111,130,.55); }
.btn-ghost{ background:transparent; color:inherit; border-color:currentColor; }
.btn-ghost:hover{ background:var(--ink); color:var(--plaster); border-color:var(--ink); transform:translateY(-2px); }
.btn-on-dark{ background:var(--plaster); color:var(--ink); border-color:var(--plaster); }
.btn-on-dark:hover{ transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.3); }
.btn-block{ width:100%; }

site-header { display: contents; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position:sticky; top:0; left:0; right:0; z-index:1000;
  padding:22px 0;
  background:var(--plaster);
  border-bottom:1px solid rgba(246,240,228,0.5); /* or var(--line) */
  transition:padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; }
.site-header.is-scrolled{
  padding:12px 0;
  background:rgba(246,240,228,0.95);
  backdrop-filter: blur(10px);
  box-shadow:0 8px 30px -20px rgba(0,0,0,.15);
}

.logo{
  display:flex; align-items:center; gap:12px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:19px;
  letter-spacing:0.02em;
  color:var(--ink);
}
.logo-mark{
  width:34px; height:34px;
  border:2px solid currentColor;
  border-radius:34px 34px 4px 4px;
  flex-shrink:0;
}
.logo small{
  display:block;
  font-family:var(--font-body);
  font-weight:500;
  font-size:10px;
  letter-spacing:0.25em;
  text-transform:uppercase;
  opacity:.75;
}

.main-nav{ display:flex; align-items:center; gap:8px; }
.main-nav ul{ display:flex; gap:2px; margin-right:18px; }
.main-nav ul a{
  font-size:13.5px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  padding:10px 16px;
  border-radius:100px;
  color:var(--ink);
  transition:background .25s, color .25s;
}
.main-nav ul a:hover, .main-nav ul a[aria-current="page"]{
  background:transparent;
  color:var(--pool);
}


.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:100px;
  border:1.5px solid currentColor;
  background:transparent;
  color:var(--ink);
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; display:block; width:18px; height:2px; background:currentColor;
  position:relative;
}
.nav-toggle{ flex-direction:column; gap:4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
  padding:80px 0 90px;
  overflow:hidden;
  color:#ffffff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.85);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,10,0.25) 0%, rgba(10,12,10,0.7) 100%);
  z-index: 1;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(246,240,228,0.10) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  opacity:.35;
  pointer-events:none;
}
.hero-sun{
  position:absolute;
  right:-8%; top:14%;
  width:520px; height:520px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold), var(--clay) 55%, transparent 78%);
  opacity:.55;
  filter:blur(2px);
}
.hero-mountains{
  position:absolute; left:0; right:0; bottom:-2px;
  height:34vh; min-height:220px;
}
.hero .container{ position:relative; z-index:2; width:100%; }
.hero-inner{
  max-width:1060px;
}
.hero-inner .eyebrow{ color:#ffffff; }
.hero-inner .eyebrow::before{ background:#ffffff; }
.hero h1{
  font-size:clamp(42px, 6.4vw, 78px);
  margin:22px 0 24px;
  letter-spacing:-0.01em;
}
.hero h1 em{ font-style:italic; color:#ffffff; font-weight:400; }
.hero-sub{
  font-size:clamp(16px,2vw,19px);
  line-height:1.65;
  max-width:560px;
  color:#ffffff;
  margin-bottom:38px;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }

.hero-stats{
  display:flex; flex-wrap:wrap;
  gap:0;
  border-top:1px solid rgba(246,240,228,0.22);
  padding-top:26px;
}
.hero-stats div{
  padding-right:36px; margin-right:36px;
  border-right:1px solid rgba(246,240,228,0.22);
}
.hero-stats div:last-child{ border-right:none; margin-right:0; padding-right:0; }
.hero-stats strong{
  display:block; font-family:var(--font-display); font-size:22px; font-weight:600;
}
.hero-stats span{ font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:#ffffff; }

/* smaller inner-page hero */
.hero.hero-compact{ min-height:62vh; padding:150px 0 80px; }
.hero.hero-compact h1{ font-size:clamp(36px,5.2vw,58px); }

/* ============================================================
   ART / PHOTO BLOCKS  (placeholders for client photography)
   ============================================================ */
.art{
  position:relative;
  border-radius:6px;
  overflow:hidden;
  aspect-ratio: 4/5;
  isolation:isolate;
}
.art::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,12,10,0.85) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.art::after{
  content: attr(data-caption);
  position:absolute; left:16px; bottom:14px;
  font-size:13.5px; letter-spacing:.14em; text-transform:uppercase;
  color:#ffffff; font-weight:600;
  z-index: 2;
  opacity:1;
}
.art.wide{ aspect-ratio: 15/15; }
.art.square{ aspect-ratio: 1/1; }
.art.arch{ border-radius: var(--arch-lg); }
.art.arch-sm{ border-radius: var(--arch-sm); }



/* ============================================================
   SECTIONS
   ============================================================ */
section{ padding:120px 0; position:relative; }
.section-tight{ padding:80px 0; }
.section-alt{ background:var(--plaster-dark); }
.section-dark{ background:var(--ink); color:var(--plaster); }
.section-pool{ background:linear-gradient(155deg,var(--pool-dark),var(--pool)); color:var(--plaster); }

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom:64px;
}
.section-head h2{ font-size:clamp(30px,3.6vw,46px); margin-top:16px; max-width:620px; }
.section-head p{ max-width:380px; font-size:15.5px; line-height:1.7; color:var(--ink-soft); padding-bottom:6px; }
.section-dark .section-head p, .section-pool .section-head p{ color:rgba(246,240,228,0.75); }
.section-head.center{ flex-direction:column; align-items:center; text-align:center; }
.section-head.center h2{ max-width:680px; }

/* two-column feature row (image + text), alternating */
.feature-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:80px;
  align-items:center;
  padding:64px 0;
  border-top:1px solid var(--line);
}
.feature-row:first-of-type{ border-top:none; padding-top:0; }
.feature-row:last-of-type{ padding-bottom:0; }
.feature-row.reverse .feature-media{ order:2; }
.feature-row.reverse .feature-copy{ order:1; }
.feature-copy h3{ font-size:clamp(24px,2.6vw,32px); margin:14px 0 18px; }
.feature-copy p{ line-height:1.75; color:var(--ink-soft); font-size:15.5px; margin-bottom:14px; }
.feature-copy p:last-of-type{ margin-bottom:0; }

/* highlight / amenity grid */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }

.card{
  background:var(--plaster);
  border:1px solid var(--line);
  border-radius:6px;
  padding:36px 30px;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.section-alt .card{ background:#fff; }
.card-icon{
  width:52px; height:52px;
  border-radius:52px 52px 8px 8px;
  background:var(--pool);
  color:var(--plaster);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.card-icon svg{ width:24px; height:24px; }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ font-size:14.5px; line-height:1.65; color:var(--ink-soft); }

/* amenity list */
.amenity-cols{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.amenity-cols h3{ font-size:20px; text-transform:uppercase; letter-spacing:.12em; color:#d9a441; margin-bottom:22px; }
.amenity-list li{
  display:flex; align-items:center; gap:14px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  font-size:18px;
}
.amenity-list li svg{ width:36px; height:36px; color:#ffffff; flex-shrink:0; }

/* bedroom cards */
.room-card{
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  background:#fff;
}
.room-card .art{ border-radius:0; aspect-ratio:5/4; }
.room-card-body{ padding:28px 26px; }
.room-card-body .eyebrow{ margin-bottom:10px; }
.room-card-body h3{ font-size:21px; margin-bottom:8px; }
.room-card-body p{ font-size:14px; color:var(--ink-soft); line-height:1.6; margin-bottom:14px; }
.room-tags{ display:flex; gap:8px; flex-wrap:wrap; }
.room-tags span{
  font-size:11.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  padding:6px 12px; border-radius:100px;
  background:var(--plaster-dark); color:var(--ink);
}

/* stat / detail strip */
.detail-grid{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:6px; overflow:hidden; background:#fff; }
.detail-cell{ padding:30px 26px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.detail-cell:nth-child(4n){ border-right:none; }
.detail-cell span{ display:block; font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:8px; }
.detail-cell strong{ font-family:var(--font-display); font-size:22px; font-weight:600; }

/* rules / good-to-know list */
.rules-list{ display:grid; grid-template-columns:1fr 1fr; gap:0 48px; }
.rules-list li{
  padding:16px 0;
  border-bottom:1px solid var(--line);
  display:flex; gap:14px; align-items:flex-start;
  font-size:15px; line-height:1.55; color:var(--ink-soft);
}
.rules-list li::before{
  content:none;
}
.rules-list li svg{
  width:24px; height:24px; color:var(--clay); flex-shrink:0;
}

/* distance / explore table */
.dist-table{ width:100%; border-collapse:collapse; }
.dist-table td{ padding:18px 4px; border-bottom:1px solid var(--line); font-size:15.5px; }
.dist-table td:last-child{ text-align:right; font-weight:600; color:var(--clay); white-space:nowrap; }

/* reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: var(--ink);
}
.review-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.review-card cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* final CTA band */
.cta-band{
  border-radius:6px;
  padding:80px 60px;
  text-align:center;
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../images/photo-3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color:#ffffff;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content: none;
}
.cta-band > *{ position:relative; z-index:1; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.85); }
.cta-band h2{ font-size:clamp(28px,4vw,44px); margin:16px 0 30px; max-width:640px; margin-left:auto; margin-right:auto; }
.cta-band .eyebrow { color: #ffffff !important; font-weight: 700; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.85); }
.cta-band .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-band .arch-divider { display: none !important; }
.arch-divider{
  width:64px; height:64px;
  border:2px solid var(--clay);
  border-radius:64px 64px 6px 6px;
  margin:0 auto 26px;
}
.arch-divider.on-dark{ border-color:var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--ink);
  color:rgba(246,240,228,0.82);
  padding:90px 0 34px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap:50px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(246,240,228,0.14);
}
.footer-brand .logo{ color:var(--plaster); margin-bottom:18px; }
.footer-brand p{ font-size:14.5px; line-height:1.7; color:rgba(246,240,228,0.62); max-width:280px; }
.footer-col h4{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; font-family:var(--font-body); font-weight:700; }
.footer-col li{ margin-bottom:12px; font-size:14.5px; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding-top:30px;
  font-size:12.5px; color:rgba(246,240,228,0.45);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:48px; }
.gallery-filters button{
  padding:10px 20px; border-radius:100px; border:1.5px solid var(--line);
  background:transparent; font-size:13px; font-weight:600; letter-spacing:.03em;
  transition:all .25s;
}
.gallery-filters button.active, .gallery-filters button:hover{
  background:var(--ink); color:var(--plaster); border-color:var(--ink);
}
.gallery-grid{
  columns: 3 220px; column-gap:22px;
}
.gallery-grid .art{ margin-bottom:22px; break-inside:avoid; cursor:pointer; width:100%; }
.gallery-grid .art:nth-child(4n+1){ aspect-ratio:3/4; }
.gallery-grid .art:nth-child(4n+2){ aspect-ratio:1/1; }
.gallery-grid .art:nth-child(4n+3){ aspect-ratio:4/5; }
.gallery-grid .art:nth-child(4n){ aspect-ratio:4/3; }

.lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(15,13,10,0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .35s;
  padding:40px;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox-inner{ width:min(760px,90vw); aspect-ratio:4/3; border-radius:8px; overflow:hidden; position:relative; }
.lightbox-close{
  position:absolute; top:28px; right:28px; z-index:2001;
  width:46px; height:46px; border-radius:50%;
  border:1.5px solid rgba(246,240,228,0.5); background:transparent; color:var(--plaster);
  font-size:20px;
}
.lightbox-close:hover{ background:var(--plaster); color:var(--ink); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap{ display:grid; grid-template-columns: 1fr 0.85fr; gap:70px; align-items:start; }
.form-field{ margin-bottom:22px; }
.form-field label{ display:block; font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:9px; color:var(--ink-soft); }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:15px 16px; border:1.5px solid var(--line); border-radius:4px;
  font-family:var(--font-body); font-size:15px; background:#fff; color:var(--ink);
  transition:border-color .25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ border-color:var(--pool); outline:none; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.contact-side{
  background:var(--ink); color:var(--plaster);
  border-radius:6px; padding:44px 38px;
}
.contact-side h3{ font-size:22px; margin-bottom:18px; }
.contact-side p{ font-size:14.5px; line-height:1.7; color:rgba(246,240,228,0.72); margin-bottom:26px; }
.contact-info-item{ display:flex; gap:14px; padding:16px 0; border-top:1px solid rgba(246,240,228,0.15); }
.contact-info-item svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.contact-info-item strong{ display:block; font-size:14px; margin-bottom:3px; }
.contact-info-item span{ font-size:13.5px; color:rgba(246,240,228,0.65); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.12s; }
.reveal-delay-2{ transition-delay:.24s; }
.reveal-delay-3{ transition-delay:.36s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .feature-row{ gap:48px; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:44px; }
  .contact-wrap{ grid-template-columns:1fr; }
  .detail-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ columns:2 200px; }
}
@media (max-width:840px){
  .main-nav ul, .main-nav .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .feature-row, .reviews-grid{ grid-template-columns:1fr; }
  .feature-row.reverse .feature-media, .feature-row.reverse .feature-copy{ order:0; }
  .amenity-cols{ grid-template-columns:1fr; gap:30px; }
  .rules-list{ grid-template-columns:1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .hero-stats{ gap:18px 0; }
  .hero-stats div{ padding-right:22px; margin-right:22px; }
}
@media (max-width:640px){
  .container{ padding:0 22px; }
  section{ padding:80px 0; }
  .grid-4, .grid-3, .grid-2, .reviews-grid { grid-template-columns:1fr; }
  .detail-grid{ grid-template-columns:1fr 1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .gallery-grid{ columns:1 100%; }
  .cta-band{ padding:56px 26px; }
  .hero{ padding-top:120px; }
}

/* mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; z-index:1500;
  background:var(--ink);
  color:var(--plaster);
  display:flex; flex-direction:column; justify-content:center; gap:8px;
  padding:40px;
  transform:translateY(-100%);
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav > a:not(.btn){
  font-family:var(--font-display); font-size:34px; font-weight:500;
  padding:12px 0; border-bottom:1px solid rgba(246,240,228,0.14);
}
.mobile-nav .btn{ margin-top:24px; }
.mobile-close{
  position:absolute; top:26px; right:26px;
  width:44px; height:44px; border-radius:50%; border:1.5px solid rgba(246,240,228,0.4);
  background:transparent; color:var(--plaster); font-size:18px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.whatsapp-float svg {
  width: 38px;
  height: 38px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}
