/*
Theme Name:  HennaArtistry
Theme URI:   https://hennaartistry.in
Author:      HennaArtistry
Author URI:  https://hennaartistry.in
Description: A custom one-page WordPress theme for HennaArtistry — a luxury henna studio. Includes hero, services, gallery, testimonials, process, and contact sections.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: henna-artistry
Tags:        one-page, custom-menu, featured-images, full-width-template
*/

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --gold:    #c9972a;
  --gold-lt: #e8b84b;
  --gold-dk: #9a6f14;
  --cream:   #f8f2e8;
  --sand:    #ede3d0;
  --brown:   #2c1a08;
  --brown-m: #4a2e10;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ─── WordPress core alignment helpers ──────────────── */
.alignleft  { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* ─── Skip link ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── Ornament divider ───────────────────────────────── */
.ornament { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 6px; }
.ornament-line { flex: 1; max-width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─── Navbar ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  transition: background .4s, box-shadow .4s;
  background: rgba(26, 12, 2, 0.64);
}
#navbar.scrolled {
  background: rgba(26,12,2,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1350px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-text { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 20px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.85); text-decoration: none;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-links a.active,
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ─── Buttons ────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #fff; font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 26px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,151,42,.4);
  transition: transform .2s, box-shadow .2s; display: inline-block;
  display: inline-block;
}
#hero .btn-gold{
  display: flex;
  gap: 5px;
  align-items: center;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,151,42,.55); }

.btn-outline {
  background: transparent; border: 1.5px solid rgba(201,151,42,.5);
  color: rgba(255,255,255,.8); font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 26px; border-radius: 50px; text-decoration: none;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Mobile hamburger ───────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
#mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(26,12,2,.97); padding: 20px 40px;
  flex-direction: column; gap: 16px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: rgba(255,255,255,.85); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; font-family: 'Jost', sans-serif;
}

/* ─── Hero ───────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(125deg, #100500 0%, #1e0b04 30%, #3a1608 60%, #291005 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='36' stroke='%23c9972a' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='20' stroke='%23c9972a' stroke-width='.7'/%3E%3Ccircle cx='40' cy='40' r='6' fill='%23c9972a' opacity='.5'/%3E%3Cline x1='4' y1='40' x2='76' y2='40' stroke='%23c9972a' stroke-width='.5'/%3E%3Cline x1='40' y1='4' x2='40' y2='76' stroke='%23c9972a' stroke-width='.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; right: 0; top: 0; width: 60%; height: 100%;
  background: radial-gradient(ellipse at 75% 45%, rgba(201,151,42,.15) 0%, transparent 60%);
}
.hero-mandala {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 65vw; max-width: 680px; opacity: .1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1350px; margin: 0 auto; padding: 130px 40px 90px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,42,.12); border: 1px solid rgba(201,151,42,.3);
  border-radius: 50px; padding: 7px 18px; margin-bottom: 24px;
}
.hero-badge span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(60px, 8vw, 100px); color: #f0e6d0; line-height: 1; display: block;
}
.hero-display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 70px); font-weight: 700; color: var(--gold);
  line-height: 1.05; display: block; margin-top: -10px;
}
.hero-sub {
  font-family: 'Jost', sans-serif; font-weight: 400; font-size: 15px;
  letter-spacing: 4px; text-transform: uppercase; color: #fff;
  margin: 22px 0 22px;
}
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); text-align: center; animation: bounce 2s infinite; }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, rgba(201,151,42,.5)); margin: 0 auto 8px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── Feature Strip ──────────────────────────────────── */
.feature-strip {
  background: #fff;
  box-shadow: 0 -4px 0 var(--gold), 0 8px 50px rgba(0,0,0,.1);
  position: relative; z-index: 20;
}
.feature-strip-inner {
  max-width: 1350px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
}
.fi { padding: 30px 36px; display: flex; align-items: flex-start; gap: 18px; }
.fi + .fi { border-left: 1px solid #f0e8d8; }
.fi-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #fef3d0, #f5d878);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,151,42,.2);
}
.fi-icon svg { width: 22px; height: 22px; color: var(--gold-dk); }
.fi-label { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--brown); margin-bottom: 5px; }
.fi-desc { font-size: 13px; color: #7a6a58; line-height: 1.6; }

/* ─── Section heading ────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 25px; }
.sec-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 46px); color: var(--brown); font-weight: 700; margin: 8px 0 4px; }
.sec-head .sub { font-family: 'Great Vibes', cursive; font-size: 28px; color: var(--gold); }

/* ─── Container ──────────────────────────────────────── */
.ha-container { max-width: 1350px; margin: 0 auto; padding: 0 40px; }

/* ─── Services ───────────────────────────────────────── */
#services { background: var(--cream); padding: 88px 0; }
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.srv-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
  transition: transform .4s, box-shadow .4s; background: #fff;
}
.srv-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,.14); }
.srv-img { position: relative; height: 240px; overflow: hidden; }
.srv-img-bg { width: 100%; height: 100%; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.srv-card:hover .srv-img-bg { transform: scale(1.08); }
.srv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,8,0,.7) 0%, rgba(20,8,0,.1) 55%, transparent 100%);
}
.srv-tag {
  position: absolute; bottom: 14px; left: 18px; z-index: 2;
  background: rgba(201,151,42,.88); color: #fff; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px;
  border-radius: 50px; font-family: 'Jost', sans-serif;
}
.srv-body { padding: 22px 24px 26px; }
.srv-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.srv-body p { font-size: 13px; color: #7a6a58; line-height: 1.7; }
.srv-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,151,42,.4); padding-bottom: 2px; transition: color .2s;
}
.srv-link:hover { color: var(--gold-dk); }
svg.art { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ─── Why choose us ──────────────────────────────────── */
#why { background: #fff; padding: 88px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: #f0e8d8; border: 1px solid #f0e8d8;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,.07);
}
.why-item { background: #fff; padding: 44px 36px; text-align: center; }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, #fef3d0, #f5d878);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(201,151,42,.25);
}
.why-icon svg { width: 28px; height: 28px; color: var(--gold-dk); }
.why-item h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--brown); margin-bottom: 10px; }
.why-item p  { font-size: 13px; color: #7a6a58; line-height: 1.75; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.stat-box {
  background: linear-gradient(135deg, #fef8ec, #fdf0cc);
  border: 1px solid rgba(201,151,42,.25); border-radius: 16px;
  padding: 28px 20px; text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--gold); }
.stat-lbl { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #8a7a68; margin-top: 4px; }

/* ─── Gallery tabs ───────────────────────────────────── */
.g-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.g-tab {
  background: transparent; border: 1.5px solid #ddd3bf; color: #8a7a68;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 9px 22px;
  border-radius: 50px; cursor: pointer; transition: all .2s;
}
.g-tab:hover, .g-tab.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ─── Masonry gallery ────────────────────────────────── */
#gallery { background: var(--cream); padding: 88px 0; }
.masonry { columns: 4; column-gap: 18px; }
.m-item {
  break-inside: avoid; margin-bottom: 18px; border-radius: 16px;
  overflow: hidden; position: relative; cursor: pointer; display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,.1); transition: transform .3s;
}
.m-item:hover { transform: translateY(-4px); }
.m-ph { width: 100%; display: block; transition: transform .5s ease; }
.m-ph.h200 { height: 200px; }
.m-ph.h300 { height: 300px; }
.m-ph.h160 { height: 160px; }
.m-ph.h260 { height: 260px; }
.m-item:hover .m-ph { transform: scale(1.05); }
.m-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,8,0,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 18px;
}
.m-item:hover .m-overlay { opacity: 1; }
.m-tag { font-family: 'Playfair Display', serif; font-style: italic; color: #fff; font-size: 15px; }

/* ─── Featured carousel ──────────────────────────────── */
#featured { background: #fff; padding: 88px 0; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 18px; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.c-item {
  flex-shrink: 0; width: 260px; height: 300px; border-radius: 16px;
  overflow: hidden; position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,.12); cursor: pointer;
}
.c-item .m-ph { height: 100%; }
.c-item:hover .m-ph { transform: scale(1.06); }
.c-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background .2s;
}
.c-nav:hover { background: var(--gold); }
.c-nav:hover svg { color: #fff; }
.c-nav svg { width: 18px; height: 18px; color: var(--brown); }
.c-prev { left: 0; }
.c-next { right: 0; }
.c-label {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: #fff; font-size: 14px; z-index: 2;
}

/* ─── Process ────────────────────────────────────────── */
#process { background: var(--cream); padding: 88px 0; }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.proc-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}
.proc-item { text-align: center; position: relative; }
.proc-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 6px 28px rgba(201,151,42,.35);
  color: #fff; font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 700; position: relative; z-index: 2;
}
.proc-item h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--brown); margin-bottom: 8px; }
.proc-item p  { font-size: 13px; color: #7a6a58; line-height: 1.65; }

/* ─── Testimonials ───────────────────────────────────── */
#testi { background: #fff; padding: 88px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.t-card {
  background: #fff; border-radius: 20px; padding: 32px 30px;
  box-shadow: 0 4px 30px rgba(0,0,0,.07); border-top: 4px solid var(--gold);
  transition: transform .3s;
}
.t-card:hover { transform: translateY(-5px); }
.t-stars  { color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 16px; }
.t-quote  { font-family: 'Playfair Display', serif; font-style: italic; font-size: 16px; color: #4a3a28; line-height: 1.75; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #fef3d0, #e8b84b);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold-dk); font-size: 16px;
}
.t-name  { font-weight: 600; font-size: 14px; color: var(--brown); }
.t-place { font-size: 12px; color: #9a8a78; margin-top: 2px; }

/* ─── Contact ────────────────────────────────────────── */
#contact { background: var(--cream); padding: 88px 0; }
.contact-wrap {
  background: linear-gradient(135deg, #1a0a02, #2e160a);
  border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.3fr;
  box-shadow: 0 20px 80px rgba(0,0,0,.2);
}
.c-info { padding: 56px 48px; position: relative; }
.c-info::after {
  content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,151,42,.3), transparent);
}
.c-info h3 { font-family: 'Great Vibes', cursive; font-size: 46px; color: var(--gold); margin-bottom: 6px; }
.c-info h4 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 32px; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.c-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(201,151,42,.15); border: 1px solid rgba(201,151,42,.25);
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 17px; height: 17px; color: var(--gold); }
.c-lbl { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.c-val { font-size: 14px; color: rgba(255,255,255,.75); }
.c-form { padding: 56px 48px; background: #fff; }
.c-form h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--brown); margin-bottom: 28px; font-weight: 700; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-grp { display: flex; flex-direction: column; margin-bottom: 16px; }
.f-grp label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #8a7a68; margin-bottom: 8px; }
.f-grp input,
.f-grp select,
.f-grp textarea {
  border: 1.5px solid #e8dece; border-radius: 12px; padding: 13px 16px;
  font-family: 'Jost', sans-serif; font-size: 14px; color: var(--brown);
  background: #fdf9f3; outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,42,.1); }
.f-grp textarea { resize: none; }
.contact-notice { background: rgba(201,151,42,.1); border: 1px solid rgba(201,151,42,.3); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: var(--brown); margin-bottom: 16px; }
.contact-notice.success { background: rgba(0,150,50,.08); border-color: rgba(0,150,50,.3); color: #1a5c2a; }
.contact-notice.error   { background: rgba(200,0,0,.06); border-color: rgba(200,0,0,.25); color: #7a0000; }

/* ─── Footer CTA ─────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, #1a0a02, #2e1608);
  padding: 48px 40px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-cta h3 { font-family: 'Great Vibes', cursive; font-size: 48px; color: var(--gold); }
.footer-cta p  { font-size: 16px; color: rgba(255,255,255,.55); margin-top: 4px; }
.footer-bot {
  background: #0d0601; padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bot-logo { display: flex; align-items: center; gap: 8px; }
.footer-bot-logo span { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 16px; }
.footer-copy { font-size: 14px; color: #fff; }
.socials { display: flex; gap: 12px; }
.soc {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s; cursor: pointer; text-decoration: none;
}
.soc:hover { background: rgba(201,151,42,.2); border-color: var(--gold); }
.soc svg { width: 14px; height: 14px; color: rgba(255,255,255,.5); }
.soc:hover svg { color: var(--gold); }

/* ─── Lightbox ───────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6,2,0,.95); display: none;
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
.lb-close {
  position: absolute; top: 24px; right: 32px; font-size: 30px;
  color: rgba(255,255,255,.6); cursor: pointer; background: none; border: none;
  transition: color .2s; font-family: 'Jost', sans-serif;
}
.lb-close:hover { color: var(--gold); }

/* ─── Scroll reveal ──────────────────────────────────── */
.rev { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.rev.up { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  #book-d    { display: none; }
  .hamburger { display: flex; }
  .feature-strip-inner,
  .srv-grid,
  .why-grid,
  .proc-grid,
  .testi-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .nav-inner { padding: 16px 20px; }
  .fi + .fi { border-left: none; border-top: 1px solid #f0e8d8; }
  .proc-grid::before { display: none; }
}
@media (max-width: 600px) {
  .masonry { columns: 1; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-cta { flex-direction: column; text-align: center; }
  .footer-bot { flex-direction: column; text-align: center; }
  .ha-container { padding: 0 20px; }
  .hero-content { padding: 120px 20px 80px; }
  .f-row { grid-template-columns: 1fr; }
  .c-info, .c-form { padding: 36px 24px; }
}

/* ════════════════════════════════════════════════════════════
   NEW SECTIONS – Nashville Henna Artist
   Added: Checklist, Do/Don't, Areas We Serve, FAQ
   + Hero trust signals & phone button
════════════════════════════════════════════════════════════ */

/* ─── Hero trust pills ───────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .3px;
}
.hero-trust-icon { font-size: 13px; line-height: 1; }

/* Phone CTA button in hero */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,42,.12);
  border: 1.5px solid rgba(201,151,42,.45);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .8px;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.btn-phone:hover {
  background: rgba(201,151,42,.25);
  border-color: var(--gold);
}

/* ─── Checklist Section ──────────────────────────────────── */
#checklist {
  background: linear-gradient(160deg, #fdf8ef 0%, #f5ead6 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
#checklist::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,42,.1) 0%, transparent 70%);
  pointer-events: none;
}
.checklist-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 52px 56px;
  box-shadow: 0 8px 48px rgba(0,0,0,.08);
  border: 1px solid rgba(201,151,42,.18);
  position: relative;
  overflow: hidden;
}
.checklist-wrap::before {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,42,.07) 0%, transparent 70%);
  pointer-events: none;
}
.checklist-intro {
  text-align: center;
  font-size: 15px;
  color: #6a5a48;
  line-height: 1.75;
  margin: 0 auto 40px;
  max-width: 600px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.chk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fefaf2, #fdf3df);
  border: 1px solid rgba(201,151,42,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.chk-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,151,42,.14);
}
.chk-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201,151,42,.3);
  margin-top: 1px;
}
.chk-icon svg { color: #fff; display: block; }
.chk-item span {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.6;
  padding-top: 6px;
}
.checklist-cta { text-align: center; }

/* ─── Do's & Don'ts ──────────────────────────────────────── */
#dos-donts {
  background: var(--cream);
  padding: 88px 0;
}
.dod-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.dod-col {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
}
.dod-do  { border: 1.5px solid rgba(34,160,74,.22); }
.dod-dont{ border: 1.5px solid rgba(200,50,50,.2); }

.dod-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
}
.dod-do  .dod-col-header { background: linear-gradient(135deg, #e6f7ed, #ccf0d8); }
.dod-dont .dod-col-header { background: linear-gradient(135deg, #fbe8e8, #f5cccc); }

.dod-header-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dod-do-icon   { background: linear-gradient(135deg, #3dd874, #22a04a); }
.dod-dont-icon { background: linear-gradient(135deg, #f97070, #c83232); }
.dod-header-icon svg { display: block; color: #fff; }

.dod-col-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.dod-do   .dod-col-header h3 { color: #185c30; }
.dod-dont .dod-col-header h3 { color: #8c1c1c; }

.dod-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 26px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .18s;
}
.dod-item:last-child { border-bottom: none; }
.dod-do-item:hover   { background: #f4faf6; }
.dod-dont-item:hover { background: #fdf4f4; }

.dod-item-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 3px;
  line-height: 1;
}
.dod-do-item   .dod-item-check { background: rgba(34,160,74,.12);  color: #185c30; }
.dod-dont-item .dod-item-check { background: rgba(200,50,50,.10);  color: #8c1c1c; }

.dod-item strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 3px;
  line-height: 1.4;
}
.dod-item p {
  font-size: 12px;
  color: #8a7a68;
  margin: 0;
  line-height: 1.5;
}

/* ─── Areas We Serve ─────────────────────────────────────── */
#areas {
  background: linear-gradient(175deg, #180800 0%, #2e1008 50%, #180800 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
#areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='36' stroke='%23c9972a' stroke-width='.6' fill='none' opacity='.08'/%3E%3Ccircle cx='40' cy='40' r='16' stroke='%23c9972a' stroke-width='.4' fill='none' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
/* Override sec-head colours inside dark section */
#areas .sec-head h2 { color: #fff; }
#areas .ornament-line { background: linear-gradient(90deg, transparent, rgba(201,151,42,.6), transparent); }
#areas .sec-head .sub { color: var(--gold-lt); }

.areas-desc {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,151,42,.28);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  letter-spacing: .4px;
  cursor: default;
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}
.area-chip:hover {
  background: rgba(201,151,42,.16);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-lt);
}
.area-chip-icon { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }
.area-chip-more {
  background: rgba(201,151,42,.12);
  border-color: rgba(201,151,42,.45);
  color: var(--gold-lt);
  font-style: italic;
}
.areas-cta { text-align: center; }
.areas-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  margin-bottom: 22px;
  letter-spacing: .3px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
#faq {
  background: #fff;
  padding: 88px 0;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border-radius: 16px;
  border: 1.5px solid #e8dece;
  overflow: hidden;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: rgba(201,151,42,.5);
  box-shadow: 0 4px 24px rgba(201,151,42,.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover           { color: var(--gold); }
.faq-item.open .faq-q  { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3d0, #f5d878);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .2s;
}
.faq-icon svg { color: var(--gold-dk); display: block; }
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
}
.faq-item.open .faq-icon svg { color: #fff; }

.faq-a {
  display: none;
  padding: 0 24px 22px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-size: 14px;
  color: #6a5a48;
  line-height: 1.78;
  border-top: 1px solid #f0e8d8;
  padding-top: 16px;
  margin: 0;
}

/* ─── Responsive – new sections ──────────────────────────── */
@media (max-width: 960px) {
  .dod-wrap         { grid-template-columns: 1fr; }
  .checklist-grid   { grid-template-columns: 1fr; }
  .checklist-wrap   { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .hero-trust        { gap: 12px; }
  .btn-phone         { display: none; }
  .areas-grid        { gap: 8px; }
  .area-chip         { font-size: 13px; padding: 9px 15px; }
  .checklist-wrap    { padding: 28px 20px; }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT / INTRO SECTION
═══════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.ab-section {
  background: #fff;
  padding: 96px 0 104px;
  overflow: hidden;
  position: relative;
}
.ab-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c9972a 30%, #e8b84b 50%, #c9972a 70%, transparent 100%);
  opacity: .5;
}

/* ── Two-column grid ── */
.ab-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* ═══ LEFT COLUMN ═══════════════════════════════════════ */

/* Eyebrow */
.ab-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ab-eyebrow-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9972a);
}
.ab-eyebrow-line + .ab-eyebrow-label + .ab-eyebrow-line {
  background: linear-gradient(90deg, #c9972a, transparent);
}
.ab-eyebrow-label {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9972a;
  white-space: nowrap;
}

/* Heading */
.ab-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  color: #1a0a02;
  line-height: 1.28;
  margin: 0 0 18px;
}

/* Divider dots */
.ab-divider {
  margin-bottom: 26px;
  line-height: 0;
}

/* Body copy */
.ab-body p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #5a4a3a;
  line-height: 1.85;
  margin: 0 0 16px;
}
.ab-body p:last-child { margin-bottom: 0; }

/* Trust strip */
.ab-trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  background: #fdf8ef;
  border: 1px solid rgba(201,151,42,.2);
  border-radius: 16px;
  padding: 18px 24px;
}
.ab-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.ab-trust-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ab-trust-item strong {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0a02;
  display: block;
}
.ab-trust-item span {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: #9a8878;
  display: block;
}
.ab-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff4d6, #faecc8);
  border: 1px solid rgba(201,151,42,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c9972a;
}
.ab-trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(201,151,42,.2);
  margin: 0 20px;
  flex-shrink: 0;
}

/* ═══ RIGHT COLUMN ═══════════════════════════════════════ */

.ab-media {
  position: relative;
}

/* Decorative rings behind the image */
.ab-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,151,42,.12);
  pointer-events: none;
}
.ab-ring-1 {
  inset: -24px;
}
.ab-ring-2 {
  inset: -48px;
  border-color: rgba(201,151,42,.07);
}

/* Image frame */
.ab-media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 24px rgba(0,0,0,.08),
    0 24px 64px rgba(30,10,0,.13);
  aspect-ratio: 4 / 5;
  background: #fdf8ef;
  z-index: 1;
}
.ab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.ab-media-frame:hover .ab-img {
  transform: scale(1.04);
}
.ab-img-ph {
  width: 100%;
  height: 100%;
}
.ab-img-ph svg {
  width: 100%;
  height: 100%;
}

/* Gold inset border */
.ab-frame-border {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(201,151,42,.22);
  pointer-events: none;
  z-index: 2;
}

/* Floating organic badge */
.ab-float-badge {
  position: absolute;
  bottom: 24px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8b84b, #c9972a);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(201,151,42,.45);
  z-index: 3;
  white-space: nowrap;
  animation: ab-float 3.5s ease-in-out infinite;
}
@keyframes ab-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .ab-grid {
    grid-template-columns: 1fr 360px;
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .ab-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ab-media {
    max-width: 480px;
    margin: 0 auto;
  }
  .ab-media-frame {
    aspect-ratio: 3 / 2;
  }
  .ab-float-badge {
    left: 16px;
    bottom: 16px;
  }
  .ab-ring-1, .ab-ring-2 { display: none; }
}

@media (max-width: 560px) {
  .ab-section { padding: 64px 0 72px; }
  .ab-heading { font-size: 22px; }
  .ab-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ab-trust-sep { display: none; }
  .ab-media-frame { aspect-ratio: 4 / 3; }
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS — FULL OVERHAUL
   Breakpoints: 768px (tablet), 480px (mobile), 360px (small)
═══════════════════════════════════════════════════════════ */

/* ── Base: ensure full-width images & no horizontal overflow ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, video, iframe, embed, object {
  max-width: 100%;
}

/* ── Viewport meta helper: make touch targets bigger ── */
input, select, textarea, button, a {
  -webkit-tap-highlight-color: rgba(201,151,42,.2);
}

/* ════════════════════════════════
   TABLET  ≤ 768px
════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Section padding ── */
  section, .ab-section { padding: 64px 0 !important; }

  /* ── Container ── */
  .ha-container { padding: 0 18px !important; }

  /* ── Navbar ── */
  .nav-inner { padding: 14px 18px !important; }
  .nav-links  { display: none !important; }
  #book-d     { display: none !important; }
  .hamburger  { display: flex !important; }

  /* ── Mobile menu ── */
  #mobile-menu { padding: 16px 18px !important; gap: 14px !important; }
  #mobile-menu a { font-size: 14px !important; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.07); }

  /* ── Hero ── */
  .hero-content { padding: 110px 18px 72px !important; }
  .hero-script  { font-size: clamp(44px,11vw,72px) !important; }
  .hero-display { font-size: clamp(28px,8vw,50px) !important; }
  .hero-sub     { font-size: 13px !important; letter-spacing: 2.5px !important; margin: 16px 0 !important; }
  .cta-row      { gap: 12px !important; }
  .hero-mandala { width: 90vw !important; right: -40px !important; opacity: .06 !important; }
  .hero-trust   { gap: 10px !important; }
  .hero-trust-item { font-size: 13px !important; }

  /* ── Feature strip ── */
  .feature-strip-inner { grid-template-columns: 1fr !important; }
  .fi + .fi { border-left: none !important; border-top: 1px solid #f0e8d8 !important; }
  .fi { padding: 22px 24px !important; }

  /* ── Stats ── */
  .stats-row { grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; }

  /* ── Services ── */
  .srv-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* ── Why / benefits ── */
  .why-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* ── Gallery ── */
  .masonry { columns: 2 !important; column-gap: 12px !important; }
  #gallery  { padding: 64px 0 !important; }

  /* ── Process ── */
  .proc-grid          { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .proc-grid::before  { display: none !important; }

  /* ── Testimonials ── */
  .testi-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* ── Contact ── */
  .contact-wrap { grid-template-columns: 1fr !important; gap: 0 !important; }
  .c-info, .c-form { padding: 32px 20px !important; }

  /* ── Footer ── */
  .footer-cta { flex-direction: column !important; text-align: center !important; gap: 20px !important; }
  .footer-cta h3 { font-size: 38px !important; }
  .footer-bot { flex-direction: column !important; text-align: center !important; gap: 12px !important; }
  .f-row { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }

  /* ── About grid ── */
  .ab-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .ab-media { max-width: 100% !important; }
  .ab-media-frame { aspect-ratio: 4/3 !important; }

  /* ── Checklist ── */
  .checklist-grid { grid-template-columns: 1fr !important; }
  .checklist-wrap { padding: 28px 20px !important; }

  /* ── Do / Don't ── */
  .dod-wrap { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* ── Areas ── */
  .areas-grid { gap: 8px !important; }
  .area-chip  { font-size: 13px !important; padding: 9px 14px !important; }

  /* ── FAQ ── */
  .faq-list { gap: 10px !important; }

  /* ── Section headings ── */
  .sec-head h2 { font-size: clamp(26px,6vw,40px) !important; }
}

/* ════════════════════════════════
   MOBILE  ≤ 480px
════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Container ── */
  .ha-container { padding: 0 16px !important; }

  /* ── Hero ── */
  .hero-content  { padding: 100px 16px 60px !important; }
  .hero-script   { font-size: clamp(36px,12vw,60px) !important; }
  .hero-display  { font-size: clamp(24px,9vw,42px) !important; }
  .hero-sub      { font-size: 11px !important; letter-spacing: 2px !important; }
  .cta-row       { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }
  .btn-gold, .btn-outline { width: 100% !important; text-align: center !important; justify-content: center !important; }
  .hero-trust    { flex-direction: column !important; gap: 8px !important; }
  .btn-phone     { display: none !important; }
  .hero-scroll-hint { display: none !important; }

  /* ── Feature strip ── */
  .feature-strip-inner { grid-template-columns: 1fr !important; }
  .fi { padding: 18px 16px !important; gap: 14px !important; }

  /* ── Stats ── */
  .stats-row { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }

  /* ── Gallery ── */
  .masonry { columns: 1 !important; }

  /* ── Process ── */
  .proc-grid { grid-template-columns: 1fr !important; }

  /* ── Footer ── */
  .f-row { grid-template-columns: 1fr !important; }
  .footer-cta h3 { font-size: 30px !important; }

  /* ── Contact form fields ── */
  .c-form input,
  .c-form select,
  .c-form textarea {
    font-size: 16px !important; /* prevents iOS zoom */
  }

  /* ── About section ── */
  .ab-section  { padding: 56px 0 !important; }
  .ab-heading  { font-size: 22px !important; }
  .ab-trust    { flex-direction: column !important; align-items: flex-start !important; gap: 14px !important; }
  .ab-trust-sep { display: none !important; }
  .ab-float-badge { left: 10px !important; bottom: 12px !important; font-size: 10px !important; padding: 8px 14px 8px 10px !important; }

  /* ── Checklist ── */
  #checklist   { padding: 56px 0 !important; }
  .checklist-wrap { padding: 22px 16px !important; }

  /* ── Areas ── */
  #areas { padding: 56px 0 !important; }
  .areas-grid { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; }
  .area-chip  { font-size: 12px !important; padding: 8px 10px !important; text-align: center !important; }

  /* ── FAQ ── */
  #faq { padding: 56px 0 !important; }

  /* ── Section headings ── */
  .sec-head h2 { font-size: clamp(22px,7vw,34px) !important; }
  .sec-head .sub { font-size: 11px !important; letter-spacing: 2px !important; }

  /* ── Ornament lines ── */
  .ornament-line { max-width: 60px !important; }

  /* ── Buttons full width on mobile ── */
  .checklist-cta .btn-gold,
  .areas-cta .btn-gold { width: 100% !important; text-align: center !important; justify-content: center !important; }
}

/* ════════════════════════════════
   SMALL MOBILE  ≤ 360px
════════════════════════════════ */
@media (max-width: 360px) {
  .ha-container { padding: 0 12px !important; }
  .hero-script  { font-size: 32px !important; }
  .hero-display { font-size: 22px !important; }
  .stats-row    { grid-template-columns: 1fr !important; }
  .areas-grid   { grid-template-columns: 1fr !important; }
  .nav-inner    { padding: 12px 14px !important; }
  .sec-head h2  { font-size: 20px !important; }
}
