/* =====================================================
   บัวปูนปั้น | STUCCO THAI — Luxury Classical Style
   โทน: ขาวครีม / ทองอ่อน / เอิร์ธโทน / คลาสสิก
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Sarabun:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --ivory:        #faf7f2;
  --cream:        #f3ede3;
  --cream-dark:   #e8ddd0;
  --gold:         #b8934a;
  --gold-light:   #d4af72;
  --gold-pale:    #f0e0ba;
  --gold-dark:    #8a6830;
  --brown:        #5c3d1e;
  --brown-light:  #7a5230;
  --charcoal:     #2a2420;
  --stone:        #6b6259;
  --stone-light:  #9c9089;
  --white:        #ffffff;
  --text:         #3a3028;
  --text-light:   #6b6259;
  --border:       #ddd3c4;
  --border-light: #ede8e0;

  --shadow-sm:    0 2px 8px rgba(92,61,30,0.08);
  --shadow:       0 6px 24px rgba(92,61,30,0.12);
  --shadow-lg:    0 12px 48px rgba(92,61,30,0.18);
  --shadow-gold:  0 6px 24px rgba(184,147,74,0.25);

  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);

  --font-display: 'Cormorant Garamond', serif;
  --font-latin:   'Cinzel', serif;
  --font-body:    'Sarabun', sans-serif;
}

/* ─── Reset ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--ivory);
  line-height:1.75;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ─── Typography ─── */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--charcoal);
  line-height:1.25;
  font-weight:600;
}
h1{font-size:clamp(2rem,4.5vw,3.2rem)}
h2{font-size:clamp(1.5rem,3vw,2.4rem)}
h3{font-size:clamp(1.15rem,2vw,1.6rem)}
p{margin-bottom:1rem}
.font-latin{font-family:var(--font-latin)}

/* ─── Layout ─── */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section-alt{background:var(--cream)}
.section-dark{background:var(--charcoal);color:var(--ivory)}
.section-dark h2,.section-dark h3{color:var(--gold-light)}

.section-title{text-align:center;margin-bottom:56px}
.section-title .subtitle{
  font-family:var(--font-latin);
  font-size:0.72rem;
  letter-spacing:0.25em;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:12px;
  display:block;
}
.section-title h2{margin-bottom:14px;color:var(--charcoal)}
.section-title .section-dark h2{color:var(--gold-light)}
.section-title p{color:var(--stone);font-size:1rem;max-width:580px;margin:0 auto}
.divider{
  width:80px;height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:18px auto 0;
}

/* ─── Ornament ─── */
.ornament{
  display:flex;align-items:center;gap:14px;
  color:var(--gold);font-size:1.1rem;
  margin-bottom:10px;
}
.ornament::before,.ornament::after{
  content:'';flex:1;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-light));
}
.ornament::after{
  background:linear-gradient(90deg,var(--gold-light),transparent);
}

/* ─── Header ─── */
.header{
  position:sticky;top:0;z-index:1000;
  background:rgba(250,247,242,0.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 16px rgba(92,61,30,0.07);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;max-width:1200px;margin:0 auto;
}
.logo{display:flex;align-items:center;gap:14px}
.logo-emblem{
  width:48px;height:48px;
  background:linear-gradient(135deg,var(--gold-dark),var(--gold),var(--gold-light));
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;color:var(--white);
  box-shadow:var(--shadow-gold);
  flex-shrink:0;
}
.logo-text .brand{
  font-family:var(--font-display);
  font-size:1.1rem;font-weight:700;
  color:var(--charcoal);line-height:1.2;
  letter-spacing:0.02em;
}
.logo-text .tagline{
  font-size:0.7rem;color:var(--gold);
  letter-spacing:0.12em;text-transform:uppercase;
  font-family:var(--font-latin);
}
.nav{display:flex;align-items:center;gap:2px}
.nav a{
  color:var(--stone);font-size:0.88rem;font-weight:500;
  padding:8px 15px;border-radius:6px;
  transition:var(--transition);
  letter-spacing:0.02em;
}
.nav a:hover,.nav a.active{color:var(--gold-dark);background:var(--gold-pale)}
.header-cta{display:flex;gap:8px;align-items:center}
.mobile-menu-btn{
  display:none;flex-direction:column;gap:5px;
  padding:6px;cursor:pointer;
}
.mobile-menu-btn span{
  display:block;width:24px;height:1.5px;
  background:var(--charcoal);border-radius:2px;
  transition:var(--transition);
}

/* ─── Buttons ─── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-weight:600;font-size:0.92rem;
  padding:12px 26px;border-radius:8px;
  transition:var(--transition);white-space:nowrap;
  letter-spacing:0.02em;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-dark),var(--gold));
  color:var(--white);
  box-shadow:0 4px 16px rgba(184,147,74,0.3);
}
.btn-gold:hover{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(184,147,74,0.4);
}
.btn-outline-gold{
  background:transparent;
  color:var(--gold-dark);
  border:1.5px solid var(--gold);
}
.btn-outline-gold:hover{
  background:var(--gold-pale);
  transform:translateY(-2px);
}
.btn-dark{
  background:var(--charcoal);
  color:var(--ivory);
}
.btn-dark:hover{
  background:var(--brown);
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  color:var(--ivory);
  border:1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-light:hover{
  background:rgba(255,255,255,0.1);
  border-color:var(--gold-light);
  color:var(--gold-light);
}
.btn-green{background:#1a6b40;color:var(--white)}
.btn-green:hover{background:#145532;transform:translateY(-2px)}
.btn-lg{padding:15px 34px;font-size:1.02rem;border-radius:10px}
.cta-group{display:flex;gap:12px;flex-wrap:wrap;margin:24px 0}
.cta-group.center{justify-content:center}

/* ─── Hero ─── */
.hero{
  position:relative;
  background:var(--charcoal);
  padding:90px 0 100px;overflow:hidden;
  min-height:88vh;display:flex;align-items:center;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(160deg,rgba(42,36,32,0.92) 0%,rgba(92,61,30,0.75) 60%,rgba(42,36,32,0.95) 100%);
  z-index:1;
}
.hero-pattern{
  position:absolute;inset:0;z-index:0;
  background-image:
    radial-gradient(circle at 20% 50%,rgba(184,147,74,0.08) 0%,transparent 60%),
    radial-gradient(circle at 80% 20%,rgba(184,147,74,0.06) 0%,transparent 50%);
}
.hero-content{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:center;
  max-width:1200px;margin:0 auto;padding:0 24px;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-latin);font-size:0.7rem;
  letter-spacing:0.3em;text-transform:uppercase;
  color:var(--gold-light);margin-bottom:22px;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'◆';font-size:0.5rem;color:var(--gold);
}
.hero h1{
  color:var(--ivory);
  font-weight:700;font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.2;margin-bottom:18px;
}
.hero h1 em{color:var(--gold-light);font-style:normal}
.hero-lead{
  color:rgba(250,247,242,0.78);font-size:1rem;
  margin-bottom:30px;line-height:1.8;
}
.hero-badges{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-bottom:34px;
}
.badge{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(184,147,74,0.15);
  border:1px solid rgba(184,147,74,0.35);
  color:var(--gold-light);
  font-size:0.82rem;padding:6px 14px;
  border-radius:50px;
}
.hero-visual{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;border-radius:var(--radius-lg);overflow:hidden;
}
.hero-img{
  background:rgba(255,255,255,0.06);
  border-radius:var(--radius);overflow:hidden;
  aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
}
.hero-img:first-child{
  grid-column:1/-1;aspect-ratio:16/7;
}
.hero-img img{width:100%;height:100%;object-fit:cover}
.hero-img-placeholder{
  width:100%;height:100%;
  background:linear-gradient(135deg,rgba(184,147,74,0.12),rgba(92,61,30,0.18));
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  color:rgba(250,247,242,0.4);
  font-size:0.8rem;gap:8px;text-align:center;padding:12px;
}
.hero-img-placeholder .ico{font-size:2.5rem;opacity:0.5}

/* ─── Service Cards ─── */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
  gap:24px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
  position:relative;overflow:hidden;
}
.service-card::after{
  content:'';
  position:absolute;bottom:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--gold-dark),var(--gold-light));
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.4s ease;
}
.service-card:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-5px);
  border-color:var(--gold-pale);
}
.service-card:hover::after{transform:scaleX(1)}
.service-icon{
  width:54px;height:54px;
  background:linear-gradient(135deg,var(--gold-pale),var(--cream-dark));
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:18px;
  border:1px solid var(--border);
}
.service-card h3{
  font-size:1.15rem;margin-bottom:10px;
  color:var(--charcoal);
}
.service-card p{
  color:var(--stone);font-size:0.88rem;
  line-height:1.7;margin-bottom:14px;
}
.service-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.tag{
  background:var(--cream);color:var(--stone);
  font-size:0.73rem;padding:3px 10px;
  border-radius:50px;border:1px solid var(--border);
}
.service-link{
  color:var(--gold-dark);font-weight:600;font-size:0.85rem;
  display:inline-flex;align-items:center;gap:4px;
  transition:var(--transition);
}
.service-link:hover{color:var(--gold);gap:8px}

/* ─── Why Us ─── */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:24px;
}
.why-item{
  display:flex;gap:18px;align-items:flex-start;
  padding:26px;
  background:rgba(250,247,242,0.05);
  border:1px solid rgba(184,147,74,0.2);
  border-radius:var(--radius);
  transition:var(--transition);
}
.why-item:hover{background:rgba(184,147,74,0.08);border-color:rgba(184,147,74,0.35)}
.why-num{
  font-family:var(--font-latin);
  font-size:1.8rem;font-weight:600;
  color:var(--gold);opacity:0.6;
  line-height:1;flex-shrink:0;width:36px;
}
.why-item h3{
  font-size:1rem;margin-bottom:6px;
  color:var(--gold-light);
}
.why-item p{font-size:0.85rem;color:rgba(250,247,242,0.65);margin:0;line-height:1.65}

/* ─── FAQ ─── */
.faq-list{max-width:820px;margin:0 auto}
.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:10px;overflow:hidden;
  background:var(--white);
}
.faq-question{
  width:100%;display:flex;align-items:center;
  justify-content:space-between;
  padding:18px 22px;
  font-family:var(--font-body);
  font-size:0.95rem;font-weight:600;
  color:var(--charcoal);background:none;
  text-align:left;gap:12px;transition:var(--transition);
}
.faq-question:hover{background:var(--cream)}
.faq-question.active{background:var(--charcoal);color:var(--gold-light)}
.faq-icon{
  width:28px;height:28px;flex-shrink:0;
  background:var(--cream-dark);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;transition:transform 0.3s;
}
.faq-question.active .faq-icon{
  background:var(--gold);color:var(--white);
  transform:rotate(45deg);
}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height 0.4s ease,padding 0.3s;
  padding:0 22px;
  color:var(--stone);font-size:0.9rem;line-height:1.75;
}
.faq-answer.open{max-height:400px;padding:16px 22px 20px}

/* ─── Reviews ─── */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
  gap:22px;
}
.review-card{
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
  position:relative;
}
.review-card::before{
  content:'"';
  position:absolute;top:16px;right:20px;
  font-family:var(--font-display);
  font-size:4rem;color:var(--gold-pale);
  line-height:1;
}
.review-card:hover{box-shadow:var(--shadow)}
.review-stars{color:var(--gold);font-size:0.9rem;letter-spacing:3px;margin-bottom:12px}
.review-text{
  color:var(--stone);font-size:0.9rem;
  line-height:1.75;margin-bottom:18px;
  font-style:italic;
}
.review-author{display:flex;align-items:center;gap:12px}
.review-avatar{
  width:42px;height:42px;
  background:linear-gradient(135deg,var(--gold-dark),var(--gold-light));
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-weight:700;font-size:1rem;
  flex-shrink:0;
}
.review-name{font-weight:700;font-size:0.93rem;color:var(--charcoal)}
.review-meta{font-size:0.78rem;color:var(--stone-light)}

/* ─── Gallery Grid ─── */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:14px;
}
.gallery-grid.large{
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:16px;
}
.gallery-item{
  border-radius:var(--radius);overflow:hidden;
  cursor:pointer;position:relative;
  aspect-ratio:4/3;
  background:var(--cream-dark);
}
.gallery-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display:block;
}
.gallery-item:hover img{transform:scale(1.07)}
/* fallback เมื่อรูปยังไม่ได้อัปโหลด */
.gallery-item img[data-error="1"]{
  display:none;
}
.gallery-item img[data-error="1"] ~ .gallery-fallback{
  display:flex;
}
.gallery-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(42,36,32,0.88) 0%,transparent 55%);
  opacity:0;transition:opacity 0.35s;
  display:flex;align-items:flex-end;padding:14px;
}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-caption{color:var(--ivory);font-size:0.82rem;font-weight:600;line-height:1.3}
.gallery-placeholder{
  width:100%;height:100%;
  background:linear-gradient(135deg,var(--cream),var(--cream-dark));
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  color:var(--stone-light);gap:8px;
  font-size:0.8rem;text-align:center;padding:12px;
}
.gallery-placeholder .ico{font-size:2.8rem;opacity:0.5}
/* fallback div แสดงเมื่อรูปโหลดไม่ได้ */
.gallery-fallback{
  display:none;
  position:absolute;inset:0;
  background:linear-gradient(135deg,var(--cream),var(--cream-dark));
  flex-direction:column;align-items:center;justify-content:center;
  color:var(--stone-light);gap:8px;font-size:0.78rem;text-align:center;padding:12px;
}
.gallery-fallback .ico{font-size:2rem;opacity:0.4}

/* ─── Area Links ─── */
.area-section{background:var(--cream)}
.area-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:8px;
}
.area-link{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:8px;
  padding:9px 12px;
  font-size:0.83rem;
  color:var(--brown-light);
  font-weight:500;text-align:center;
  display:block;transition:var(--transition);
}
.area-link:hover{
  background:var(--gold-pale);
  border-color:var(--gold);
  color:var(--gold-dark);
}

/* ─── Calculator ─── */
.calc-box{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:var(--shadow);
  max-width:620px;margin:0 auto;
}
.calc-box h3{
  text-align:center;margin-bottom:24px;
  color:var(--charcoal);font-size:1.4rem;
}
.form-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:16px;margin-bottom:16px;
}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group label{
  font-size:0.85rem;font-weight:600;
  color:var(--charcoal);
}
.form-group select,.form-group input{
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:8px;
  font-family:var(--font-body);
  font-size:0.9rem;
  color:var(--text);
  background:var(--ivory);
  transition:var(--transition);
}
.form-group select:focus,.form-group input:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(184,147,74,0.15);
}
.calc-result{
  margin-top:20px;padding:20px;
  background:linear-gradient(135deg,var(--gold-pale),var(--cream));
  border:1px solid var(--gold-light);
  border-radius:var(--radius);
  text-align:center;
  display:none;
}
.calc-result.show{display:block}
.calc-result .price{
  font-family:var(--font-display);
  font-size:2rem;font-weight:700;
  color:var(--gold-dark);margin-bottom:6px;
}
.calc-result .note{
  font-size:0.78rem;color:var(--stone);
  line-height:1.6;
}

/* ─── Contact Form ─── */
.contact-form{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow);
}
.contact-form h3{margin-bottom:24px;color:var(--charcoal)}
.form-full{grid-column:1/-1}
.form-group textarea{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:8px;
  font-family:var(--font-body);
  font-size:0.9rem;
  color:var(--text);
  background:var(--ivory);
  resize:vertical;
  min-height:100px;
  transition:var(--transition);
}
.form-group textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(184,147,74,0.15);
}

/* ─── Breadcrumb ─── */
.breadcrumb{
  background:var(--cream);
  padding:14px 0;
  border-bottom:1px solid var(--border-light);
}
.breadcrumb ol{
  display:flex;align-items:center;
  gap:8px;flex-wrap:wrap;
  max-width:1200px;margin:0 auto;padding:0 24px;
  font-size:0.82rem;color:var(--stone);
}
.breadcrumb li:not(:last-child)::after{content:'›';margin-left:8px;color:var(--gold)}
.breadcrumb a{color:var(--gold-dark)}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb li:last-child{color:var(--charcoal);font-weight:500}

/* ─── Province Hero ─── */
.province-hero{
  background:var(--charcoal);
  padding:60px 0 70px;
  position:relative;overflow:hidden;
}
.province-hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 30% 50%,rgba(184,147,74,0.1) 0%,transparent 60%),
    radial-gradient(ellipse at 80% 30%,rgba(184,147,74,0.07) 0%,transparent 50%);
}
.province-hero-inner{position:relative;z-index:1;max-width:900px}
.province-hero h1{
  color:var(--ivory);font-size:clamp(1.6rem,3.5vw,2.6rem);
  margin-bottom:14px;
}
.province-hero h1 em{color:var(--gold-light);font-style:normal}
.province-hero p{color:rgba(250,247,242,0.75);font-size:0.98rem;line-height:1.75}

/* ─── Floating Buttons ─── */
.floating-btns{
  position:fixed;bottom:24px;right:20px;
  display:flex;flex-direction:column;gap:10px;
  z-index:999;
}
.float-btn{
  width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;box-shadow:var(--shadow-lg);
  transition:var(--transition);color:var(--white);
  cursor:pointer;text-decoration:none;
  position:relative;
}
.float-btn:hover{transform:scale(1.12)}
.float-btn.call{background:linear-gradient(135deg,var(--gold-dark),var(--gold))}
.float-btn.line{background:#06c755}
.float-btn.scroll-top{background:var(--charcoal);display:none}
.float-btn.scroll-top.show{display:flex}
.float-tooltip{
  position:absolute;right:64px;
  background:var(--charcoal);color:var(--ivory);
  font-size:0.73rem;font-weight:600;
  padding:4px 10px;border-radius:6px;
  white-space:nowrap;opacity:0;
  pointer-events:none;transition:opacity 0.2s;
}
.float-btn:hover .float-tooltip{opacity:1}

/* ─── Footer ─── */
.footer{
  background:var(--charcoal);
  padding:60px 0 0;
  color:rgba(250,247,242,0.7);
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;padding-bottom:50px;
}
.footer-brand .brand{
  font-family:var(--font-display);
  font-size:1.3rem;font-weight:700;
  color:var(--ivory);margin-bottom:12px;
}
.footer-brand p{font-size:0.85rem;line-height:1.7;color:rgba(250,247,242,0.6);margin-bottom:18px}
.footer h4{
  font-family:var(--font-latin);
  font-size:0.72rem;letter-spacing:0.2em;
  color:var(--gold-light);text-transform:uppercase;
  margin-bottom:16px;
}
.footer-links li{margin-bottom:8px}
.footer-links a{
  font-size:0.85rem;color:rgba(250,247,242,0.55);
  transition:var(--transition);
}
.footer-links a:hover{color:var(--gold-light)}
.footer-contact-list li{
  display:flex;gap:10px;
  font-size:0.85rem;color:rgba(250,247,242,0.6);
  margin-bottom:12px;align-items:flex-start;
}
.footer-contact-list .ico{color:var(--gold);margin-top:2px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
}
.footer-bottom p{font-size:0.78rem;color:rgba(250,247,242,0.35)}

/* ─── Search Box ─── */
.search-wrap{position:relative;max-width:400px;margin-bottom:30px}
.search-wrap input{
  width:100%;padding:12px 44px 12px 16px;
  border:1px solid var(--border);
  border-radius:50px;
  font-family:var(--font-body);font-size:0.9rem;
  background:var(--white);color:var(--text);
  transition:var(--transition);
}
.search-wrap input:focus{
  outline:none;border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(184,147,74,0.12);
}
.search-wrap .search-ico{
  position:absolute;right:14px;top:50%;
  transform:translateY(-50%);
  color:var(--gold);font-size:1rem;
}

/* ─── Highlight Box ─── */
.highlight-box{
  background:linear-gradient(135deg,var(--gold-pale),var(--cream));
  border:1px solid var(--gold-light);
  border-left:4px solid var(--gold);
  border-radius:var(--radius);
  padding:20px 24px;margin:24px 0;
}
.highlight-box p{margin:0;font-size:0.92rem;color:var(--brown);line-height:1.7}

/* ─── Lightbox ─── */
.lightbox{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,0.9);z-index:9999;
  align-items:center;justify-content:center;
}
.lightbox.show{display:flex}
.lightbox-inner{
  position:relative;max-width:90vw;max-height:90vh;
}
.lightbox-inner img{
  max-width:90vw;max-height:85vh;
  object-fit:contain;border-radius:var(--radius);
}
.lightbox-caption{
  position:absolute;bottom:-36px;left:0;right:0;
  text-align:center;color:var(--ivory);font-size:0.85rem;
}
.lightbox-close{
  position:absolute;top:-44px;right:0;
  background:none;color:var(--ivory);
  font-size:1.6rem;cursor:pointer;
  transition:transform 0.3s;
}
.lightbox-close:hover{transform:rotate(90deg)}
.lightbox-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  color:var(--ivory);font-size:1.4rem;
  width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background 0.3s;
}
.lightbox-nav:hover{background:rgba(184,147,74,0.3)}
.lightbox-prev{left:-60px}
.lightbox-next{right:-60px}

/* ─── Fade-in Animation ─── */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ─── Province Page Specific ─── */
.services-list-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
  margin:20px 0;
}
.services-list-grid li{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px 16px;background:var(--cream);
  border-radius:8px;border-left:3px solid var(--gold);
  font-size:0.9rem;color:var(--brown-light);font-weight:500;
}
.services-list-grid li::before{content:'◆';color:var(--gold);font-size:0.5rem;margin-top:5px;flex-shrink:0}
.nearby-links{display:flex;flex-wrap:wrap;gap:8px}
.nearby-link{
  background:var(--cream);border:1px solid var(--border);
  border-radius:50px;padding:6px 14px;
  font-size:0.82rem;color:var(--brown-light);
  transition:var(--transition);
}
.nearby-link:hover{background:var(--gold-pale);border-color:var(--gold);color:var(--gold-dark)}

/* ─── Utility ─── */
.text-gold{color:var(--gold)}
.text-center{text-align:center}
.mt-8{margin-top:8px}
.mt-16{margin-top:16px}
.mt-24{margin-top:24px}
.mt-32{margin-top:32px}
.mb-0{margin-bottom:0}
.fw-600{font-weight:600}
.hidden{display:none}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.three-col{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}

/* ─── Responsive ─── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .hero-content{grid-template-columns:1fr;gap:40px}
  .hero-visual{display:none}
  .two-col{grid-template-columns:1fr}
  .three-col{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav,.header-cta .btn-gold,.header-cta .btn-outline-gold{display:none}
  .mobile-menu-btn{display:flex}
  .section{padding:55px 0}
  h1{font-size:1.7rem}
  h2{font-size:1.35rem}
  .services-grid{grid-template-columns:1fr 1fr}
  .reviews-grid{grid-template-columns:1fr}
  .area-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr))}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .three-col{grid-template-columns:1fr}
  .services-list-grid{grid-template-columns:1fr}
  .lightbox-prev{left:-10px}
  .lightbox-next{right:-10px}
  .calc-box{padding:24px 18px}
}
@media(max-width:480px){
  .services-grid{grid-template-columns:1fr}
  .cta-group{flex-direction:column}
  .cta-group .btn{justify-content:center}
  .hero-badges{gap:8px}
  .badge{font-size:0.75rem}
}

/* ─── Mobile Nav ─── */
.mobile-nav{
  display:none;position:fixed;inset:0;
  background:var(--charcoal);z-index:1100;
  flex-direction:column;
  align-items:center;justify-content:center;gap:12px;
}
.mobile-nav.open{display:flex}
.mobile-nav a{
  font-family:var(--font-display);font-size:1.5rem;
  font-weight:600;color:var(--ivory);
  padding:10px 30px;border-radius:8px;
  transition:var(--transition);
}
.mobile-nav a:hover{color:var(--gold-light)}
.mobile-nav-close{
  position:absolute;top:20px;right:20px;
  background:none;color:var(--ivory);
  font-size:1.5rem;cursor:pointer;
}
.mobile-nav .cta-group{flex-direction:column;align-items:center;width:100%;padding:0 24px;margin-top:20px}
.mobile-nav .btn{width:100%;justify-content:center}
