/* Lifetouch LLC — shared stylesheet (plain CSS, no build step required) */

:root {
  --radius: 0.75rem;
  --background: #f6f4ef;
  --foreground: #1f2933;
  --card: #ffffff;
  --primary: #14585a;
  --primary-foreground: #f6f4ef;
  --secondary: #ece9e2;
  --secondary-foreground: #14585a;
  --muted: #efece4;
  --muted-foreground: #5b6a6a;
  --accent: #c79a7a;
  --accent-foreground: #2c2118;
  --border: #e4e0d7;
  --ivory: #f6f4ef;
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --gradient-hero: linear-gradient(140deg, #14585a 0%, #0f4446 100%);
  --gradient-soft: linear-gradient(180deg, #f1eee7 0%, #f6f4ef 100%);
  --shadow-soft: 0 28px 70px -28px rgba(20, 88, 90, 0.22);
  --shadow-card: 0 12px 34px -18px rgba(31, 41, 51, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .wrap { padding: 0 24px; } }
@media (min-width: 1024px) { .wrap { padding: 0 32px; } }

.section { padding: 72px 0; }
@media (min-width: 1024px) { .section { padding: 120px 0; } }
.section.pt-0 { padding-top: 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.bg-soft { background: var(--gradient-soft); }
.bg-hero { background: var(--gradient-hero); color: var(--primary-foreground); }
.bg-secondary { background: color-mix(in srgb, var(--secondary) 40%, transparent); }
.bg-muted { background: color-mix(in srgb, var(--muted) 40%, transparent); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent); background: color-mix(in srgb, var(--ivory) 90%, transparent); backdrop-filter: blur(8px); }
.header-row { max-width: 1320px; margin: 0 auto; padding: 0 20px; height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { height: 36px; width: auto; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word .name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.logo-word .tag { margin-top: 2px; font-size: 0.6rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted-foreground); }
.nav-desktop { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a { padding: 8px 12px; border-radius: 6px; font-size: 0.875rem; font-weight: 500; color: color-mix(in srgb, var(--foreground) 75%, transparent); }
.nav-desktop a:hover { background: var(--secondary); color: var(--foreground); }
.nav-desktop a.active { color: var(--primary); }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; gap: 8px; } }
.nav-toggle { display: inline-flex; height: 40px; width: 40px; align-items: center; justify-content: center; border-radius: 6px; background: none; border: none; cursor: pointer; color: var(--foreground); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-mobile { overflow: hidden; max-height: 0; border-bottom: 1px solid var(--border); background: var(--background); transition: max-height 0.3s ease; }
.nav-mobile.open { max-height: 40rem; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 4px; padding: 16px; }
.nav-mobile-inner a { padding: 10px 12px; border-radius: 6px; font-size: 0.875rem; font-weight: 500; }
.nav-mobile-inner a:hover { background: var(--secondary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 8px; font-weight: 500; font-size: 0.9rem; padding: 10px 18px; border: 1px solid transparent; cursor: pointer; transition: all 0.15s ease; white-space: nowrap; }
.btn-hero { background: var(--primary); color: var(--primary-foreground); }
.btn-hero:hover { background: color-mix(in srgb, var(--primary) 88%, black); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--foreground); }
.btn-outline:hover { background: var(--secondary); }
.btn-hero-outline { background: transparent; border-color: color-mix(in srgb, var(--primary-foreground) 40%, transparent); color: var(--primary-foreground); }
.btn-hero-outline:hover { background: color-mix(in srgb, var(--primary-foreground) 12%, transparent); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--secondary); }
.btn-xl { padding: 14px 24px; font-size: 1rem; border-radius: 10px; }
.btn-lg { padding: 12px 20px; font-size: 0.95rem; border-radius: 9px; }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-block { width: 100%; }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; }

.btn-row { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
@media (min-width: 640px) { .btn-row { flex-direction: row; flex-wrap: wrap; } }

/* Hero */
.hero-grid { display: grid; gap: 48px; align-items: center; padding: 72px 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 3fr 2fr; gap: 64px; padding: 120px 0; } }
.hero-copy { max-width: 650px; }
.hero-copy h1 { font-size: 2.25rem; line-height: 1.05; margin-top: 20px; }
@media (min-width: 640px) { .hero-copy h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-copy h1 { font-size: 3.5rem; } }
.hero-copy .lead { margin-top: 24px; font-size: 1.25rem; line-height: 1.6; color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.hero-visual { aspect-ratio: 4/5; width: 100%; border-radius: 1.5rem; box-shadow: var(--shadow-soft); background: var(--gradient-hero); display: flex; align-items: center; justify-content: center; color: var(--primary-foreground); text-align: center; padding: 24px; font-family: var(--font-display); font-size: 1.1rem; }

/* Page hero (inner pages) */
.page-hero { background: var(--gradient-soft); padding: 64px 0 48px; }
@media (min-width: 1024px) { .page-hero { padding: 96px 0 64px; } }
.page-hero-inner { max-width: 780px; }
.page-hero h1 { margin-top: 16px; font-size: 2rem; }
@media (min-width: 640px) { .page-hero h1 { font-size: 2.75rem; } }
.page-hero .desc { margin-top: 16px; font-size: 1.15rem; color: var(--muted-foreground); }
.page-hero .btn-row { margin-top: 28px; }

/* Section heading */
.section-heading { max-width: 640px; }
.section-heading.center { margin: 0 auto; text-align: center; }
.section-heading h2 { font-size: 1.75rem; margin-top: 12px; }
@media (min-width: 640px) { .section-heading h2 { font-size: 2.25rem; } }
.section-heading .desc { margin-top: 14px; font-size: 1.1rem; color: var(--muted-foreground); }

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 28px; box-shadow: var(--shadow-card); }
.card-icon { display: inline-flex; height: 48px; width: 48px; align-items: center; justify-content: center; border-radius: 0.85rem; background: var(--secondary); color: var(--primary); margin-bottom: 16px; font-size: 1.4rem; }
.card h3 { font-size: 1.15rem; margin-top: 4px; }
.card p { margin-top: 8px; color: var(--muted-foreground); line-height: 1.6; }

.step-num { display: inline-flex; height: 44px; width: 44px; align-items: center; justify-content: center; border-radius: 999px; background: var(--gradient-hero); color: var(--primary-foreground); font-family: var(--font-display); font-size: 1.1rem; }

/* Pricing list */
.price-list { margin-top: 24px; border: 1px solid var(--border); border-radius: 1.25rem; background: var(--card); box-shadow: var(--shadow-card); padding: 0 24px; }
.price-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.price-item:last-child { border-bottom: none; }
.price-item-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; align-items: baseline; }
.price-item-top .name { font-weight: 500; }
.price-item-top .detail { margin-left: 8px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.price-item-top .price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--primary); }
.price-item .desc { margin-top: 4px; font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; }

.pricing-group { border: 1px solid var(--border); border-radius: 1.25rem; background: var(--card); padding: 24px; box-shadow: var(--shadow-card); }
.pricing-group-head { display: flex; gap: 12px; align-items: flex-start; }
.pricing-group ul { margin-top: 18px; }
.pricing-group li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.pricing-group li:last-child { border-bottom: none; }
.pricing-disclosure { margin-top: 16px; background: color-mix(in srgb, var(--muted) 60%, transparent); border-radius: 8px; padding: 10px 12px; font-size: 0.8rem; color: var(--muted-foreground); }

/* Membership */
.tier-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 1rem; background: var(--card); padding: 24px; box-shadow: var(--shadow-card); }
.tier-card .price { margin-top: 4px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--primary); }
.tier-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tier-card li { display: flex; gap: 8px; font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.5; }

/* CTA band */
.cta-band { background: var(--gradient-hero); }
.cta-band-inner { max-width: 650px; margin: 0 auto; padding: 72px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
@media (min-width: 1024px) { .cta-band-inner { padding: 120px 32px; } }
.cta-band h2 { color: var(--primary-foreground); font-size: 1.75rem; }
@media (min-width: 640px) { .cta-band h2 { font-size: 2.25rem; } }
.cta-band p { color: color-mix(in srgb, var(--primary-foreground) 85%, transparent); font-size: 1.05rem; }

/* Charm booking widget */
.charm-widget { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); }
.charm-widget-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--secondary) 60%, transparent); padding: 12px 20px; font-size: 0.875rem; font-weight: 500; }
.charm-widget iframe { width: 100%; height: 1000px; border: 0; display: block; }
.charm-widget-foot { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 40%, transparent); padding: 16px 20px; }
@media (min-width: 640px) { .charm-widget-foot { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Forms */
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-size: 0.875rem; font-weight: 500; }
.field input, .field textarea { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-family: var(--font-sans); font-size: 0.95rem; background: var(--background); }
.field textarea { resize: vertical; }
.form-card { border: 1px solid var(--border); border-radius: 1.5rem; background: var(--card); padding: 32px; box-shadow: var(--shadow-card); }
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--secondary); border-radius: 8px; padding: 4px; margin-bottom: 16px; }
.tabs button { border: none; background: none; padding: 8px; border-radius: 6px; font-size: 0.875rem; font-weight: 500; cursor: pointer; color: var(--muted-foreground); }
.tabs button.active { background: var(--card); color: var(--foreground); box-shadow: var(--shadow-card); }

/* FAQ (native details/summary) */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 10px; color: var(--muted-foreground); line-height: 1.6; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--primary); color: var(--primary-foreground); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 56px 20px; }
.footer-row { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .footer-row { flex-direction: row; justify-content: space-between; } }
.footer-brand p { margin-top: 20px; font-size: 0.9rem; color: color-mix(in srgb, var(--primary-foreground) 75%, transparent); max-width: 280px; line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 32px; font-size: 0.9rem; color: color-mix(in srgb, var(--primary-foreground) 80%, transparent); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; color: color-mix(in srgb, var(--primary-foreground) 80%, transparent); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-legal { margin-top: 40px; border-top: 1px solid color-mix(in srgb, var(--primary-foreground) 15%, transparent); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.75rem; color: color-mix(in srgb, var(--primary-foreground) 45%, transparent); }
.footer-legal a:hover { text-decoration: underline; }
.footer-legal .pending { border: 1px solid color-mix(in srgb, var(--primary-foreground) 25%, transparent); border-radius: 999px; padding: 2px 8px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-bottom { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; font-size: 0.75rem; color: color-mix(in srgb, var(--primary-foreground) 55%, transparent); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Emergency banner */
.banner { border-top: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.banner-inner { max-width: 1320px; margin: 0 auto; padding: 16px 20px; display: flex; gap: 12px; font-size: 0.9rem; }
@media (min-width: 1024px) { .banner-inner { padding: 16px 32px; } }

/* Waitlist / welcome modal */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(31,41,51,0.5); backdrop-filter: blur(2px); }
.modal-overlay.open { display: flex; }
.modal-box { position: relative; width: 100%; max-width: 420px; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-soft); overflow: hidden; }
.modal-close { position: absolute; right: 14px; top: 14px; height: 32px; width: 32px; border-radius: 999px; border: none; background: rgba(255,255,255,0.8); cursor: pointer; }
.modal-head { background: var(--gradient-hero); color: var(--primary-foreground); padding: 28px; }
.modal-body { padding: 24px 28px; }
.badge-pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: rgba(255,255,255,0.15); padding: 4px 12px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.muted { color: var(--muted-foreground); }
.small { font-size: 0.85rem; }
.coming-soon { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 15%, transparent); padding: 2px 8px; font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-foreground); }
