/* ===========================
   ASHERKAI — Clean & Modern
   =========================== */

:root {
  --black: #0f0f0f;
  --charcoal: #1c1c1c;
  --mid: #5a5a5a;
  --light: #a8a8a8;
  --border: #e8e8e8;
  --bg: #fafaf8;
  --white: #ffffff;
  --gold: #b8966e;
  --gold-light: #f5ede3;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
em { font-style: italic; color: var(--gold); }
p { color: var(--mid); }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav ul a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid);
  transition: color 0.2s;
}
nav ul a:hover { color: var(--black); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-ai-cta {
  color: var(--white) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: opacity 0.2s !important;
}
.nav-ai-cta:hover { opacity: 0.82; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 2rem;
}
.btn-primary:hover { background: var(--gold); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  padding: 0.7rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  margin-top: 1.5rem;
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

.btn-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-block;
  margin-top: 1.2rem;
  transition: opacity 0.2s;
}
.btn-text:hover { opacity: 0.7; }

/* PHOTO PLACEHOLDER */
.photo-placeholder {
  background: var(--gold-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  color: var(--light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-placeholder.small {
  aspect-ratio: 1/1;
  max-width: 280px;
  border-radius: 50%;
}

/* HERO */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-text { max-width: 520px; }
.hero-sub {
  font-size: 1.1rem;
  margin-top: 1.4rem;
  color: var(--mid);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
}

/* INTRO STRIP */
.intro-strip {
  background: var(--black);
  padding: 4rem 0;
}
.intro-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}
.intro-strip strong { color: var(--white); font-weight: 400; }

/* FOR YOU */
.for-you {
  padding: 7rem 0;
}
.for-you h2 { text-align: center; margin-bottom: 3.5rem; }
.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.for-you-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
}
.icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.for-you-item p { font-size: 0.95rem; line-height: 1.8; }

/* PACKAGES PREVIEW */
.packages-preview {
  background: var(--gold-light);
  padding: 7rem 0;
}
.packages-preview h2 { text-align: center; }
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  font-size: 1rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.package-card {
  background: var(--white);
  padding: 2.8rem;
  border-radius: 4px;
  position: relative;
  border: 1px solid transparent;
}
.package-card.featured {
  border-color: var(--gold);
}
.package-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.8rem;
}
.package-card p { font-size: 0.95rem; line-height: 1.8; margin-top: 0.5rem; }
.packages-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}
.packages-note a { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ABOUT TEASER */
.about-teaser { padding: 7rem 0; }
.about-teaser-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser-text h2 { margin-bottom: 1.5rem; }
.about-teaser-text p { font-size: 0.98rem; line-height: 1.85; }

/* CTA SECTION */
.cta-section {
  background: var(--charcoal);
  padding: 7rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 0; }
.cta-section .btn-primary { background: var(--gold); }
.cta-section .btn-primary:hover { background: var(--white); color: var(--charcoal); }

/* FOOTER */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--black) !important;
  font-weight: 400;
}
.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--mid) !important;
}
.footer-copy { font-size: 0.75rem; color: var(--light) !important; margin-top: 0.4rem; }

/* LOGO IMAGE */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  opacity: 0.85;
}

/* HEADSHOT */
.headshot {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}
.headshot-round {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* PAGE HERO */
.page-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero-sub {
  max-width: 560px;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--mid);
}

/* WHAT TO EXPECT STRIP */
.what-to-expect {
  background: var(--black);
  padding: 3.5rem 0;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.expect-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold) !important;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.expect-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6) !important;
  letter-spacing: 0.04em;
}
.tier-note {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.2rem;
}

/* PACKAGE FULL SECTIONS */
.package-full {
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
}
.package-full.alt-bg { background: var(--white); }
.package-full.featured-package { background: var(--gold-light); }

.package-full-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.package-full-header { max-width: 680px; }
.package-full-header h2 { margin-bottom: 0.5rem; }
.package-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--mid) !important;
  margin-top: 0.5rem;
}
.package-full-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.package-full-desc p {
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.package-full-includes h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.package-full-includes ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.package-full-includes ul li {
  font-size: 0.92rem;
  color: var(--mid);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.2rem;
  position: relative;
}
.package-full-includes ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* DAILY CHECK-IN DEMO */
.checkin-feature {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border);
}
.checkin-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.checkin-feature > p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.checkin-demo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.2rem 0;
}
.checkin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.checkin-q {
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 400;
}
.checkin-faces {
  display: flex;
  gap: 0.5rem;
  font-size: 1.4rem;
}
.face { opacity: 0.3; cursor: default; }
.face.active { opacity: 1; }
.checkin-input-mock {
  font-size: 0.78rem;
  color: var(--light);
  font-style: italic;
  border-bottom: 1px solid var(--border);
  flex: 1;
  padding-bottom: 2px;
}
.checkin-note {
  font-size: 0.8rem !important;
  color: var(--light) !important;
  font-style: italic;
  margin-top: 0.8rem;
  margin-bottom: 0 !important;
}

/* PRICING */
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--black) !important;
  margin-top: 0.8rem;
  line-height: 1;
}
.price-per {
  font-size: 1rem;
  color: var(--mid);
  font-weight: 300;
}
.upsell-note {
  font-size: 0.8rem !important;
  color: var(--gold) !important;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* PACKAGE DURATION / LABELS */
.package-duration {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid) !important;
  margin-bottom: 0.5rem;
}

/* ABOUT PAGE */
.about-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.about-hero-text h1 { margin-bottom: 1rem; }
.about-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--mid);
  margin-top: 1rem;
}
.about-headshot {
  width: 340px;
  height: 420px;
  aspect-ratio: unset;
  border-radius: 4px;
  object-position: center top;
}

.story {
  padding: 7rem 0;
}
.story-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 820px;
}
.story-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.story-block:last-child { border-bottom: none; padding-bottom: 0; }
.story-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  padding-top: 0.3rem;
}
.story-text p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  color: var(--mid);
}
.story-text p:last-child { margin-bottom: 0; }

.pull-quote {
  background: var(--black);
  padding: 6rem 0;
  text-align: center;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.quote-attr {
  font-size: 0.78rem;
  color: var(--gold) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CONTACT PAGE */
.contact-section {
  padding: 6rem 0 7rem;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hidden { display: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full-width { grid-column: 1 / -1; }
label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--light);
}
input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--light); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }
.btn-submit { margin-top: 0.5rem; cursor: pointer; border: none; }

.what-happens { margin-bottom: 3rem; }
.what-happens h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.step p {
  font-size: 0.9rem;
  line-height: 1.7;
  padding-top: 0.2rem;
}
.contact-quote {
  background: var(--gold-light);
  padding: 1.8rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.phone-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  white-space: nowrap;
}
.contact-direct {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  background: var(--white);
}
.contact-direct-label {
  font-size: 0.72rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid) !important;
  margin-bottom: 0.6rem;
}
.contact-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transition: opacity 0.2s;
}
.contact-phone:hover { opacity: 0.7; }
.contact-direct-note {
  font-size: 0.78rem !important;
  color: var(--light) !important;
  font-style: italic;
}
.contact-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo { order: -1; display: flex; justify-content: center; }
  .headshot { max-width: 280px; aspect-ratio: 1/1; object-position: center top; border-radius: 50%; }
  .for-you-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-teaser-photo { display: flex; justify-content: center; }
  nav ul { gap: 1.2rem; }
  .expect-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .package-full-body { grid-template-columns: 1fr; gap: 2rem; }
  .checkin-row { flex-direction: column; align-items: flex-start; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-photo { display: flex; justify-content: center; }
  .about-headshot { width: 260px; height: 320px; }
  .story-block { grid-template-columns: 1fr; gap: 0.8rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
