/* ==========================================================================
   ABC Wellness - abcwellness.space
   Style: Luxury Retreat (#7) | Architecture: Tab-Based Sections (#5)
   Generated: 2026-02-14
   ========================================================================== */

/* ---------- CSS Reset & Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Lato','Raleway',sans-serif;color:#1A1A1A;background:#FFFFFF;line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .3s}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:'Cormorant Garamond','Playfair Display',serif;font-weight:600;line-height:1.25;color:#2C3E50}

/* ---------- Color Variables ---------- */
:root{
  --primary:#2C3E50;
  --secondary:#8B7355;
  --accent:#D4AF37;
  --gold:#D4AF37;
  --champagne:#8B7355;
  --dark:#1A1A1A;
  --text:#1A1A1A;
  --bg:#FAF8F5;
  --white:#FFFFFF;
  --light:#FAF8F5;
  --border:rgba(212,175,55,.25);
  --shadow:0 4px 24px rgba(44,62,80,.08);
  --shadow-lg:0 12px 48px rgba(44,62,80,.12);
  --radius:4px;
  --transition:all .3s ease;
}

/* ---------- Typography ---------- */
h1{font-size:clamp(2rem,4.5vw,3.2rem);letter-spacing:-.02em}
h2{font-size:clamp(1.6rem,3.5vw,2.4rem);letter-spacing:-.01em}
h3{font-size:clamp(1.2rem,2.5vw,1.6rem)}
h4{font-size:1.15rem}
p{margin-bottom:1rem;font-weight:400}
.text-gold{color:var(--accent)}
.text-champagne{color:var(--champagne)}

/* ---------- Utility ---------- */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.section{padding:5rem 0}
.section--light{background:var(--bg)}
.section--dark{background:var(--primary);color:var(--white)}
.section--dark h2,.section--dark h3{color:var(--white)}
.gold-line{width:60px;height:3px;background:var(--accent);margin:1rem 0 1.5rem}
.gold-line--center{margin-left:auto;margin-right:auto}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-nav{position:absolute;top:-100%;left:1rem;background:var(--accent);color:var(--primary);padding:.75rem 1.5rem;z-index:9999;border-radius:0 0 var(--radius) var(--radius);font-weight:700}
.skip-nav:focus{top:0}

/* ---------- Buttons ---------- */
.btn{display:inline-block;padding:.85rem 2rem;font-family:'Lato',sans-serif;font-size:.95rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;border-radius:var(--radius);border:2px solid transparent;cursor:pointer;transition:var(--transition)}
.btn--primary{background:var(--accent);color:var(--primary);border-color:var(--accent)}
.btn--primary:hover{background:#c9a02e;border-color:#c9a02e}
.btn--outline{background:transparent;color:var(--accent);border-color:var(--accent)}
.btn--outline:hover{background:var(--accent);color:var(--primary)}
.btn--white{background:var(--white);color:var(--primary);border-color:var(--white)}
.btn--white:hover{background:transparent;color:var(--white)}
.btn--dark{background:var(--primary);color:var(--white);border-color:var(--primary)}
.btn--dark:hover{background:#1a2a3a;border-color:#1a2a3a}

/* ---------- Header ---------- */
.header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:rgba(255,255,255,.97);backdrop-filter:blur(8px);border-bottom:1px solid var(--border);transition:var(--transition)}
.header.scrolled{box-shadow:var(--shadow)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:80px}
.header__logo{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:700;color:var(--primary)}
.header__logo span{color:var(--accent)}
.header__nav{display:flex;align-items:center;gap:2rem}
.header__nav a{font-size:.9rem;font-weight:600;letter-spacing:.03em;text-transform:uppercase;color:var(--primary);position:relative;padding:.25rem 0}
.header__nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--accent);transition:width .3s}
.header__nav a:hover::after,.header__nav a.active::after{width:100%}
.header__phone{display:flex;align-items:center;gap:.5rem;font-weight:700;color:var(--accent);font-size:1rem}
.header__phone svg{width:18px;height:18px}
.header__cta{margin-left:1rem}
.header__hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:.5rem}
.header__hamburger span{display:block;width:24px;height:2px;background:var(--primary);transition:var(--transition)}

/* ---------- Mobile Nav ---------- */
.mobile-nav{position:fixed;top:80px;left:0;width:100%;height:calc(100vh - 80px);background:var(--white);z-index:999;transform:translateX(100%);transition:transform .4s ease;padding:2rem;display:flex;flex-direction:column;gap:1.5rem;overflow-y:auto}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav a{font-size:1.1rem;font-weight:600;text-transform:uppercase;letter-spacing:.03em;color:var(--primary);padding:.75rem 0;border-bottom:1px solid var(--border)}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:85vh;display:flex;align-items:center;justify-content:center;text-align:center;color:var(--white);overflow:hidden;margin-top:80px}
.hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.hero__bg::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(44,62,80,.7) 0%,rgba(26,26,26,.65) 100%)}
.hero__content{position:relative;z-index:1;max-width:800px;padding:2rem}
.hero__content h1{color:var(--white);margin-bottom:1rem;text-shadow:0 2px 16px rgba(0,0,0,.3)}
.hero__subtitle{font-size:clamp(1rem,2vw,1.3rem);font-weight:300;margin-bottom:2rem;opacity:.9}
.hero__btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.hero__badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(212,175,55,.2);border:1px solid var(--accent);border-radius:50px;padding:.5rem 1.25rem;font-size:.85rem;margin-bottom:1.5rem;color:var(--accent);font-weight:600}

/* ---------- Trust Bar ---------- */
.trust-bar{background:var(--primary);color:var(--white);padding:1.25rem 0}
.trust-bar__inner{display:flex;justify-content:center;gap:3rem;flex-wrap:wrap}
.trust-bar__item{display:flex;align-items:center;gap:.6rem;font-size:.9rem;font-weight:500}
.trust-bar__item svg{width:20px;height:20px;color:var(--accent)}

/* ---------- Tab Navigation (Architecture #5) ---------- */
.tab-bar{background:var(--white);border-bottom:2px solid var(--border);position:sticky;top:80px;z-index:100}
.tab-bar__inner{display:flex;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none}
.tab-bar__inner::-webkit-scrollbar{display:none}
.tab-btn{flex-shrink:0;padding:1rem 1.75rem;font-family:'Lato',sans-serif;font-size:.88rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--champagne);background:none;border:none;border-bottom:3px solid transparent;cursor:pointer;transition:var(--transition);white-space:nowrap}
.tab-btn:hover{color:var(--primary)}
.tab-btn.active{color:var(--primary);border-bottom-color:var(--accent)}
.tab-panel{display:none;animation:fadeTab .4s ease}
.tab-panel.active{display:block}
@keyframes fadeTab{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

/* ---------- Cards ---------- */
.card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:var(--transition)}
.card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.card__img{height:220px;overflow:hidden}
.card__img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.card:hover .card__img img{transform:scale(1.05)}
.card__body{padding:1.5rem}
.card__body h3{margin-bottom:.5rem}
.card__body p{font-size:.95rem;color:#555}
.card__icon{width:48px;height:48px;background:linear-gradient(135deg,var(--accent),var(--champagne));border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;color:var(--white)}

/* ---------- Grid Layouts ---------- */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.flex-center{display:flex;align-items:center;justify-content:center}

/* ---------- Stats ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center;padding:3rem 0}
.stat__number{font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:700;color:var(--accent)}
.stat__label{font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;color:var(--champagne);margin-top:.25rem}

/* ---------- Testimonials ---------- */
.testimonial{background:var(--bg);border-left:4px solid var(--accent);padding:2rem;border-radius:0 var(--radius) var(--radius) 0;margin-bottom:2rem}
.testimonial__quote{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-style:italic;line-height:1.8;margin-bottom:1rem;color:var(--primary)}
.testimonial__author{font-weight:700;color:var(--champagne);font-size:.9rem}
.testimonial-carousel{position:relative;overflow:hidden}
.testimonial-carousel__track{display:flex;transition:transform .5s ease}
.testimonial-carousel__slide{min-width:100%;padding:0 1rem}

/* ---------- Accordion / FAQ ---------- */
.accordion__item{border-bottom:1px solid var(--border)}
.accordion__trigger{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 0;font-family:'Lato',sans-serif;font-size:1rem;font-weight:600;color:var(--primary);background:none;border:none;cursor:pointer;text-align:left;transition:var(--transition)}
.accordion__trigger:hover{color:var(--accent)}
.accordion__trigger svg{width:20px;height:20px;transition:transform .3s;flex-shrink:0;color:var(--accent)}
.accordion__trigger.open svg{transform:rotate(180deg)}
.accordion__content{max-height:0;overflow:hidden;transition:max-height .35s ease}
.accordion__content__inner{padding:0 0 1.25rem;font-size:.95rem;color:#555;line-height:1.8}

/* ---------- Insurance Grid ---------- */
.insurance-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:1rem}
.insurance-item{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:1rem;text-align:center;font-weight:600;font-size:.9rem;transition:var(--transition)}
.insurance-item:hover{border-color:var(--accent);box-shadow:0 2px 12px rgba(212,175,55,.15)}

/* ---------- Timeline ---------- */
.timeline{position:relative;padding-left:2rem}
.timeline::before{content:'';position:absolute;left:0;top:0;height:100%;width:2px;background:var(--accent)}
.timeline__step{position:relative;padding:0 0 2.5rem 2rem}
.timeline__step::before{content:'';position:absolute;left:-2rem;top:.35rem;width:14px;height:14px;background:var(--accent);border-radius:50%;border:3px solid var(--white);box-shadow:0 0 0 2px var(--accent)}
.timeline__step h4{color:var(--primary);margin-bottom:.35rem}
.timeline__step p{font-size:.95rem;color:#555}

/* ---------- Blog Cards ---------- */
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:var(--transition)}
.blog-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.blog-card__img{height:200px;overflow:hidden}
.blog-card__img img{width:100%;height:100%;object-fit:cover}
.blog-card__body{padding:1.25rem}
.blog-card__cat{font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;color:var(--accent);font-weight:700;margin-bottom:.5rem}
.blog-card__title{font-family:'Cormorant Garamond',serif;font-size:1.2rem;margin-bottom:.5rem;color:var(--primary)}
.blog-card__excerpt{font-size:.9rem;color:#666;margin-bottom:.75rem}
.blog-card__date{font-size:.8rem;color:#999}

/* ---------- CTA Banner ---------- */
.cta-banner{background:linear-gradient(135deg,var(--primary) 0%,#1a2a3a 100%);color:var(--white);text-align:center;padding:4rem 2rem;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:-50%;right:-20%;width:400px;height:400px;border-radius:50%;background:rgba(212,175,55,.08)}
.cta-banner h2{color:var(--white);margin-bottom:.5rem}
.cta-banner p{font-size:1.1rem;opacity:.85;margin-bottom:2rem}
.cta-banner .phone-lg{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:700;color:var(--accent);margin-bottom:1.5rem}
.cta-banner .phone-lg a{color:var(--accent)}

/* ---------- Map ---------- */
.map-container{position:relative;width:100%;padding-bottom:56.25%;border-radius:var(--radius);overflow:hidden;border:2px solid var(--border)}
.map-container iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* ---------- Contact Info ---------- */
.contact-info__item{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
.contact-info__icon{width:44px;height:44px;background:linear-gradient(135deg,var(--accent),var(--champagne));border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--white)}
.contact-info__text h4{margin-bottom:.15rem;font-family:'Lato',sans-serif;font-size:.95rem}
.contact-info__text p{font-size:.9rem;color:#555;margin-bottom:0}
.contact-info__text a{color:var(--accent);font-weight:600}

/* ---------- Footer ---------- */
.footer{background:var(--primary);color:rgba(255,255,255,.75);padding:4rem 0 0}
.footer h4{color:var(--white);font-family:'Cormorant Garamond',serif;font-size:1.15rem;margin-bottom:1rem}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem}
.footer a{color:rgba(255,255,255,.7);font-size:.9rem;display:block;padding:.3rem 0;transition:color .3s}
.footer a:hover{color:var(--accent)}
.footer__brand p{font-size:.9rem;line-height:1.7;margin-bottom:1rem}
.footer__bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:3rem;padding:1.5rem 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;font-size:.8rem}
.footer__bottom a{display:inline;padding:0}
.footer__gold-line{width:40px;height:2px;background:var(--accent);margin-bottom:1rem}

/* ---------- Privacy Page ---------- */
.privacy-content h2{margin-top:2.5rem;margin-bottom:.75rem}
.privacy-content h3{margin-top:1.5rem;margin-bottom:.5rem;font-size:1.1rem}
.privacy-content p,.privacy-content li{font-size:.95rem;color:#555;line-height:1.8}
.privacy-content ul{padding-left:1.5rem;margin-bottom:1rem}
.privacy-content ul li{position:relative;padding-left:1rem;margin-bottom:.4rem}
.privacy-content ul li::before{content:'';position:absolute;left:0;top:.7rem;width:5px;height:5px;background:var(--accent);border-radius:50%}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{padding:1rem 0;font-size:.85rem;color:#888}
.breadcrumbs a{color:var(--champagne)}
.breadcrumbs a:hover{color:var(--accent)}
.breadcrumbs span{margin:0 .4rem;color:#ccc}

/* ---------- Gallery Lightbox ---------- */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem}
.gallery-grid__item{position:relative;border-radius:var(--radius);overflow:hidden;cursor:pointer;aspect-ratio:4/3}
.gallery-grid__item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery-grid__item:hover img{transform:scale(1.08)}
.gallery-grid__item::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(44,62,80,.4));opacity:0;transition:opacity .3s}
.gallery-grid__item:hover::after{opacity:1}

/* ---------- Day Schedule ---------- */
.schedule-table{width:100%;border-collapse:collapse}
.schedule-table th,.schedule-table td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--border);font-size:.93rem}
.schedule-table th{font-weight:700;color:var(--primary);background:var(--bg);font-size:.85rem;text-transform:uppercase;letter-spacing:.03em}
.schedule-table td:first-child{font-weight:600;color:var(--accent);white-space:nowrap;width:120px}

/* ---------- Responsive ---------- */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .header__nav,.header__phone,.header__cta{display:none}
  .header__hamburger{display:flex}
  .hero{min-height:70vh}
  .grid-2,.grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .tab-btn{padding:.75rem 1.25rem;font-size:.8rem}
  .section{padding:3rem 0}
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .cta-banner{padding:3rem 1.5rem}
  /* Tab accordion on mobile */
  .tab-bar__inner{flex-wrap:nowrap}
}
@media(max-width:480px){
  .hero__btns{flex-direction:column;align-items:center}
  .btn{width:100%;text-align:center}
  .trust-bar__inner{flex-direction:column;align-items:center;gap:1rem}
}

/* ---------- Gold Accents & Luxury Details ---------- */
.gold-border-top{border-top:3px solid var(--accent)}
.gold-border-left{border-left:3px solid var(--accent)}
.luxury-divider{display:flex;align-items:center;justify-content:center;gap:1rem;margin:3rem 0}
.luxury-divider::before,.luxury-divider::after{content:'';flex:1;height:1px;background:var(--border)}
.luxury-divider svg{color:var(--accent);width:20px;height:20px}

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

/* ---------- Print ---------- */
@media print{
  .header,.tab-bar,.footer,.cta-banner,.hero__btns{display:none}
  .hero{min-height:auto;padding:2rem}
  .section{padding:1.5rem 0}
  body{font-size:12pt;color:#000}
}
