/* Public website layer on top of ls.css */
body.site { background: var(--cream); }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--cream) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; text-decoration: none !important; }
.brand img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.brand small { display: block; font: 700 .68rem var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--teal-2); }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a { color: var(--navy); font-weight: 700; padding: 8px 12px; border-radius: 999px; font-size: .92rem; }
.nav a:hover, .nav a.active { background: var(--cream-2); text-decoration: none; }
.nav .btn { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 72px; background: var(--paper); flex-direction: column; padding: 12px 16px 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); align-items: stretch; }
  .nav.open { display: flex; }
  .nav .btn { margin: 8px 0 0; }
}

/* hero */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('../img/brand/header.jpg') center/cover no-repeat; opacity: .28; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,39,72,.95) 30%, rgba(14,39,72,.55) 70%, rgba(42,157,143,.35)); }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding-top: clamp(48px, 8vw, 110px); padding-bottom: clamp(48px, 8vw, 110px); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: .4em; }
.hero h1 em { font-style: italic; color: var(--mustard); }
.hero p.lead { font-size: 1.15rem; color: #e6ecf5; max-width: 52ch; }
.hero .eyebrow { color: var(--mustard); }
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-pills span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: .35em .85em; border-radius: 999px; font-size: .82rem; font-weight: 700; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } .hero-art { max-width: 380px; margin: 0 auto; } }

/* service cards */
.svc { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: start; }
.svc .ico { width: 64px; height: 64px; border-radius: 16px; background: var(--teal-soft); display: grid; place-items: center; }
.svc .ico svg { width: 38px; height: 38px; }
.svc.gold .ico { background: var(--mustard-soft); }
.svc.coral .ico { background: var(--coral-soft); }
.price { font: 700 1.1rem var(--font-display); color: var(--navy); }
.price small { font: 600 .78rem var(--font-body); color: var(--faint); }

/* photo band */
.band { background: var(--navy); color: #fff; }
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: var(--mustard); }
.band .muted { color: #c9d3e3; }
.masonry { columns: 3 260px; column-gap: 14px; }
.masonry figure { margin: 0 0 14px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface-2); }
.masonry img { width: 100%; height: auto; transition: transform .4s ease; cursor: zoom-in; }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: linear-gradient(transparent, rgba(14,39,72,.85)); color: #fff; font-size: .8rem; font-weight: 700; }

/* checklist */
.checklist li { list-style: none; position: relative; padding: 10px 0 10px 40px; border-bottom: 1px dashed var(--line); }
.checklist li::before { content: ''; position: absolute; left: 0; top: 12px; width: 22px; height: 22px; border: 2px solid var(--teal); border-radius: 6px; background: var(--paper); }
.checklist li input { position: absolute; left: 0; top: 12px; width: 22px; height: 22px; opacity: 0; cursor: pointer; margin: 0; }
.checklist li:has(input:checked)::before { background: var(--teal); }
.checklist li:has(input:checked) { color: var(--faint); text-decoration: line-through; }
.checklist li:has(input:checked)::after { content: '✓'; position: absolute; left: 5px; top: 10px; color: #fff; font-weight: 900; }
.checklist strong { color: var(--navy); }

/* footer */
.site-footer { background: var(--navy); color: #c9d3e3; padding: 48px 0 24px; margin-top: 40px; }
.site-footer a { color: #fff; }
.site-footer h4 { color: var(--mustard); font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,.15); margin-top: 32px; padding-top: 18px; font-size: .8rem; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.social a:hover { background: var(--teal); text-decoration: none; }
.social svg { width: 20px; height: 20px; fill: #fff; }

/* quilt pattern divider */
.quilt-divider { height: 18px; background: linear-gradient(135deg, var(--teal) 25%, transparent 25%) 0 0/36px 36px, linear-gradient(225deg, var(--mustard) 25%, transparent 25%) 0 0/36px 36px, linear-gradient(45deg, var(--coral) 25%, transparent 25%) 0 0/36px 36px, linear-gradient(315deg, var(--navy) 25%, transparent 25%) 0 0/36px 36px; opacity: .85; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(14,39,72,.92); display: none; align-items: center; justify-content: center; z-index: 500; padding: 20px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 10px; box-shadow: var(--shadow); }

/* testimonial / trust */
.trust { display: flex; flex-wrap: wrap; gap: 18px 36px; justify-content: center; align-items: center; }
.trust div { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: .95rem; }
.trust svg { width: 26px; height: 26px; }

.step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.step .n { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--mustard); font: 700 1.2rem var(--font-display); display: grid; place-items: center; }
.legal-doc h2 { font-size: 1.3rem; margin-top: 1.6em; }

/* promotion banner */
.promo-bar { background: var(--mustard); color: var(--navy); font-size: .9rem; padding: 8px 0; text-align: center; }
.promo-bar .code { font: 800 .85rem ui-monospace, monospace; background: var(--navy); color: #fff; padding: 2px 8px; border-radius: 6px; letter-spacing: .08em; }
.promo-bar a { color: var(--navy); font-weight: 800; text-decoration: underline; }

/* rotating customer-quilt carousel */
.carousel { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy); padding: 26px 0; }
.carousel .track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.cframe { flex: 0 0 100%; margin: 0; display: flex; flex-direction: column; align-items: center; padding: 0 60px; box-sizing: border-box; }
.cframe img { max-height: 480px; max-width: 100%; border: 10px solid #f6f1e7; outline: 3px solid var(--mustard); outline-offset: -14px; box-shadow: 0 18px 40px rgba(0,0,0,.45); background: #fff; cursor: zoom-in; }
.cframe figcaption { color: #fff; font-family: var(--font-display); font-weight: 700; margin-top: 12px; font-size: 1.05rem; }
.cbtn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); color: #fff; border: 0; width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.cbtn:hover { background: var(--mustard); color: var(--navy); }
.cbtn.prev { left: 10px; } .cbtn.next { right: 10px; }
@media (max-width: 600px) { .cframe { padding: 0 44px; } .cframe img { max-height: 300px; } }

/* Reviews + blog snippets */
.stars { color: var(--mustard); letter-spacing: 1px; font-size: 1.05rem; } .stars .off { color: var(--line); }
.quote { margin: 14px 0; padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--radius); }
.quote p { margin: 6px 0 8px; font-style: italic; } .quote footer { font-size: .8rem; color: var(--faint); font-weight: 700; }
.post-mini { display: flex; gap: 14px; align-items: center; margin: 12px 0; color: var(--text); text-decoration: none !important; }
.post-mini img { width: 84px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; }
.post-mini:hover strong { color: var(--teal); }
