/* Fabric Life Utah — mirrors fabriclife.com (Brizy/WP) design system
   Palette + type sampled from the Florida site: Open Sans, purple #602A97,
   near-black #1C1C1C nav, lavender-grey / near-white alternating sections. */

:root {
  --purple: #602A97;
  --purple-deep: #4b2178;
  --purple-soft: #757BBD;
  --lavender: #D6BCFA;
  --ink: #1C1C1C;
  --body: #2d3748;
  --heading-dark: #1a202c;
  --bg-light: #f7f7fa;
  --bg-lavender: #d8dae5;
  --card: #ffffff;
  --btn-dark: #23242b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--body);
  background: var(--bg-light);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #000;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 4vw;
  min-height: 80px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-badge {
  width: 58px; height: 58px; border-radius: 50%;
  border: 0; overflow: hidden; flex-shrink: 0;
  background: #3E2452 url('logo.jpg') center / cover no-repeat;
}
.logo-badge .l1, .logo-badge .l2 { display: none; }
.logo-word { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .4px; }
.logo-word span { color: var(--lavender); }

.nav-links { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav-links a {
  color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: #b9a5e8; }

.nav-social { display: flex; gap: 10px; margin-left: 18px; }
.chip-soon {
  width: 30px; height: 30px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; position: relative;
  opacity: .55; pointer-events: none;
}
.chip-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.chip-yelp { background: #d32323; color: #fff; font-weight: 800; font-family: Georgia, serif; }
.nav-social .tag { display: none; }

.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  padding: 60px 6vw;
  /* AI-generated brand hero (Gemini 3 image, 2026-07-15) — treated linen sofa beading a spill.
     Left→right light wash keeps the purple headline legible over the photo. */
  background:
    linear-gradient(90deg, rgba(247,247,250,.95) 0%, rgba(247,247,250,.74) 34%, rgba(247,247,250,.34) 60%, rgba(247,247,250,.08) 82%, rgba(247,247,250,0) 100%),
    url('hero.jpg');
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat, no-repeat;
}
.hero-inner { max-width: 640px; }
.hero h1 {
  font-size: clamp(48px, 6.4vw, 80px);
  line-height: 1.25; font-weight: 700; letter-spacing: -1.5px;
  color: var(--purple); margin-bottom: 18px;
}
.hero .sub {
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: 1.5px; color: var(--purple);
  font-weight: 700; text-transform: uppercase; margin-bottom: 30px;
}
.hero-note {
  position: absolute; bottom: 12px; right: 16px;
  font-size: 11px; color: #9a97a8; letter-spacing: .3px;
}

.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  background: var(--btn-dark); color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 14px 42px; border-radius: 100px; border: 1px solid var(--btn-dark);
}
.btn:hover { background: #000; }
.btn-purple { background: var(--purple); border-radius: 8px; }
.btn-purple:hover { background: var(--purple-deep); }

.calls { margin-top: 22px; font-size: 15px; color: var(--ink); }
.calls .label { font-weight: 700; margin-bottom: 6px; }
.calls a { color: var(--purple); font-weight: 600; text-decoration: none; }
.badge-ph {
  display: inline-block; font-size: 10.5px; font-weight: 600; vertical-align: 2px;
  background: #efe6fb; color: var(--purple); border: 1px solid #d9c8f2;
  border-radius: 9px; padding: 1px 8px; margin-left: 8px; letter-spacing: .4px;
}

/* ---------- Sections ---------- */
section { padding: 72px 6vw; }
.sec-lavender { background: var(--bg-lavender); }
.sec-light { background: var(--bg-light); }
.wrap { max-width: 1060px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; }

h2.sec-title {
  text-align: center; font-size: clamp(34px, 4.6vw, 60px);
  color: var(--heading-dark); font-weight: 700; letter-spacing: -1px; margin-bottom: 26px;
}
h2.sec-title .accent { color: var(--purple); font-weight: 700; }
h3.block-title {
  text-align: center; color: var(--purple); font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px); margin: 40px 0 18px;
}
.lede { text-align: center; font-size: 14px; margin-bottom: 8px; }
p { margin-bottom: 14px; }
.strong-note { font-weight: 700; color: var(--heading-dark); }

.commandments { max-width: 720px; margin: 0 auto; font-size: 15px; }
.commandments li { list-style: none; margin-bottom: 6px; }
.commandments .close {
  margin-top: 14px; font-weight: 700; color: var(--heading-dark); text-align: center;
}

/* ---------- Location cards ---------- */
.loc-grid { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.loc-card {
  background: var(--card); border-radius: 10px;
  box-shadow: 0 4px 18px rgba(20,20,40,.10);
  padding: 22px; width: 330px; text-align: center;
}
.loc-card h3 { color: var(--purple); font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.loc-card .map {
  width: 100%; height: 180px; border: 0; border-radius: 6px;
  background: #e8e8ef; margin-bottom: 14px;
  position: relative; z-index: 0; overflow: hidden;
}
.loc-card .map .leaflet-control-attribution { font-size: 9px; }
.loc-card .who { color: var(--purple-deep); font-weight: 600; margin-bottom: 4px; }
.loc-card .line { font-size: 15px; margin-bottom: 3px; }
.loc-card a { color: var(--purple); text-decoration: none; font-weight: 600; }

/* ---------- Form ---------- */
.form-card {
  background: var(--card); border-radius: 8px;
  box-shadow: 0 4px 18px rgba(20,20,40,.08);
  max-width: 520px; margin: 30px auto 0; padding: 34px 38px;
}
.form-card label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin: 14px 0 5px; }
.form-card label .req { color: #c0392b; }
.form-card input, .form-card select {
  width: 100%; padding: 10px 12px; font-size: 14.5px;
  font-family: inherit; color: var(--ink);
  border: 1px solid #d9dbe4; border-radius: 5px; background: #fff;
}
.form-card input:focus, .form-card select:focus { outline: 2px solid #b9a5e8; border-color: #b9a5e8; }
.form-actions { text-align: center; margin-top: 24px; }
.form-msg { display: none; margin-top: 16px; text-align: center; font-size: 14px; color: var(--purple-deep); font-weight: 600; }

/* ---------- Instagram placeholder ---------- */
.ig-card {
  background: var(--card); border-radius: 8px;
  box-shadow: 0 4px 18px rgba(20,20,40,.08);
  max-width: 640px; margin: 30px auto 0; padding: 26px;
}
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ig-tile {
  aspect-ratio: 1; border-radius: 4px;
  background: linear-gradient(135deg, #ece9f4, #dcd7ea);
  display: flex; align-items: center; justify-content: center;
  color: #a79fc4; font-size: 20px;
}
.ig-note { text-align: center; font-size: 13px; margin-top: 14px; color: #8a8798; }

/* ---------- Testimonials ---------- */
.testi-grid { display: flex; gap: 40px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.testi { width: 300px; font-size: 14.5px; text-align: justify; }
.testi .who { display: block; text-align: center; font-weight: 800; color: var(--heading-dark); font-size: 17px; margin-top: 16px; }
.testi-src { text-align: center; font-size: 12.5px; color: #8a8798; margin-top: 26px; }

/* ---------- Download block ---------- */
.dl-block { text-align: center; margin-top: 8px; }

/* ---------- Footer CTA + bar ---------- */
.footer-cta {
  text-align: center; padding: 80px 6vw;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 2px, rgba(0,0,0,0) 2px 5px),
    radial-gradient(ellipse at 50% 0%, #efedf4 0%, #dcdbe6 60%, #ccccda 100%);
}
.footer-cta h2 { color: var(--purple); font-weight: 800; font-size: clamp(26px, 3vw, 36px); margin-bottom: 22px; }
.footer-bar {
  background: #000; color: #cfcfd8; text-align: center;
  font-size: 13px; padding: 18px 6vw;
}
.footer-bar .demo { color: #6f6f7c; font-size: 11.5px; margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; min-height: 64px; }
  .nav-links { gap: 16px; font-size: 14px; flex-wrap: wrap; }
  .testi { width: 100%; max-width: 420px; }
}
@media (max-width: 640px) {
  section { padding: 54px 6vw; }
  .nav-links { margin-left: 0; width: 100%; padding-bottom: 8px; }
  .form-card { padding: 26px 20px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
