/* =========================================================
   AKG LASH ACADEMY — Master Stylesheet
   Neutral / cream tones with black accents.
   Edit the colour or font values below to re-skin the whole site.
   ========================================================= */

/* ---------- Brand colours & fonts ---------- */
:root {
  --cream:      #F6F2EC;   /* main page background        */
  --sand:       #ECE5DB;   /* alternate section background */
  --taupe:      #CDBFAE;   /* soft accent / borders        */
  --taupe-deep: #A8967F;   /* darker accent                */
  --ink:        #141210;   /* near-black text & buttons    */
  --ink-soft:   #3A342E;   /* softer dark text             */
  --muted:      #7A7168;   /* muted body text              */
  --white:      #FFFFFF;
  --line:       #E1D9CD;   /* hairline dividers            */

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1200px;
  --radius: 2px;
  --shadow: 0 18px 50px rgba(20,18,16,0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.1; letter-spacing: .3px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
p  { margin-bottom: 1rem; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--taupe-deep);
  margin-bottom: 1.1rem;
}
.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--sand { background: var(--sand); }
.section--ink  { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--sm { padding: 12px 24px; font-size: .66rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,236,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: var(--serif); font-size: 1.9rem; letter-spacing: 4px; color: var(--ink); }
.brand span { font-size: .58rem; font-family: var(--sans); letter-spacing: .16em; display: block; text-align: center; color: var(--taupe-deep); margin-top: -2px; white-space: nowrap; }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a {
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 500;
  color: var(--ink-soft); padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--ink); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); display: block; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background-color: var(--taupe);
  background-image: linear-gradient(90deg, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0.15) 60%, rgba(20,18,16,0) 100%), url('images/hero.jpg');
  background-size: cover; background-position: center;
}
.hero__inner { color: var(--cream); max-width: 620px; }
.hero__inner .eyebrow { color: var(--taupe); }
.hero h1 { color: var(--white); }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 1.4rem 0 2rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Generic photo placeholder blocks ---------- */
.photo {
  background-color: var(--sand);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.photo::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe-deep); padding: 20px; opacity: .8;
}
/* When a real background image is set inline, hide the label */
.photo.has-img::after { display: none; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split .photo { min-height: 460px; }

.feature { text-align: left; }
.feature .num { font-family: var(--serif); font-size: 2.4rem; color: var(--taupe-deep); display: block; margin-bottom: .4rem; }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon { font-size: 1.6rem; margin-bottom: .8rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Product cards ---------- */
.product { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.product .photo { aspect-ratio: 1/1; }
.product__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.product__tag { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-deep); margin-bottom: 8px; }
.product h3 { font-size: 1.35rem; margin-bottom: 6px; }
.product__desc { color: var(--muted); font-size: .9rem; margin-bottom: 16px; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product__price { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.badge { display: inline-block; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; background: var(--taupe); color: var(--ink); padding: 4px 10px; }
.badge--soldout { background: var(--line); color: var(--muted); }

/* ---------- Course curriculum list ---------- */
.module { border-bottom: 1px solid var(--line); padding: 22px 0; display: flex; gap: 22px; align-items: flex-start; }
.module:last-child { border-bottom: 0; }
.module .m-num { font-family: var(--serif); font-size: 1.6rem; color: var(--taupe-deep); min-width: 46px; }
.module h4 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.module p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Pricing / includes list ---------- */
.includes { list-style: none; }
.includes li { padding: 12px 0 12px 34px; position: relative; border-bottom: 1px solid var(--line); }
.includes li::before { content: '✓'; position: absolute; left: 0; top: 12px; color: var(--taupe-deep); font-weight: 700; }
.price-card {
  background: var(--white); border: 1px solid var(--ink); padding: 42px 38px; text-align: center; box-shadow: var(--shadow);
}
.price-card .price { font-family: var(--serif); font-size: 4rem; color: var(--ink); line-height: 1; }
.price-card .price small { font-size: 1.1rem; color: var(--muted); }

/* ---------- Steps / how it works ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 70px; margin-bottom: 38px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-family: var(--serif); font-size: 2rem; color: var(--taupe-deep);
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); margin: 0; }
.section--ink .step p { color: rgba(246,242,236,0.72); }
.section--ink .step::before { color: var(--taupe); }
.section--ink .includes li { border-color: rgba(255,255,255,0.14); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery .photo { aspect-ratio: 3/4; }

/* ---------- Quote / testimonial ---------- */
.quote { max-width: 780px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.3rem); color: var(--ink); line-height: 1.35; }
.quote cite { display: block; margin-top: 1.2rem; font-style: normal; text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; color: var(--taupe-deep); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--taupe-deep); font-family: var(--sans); }
.faq details[open] summary::after { content: '–'; }
.faq p { color: var(--muted); margin: 14px 0 0; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; text-align: left; }
.field label { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--white);
  font-family: var(--sans); font-size: .95rem; color: var(--ink); border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }

/* ---------- Banner strip ---------- */
.strip { background: var(--ink); color: var(--cream); text-align: center; padding: 12px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; gap: 10px; max-width: 460px; margin: 1.4rem auto 0; }
.newsletter input { flex: 1; padding: 14px 16px; border: 1px solid var(--taupe); background: transparent; color: inherit; font-family: var(--sans); }
.section--ink .newsletter input { color: var(--cream); }
.newsletter input::placeholder { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,242,236,0.7); padding: 70px 0 30px; }
.site-footer h4 { color: var(--cream); font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid a { display: block; padding: 5px 0; color: rgba(246,242,236,0.7); font-size: .92rem; }
.footer-grid a:hover { color: var(--cream); }
.footer-brand .brand { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; letter-spacing: .05em; }

/* ---------- Utility spacing for page intros ---------- */
.page-hero { background: var(--sand); padding: clamp(70px, 10vw, 130px) 0 clamp(50px,7vw,90px); text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .photo { min-height: 320px; order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 10px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease; height: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin: 12px 0 0; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  body { font-size: 16px; }
}
