/* ============================================================
   Ember & Co. — styles.css
   ============================================================ */

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

/* ── Custom Properties ── */
:root {
  --bg:           #faf7f2;
  --surface:      #f0ebe0;
  --surface-2:    #e8e0d0;
  --dark:         #1c1814;
  --charcoal:     #3a3530;
  --muted:        #7c736a;
  --light-muted:  #b0a89e;
  --amber:        #b8732a;
  --amber-light:  #d08840;
  --amber-pale:   #f5e6cc;

  --nav-height: 72px;
  --max-w: 1100px;
  --radius: 12px;
}

/* ============================================================
   SNIPCART THEME OVERRIDES
   Maps Snipcart's CSS variables to Ember & Co.'s design tokens
   ============================================================ */
:root {
  /* Colours */
  --color-default:        #1c1814;   /* primary text → --dark */
  --color-alt:            #7c736a;   /* secondary text → --muted */
  --color-icon:           #7c736a;
  --color-input-label:    #3a3530;   /* --charcoal */
  --color-link:           #b8732a;   /* --amber */
  --color-link-hover:     #d08840;   /* --amber-light */
  --color-input:          #1c1814;
  --color-input-icon:     #b0a89e;
  --color-placeholder:    #b0a89e;   /* --light-muted */
  --color-discount:       #b8732a;
  --color-error:          #c0392b;
  --color-success:        #2e7d52;

  /* Backgrounds */
  --bgColor-default:      #faf7f2;   /* --bg */
  --bgColor-alt:          #f0ebe0;   /* --surface */
  --bgColor-input:        #e8e0d0;   /* --surface-2 */
  --bgColor-modal:        #faf7f2;
  --bgColor-modalOverlay: rgba(28, 24, 20, 0.55);

  /* Buttons — primary (Add to Cart, Place Order, etc.) */
  --color-buttonPrimary:            #fff;
  --color-buttonPrimary-hover:      #fff;
  --color-buttonPrimary-active:     #fff;
  --bgColor-buttonPrimary:          #b8732a;
  --bgColor-buttonPrimary-hover:    #d08840;
  --bgColor-buttonPrimary-active:   #a06020;
  --border-buttonPrimary:           transparent;
  --border-buttonPrimary-hover:     transparent;

  /* Buttons — secondary (ghost) */
  --color-buttonSecondary:          #1c1814;
  --color-buttonSecondary-hover:    #b8732a;
  --bgColor-buttonSecondary:        transparent;
  --bgColor-buttonSecondary-hover:  #f5e6cc;
  --border-buttonSecondary:         rgba(28, 24, 20, 0.25);
  --border-buttonSecondary-hover:   #b8732a;

  /* Borders & dividers */
  --borderColor-default:    rgba(0, 0, 0, 0.08);
  --borderColor-input:      rgba(0, 0, 0, 0.12);
  --borderColor-input-focus: #b8732a;

  /* Border radii */
  --border-radius-button: 8px;
  --border-radius-input:  8px;

  /* Typography */
  --font-family: 'DM Sans', sans-serif;

  /* Shadow */
  --shadow-modal: 0 24px 64px rgba(28, 24, 20, 0.18);
}

/* ── Additional Snipcart component tweaks ── */

/* Cart header background */
.snipcart-modal__header {
  background: var(--bgColor-alt) !important;
  border-bottom: 1px solid var(--borderColor-default) !important;
}

/* Cart close button */
.snipcart-modal__close-icon {
  color: var(--color-alt) !important;
}
.snipcart-modal__close:hover .snipcart-modal__close-icon {
  color: var(--color-default) !important;
}

/* Item thumbnail border */
.snipcart-item-thumb {
  border-radius: 8px !important;
  overflow: hidden !important;
}

/* Input focus ring */
.snipcart__input:focus,
.snipcart__select:focus {
  box-shadow: 0 0 0 3px rgba(184, 115, 42, 0.14) !important;
  outline: none !important;
}

/* Order summary header */
.snipcart-order__summary-fees-title,
.snipcart-cart-summary__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  color: var(--color-default) !important;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-height);
}

h1, h2, h3, h4, .logo-text {
  font-family: 'Cormorant Garamond', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 13px 32px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 115, 42, 0.28);
}

.btn-ghost {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 12px 28px;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(28, 24, 20, 0.25);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ── Eyebrow Label ── */
.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* ── Section Heading ── */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}

.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: var(--nav-height);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.logo-amp {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--amber);
}

/* Nav actions (cart + hamburger wrapper) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Force account button visible regardless of Snipcart's account-feature toggle */
.snipcart-customer-signin,
button.snipcart-customer-signin,
button.snipcart-customer-signin.account-btn {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Account button */
.account-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.account-btn:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
  color: var(--amber);
}

.account-btn-label {
  display: inline;
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.cart-btn:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
  color: var(--amber);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  /* Hidden when count is 0 — Snipcart manages this */
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 48px 40px;
}

.footer-logo .logo-text {
  font-size: 20px;
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--amber);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border-radius: 50%;
  color: var(--muted);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.social-links a:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 20px 48px;
}

.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--light-muted);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCT CARD (shared: homepage featured + products page)
   ============================================================ */
.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(28, 24, 20, 0.10);
  border-color: rgba(184, 115, 42, 0.25);
}

.product-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-info {
  padding: 20px 22px 22px;
}

.product-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--amber-pale);
  color: var(--amber);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 6px;
}

.product-scent {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* ── Add to Cart Button ── */
.btn-add-to-cart {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.btn-add-to-cart:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184, 115, 42, 0.28);
}

.btn-add-to-cart:active {
  transform: translateY(0);
  box-shadow: none;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--amber);
}

.product-size {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--light-muted);
}

/* Product card image background fallback */
.product-img { background: var(--surface-2); }

/* ============================================================
   PAGE HERO (Products, About, Contact)
   ============================================================ */
.page-hero {
  padding: 100px 48px 72px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 16px;
}

.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* Hero */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  background-image: url('img/sample-candle-pic.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 16, 12, 0.52) 0%,
    rgba(20, 16, 12, 0.38) 50%,
    rgba(20, 16, 12, 0.58) 100%
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 220, 175, 0.9);
  margin-bottom: 24px;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  max-width: 840px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.65s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

/* Ghost button variant for dark hero backgrounds */
.hero .btn-ghost {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .btn-ghost:hover {
  color: #fff;
  border-color: var(--amber-light);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Featured section */
.featured {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.featured-header {
  text-align: center;
  margin-bottom: 56px;
}

.featured-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.featured-footer {
  text-align: center;
  margin-top: 48px;
}

/* Values section */
.values {
  background: var(--surface);
  padding: 100px 48px;
}

.values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--amber);
}

.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Candle of the Month Membership ── */
.membership {
  background: var(--dark);
  padding: 100px 48px;
}

.membership-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.membership-content .eyebrow {
  color: var(--amber-light);
}

.membership-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.membership-content h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.membership-content > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.membership-perks {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
}

.membership-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.membership-perks li svg {
  color: var(--amber-light);
  flex-shrink: 0;
}

.membership-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.membership-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* Newsletter section */
.newsletter {
  padding: 100px 48px;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.newsletter h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.newsletter p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  background: var(--bg);
}

.newsletter-form input[type="email"] {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: transparent;
  border: none;
  padding: 14px 20px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--light-muted);
}

.newsletter-form button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  background: var(--amber);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--amber-light);
}

.newsletter-success {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--amber);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-grid-section {
  padding: 0 48px 100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* About Hero */
.about-hero {
  background: var(--surface);
  text-align: center;
  padding: 100px 48px 90px;
  position: relative;
  overflow: hidden;
}

.about-hero-decor {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  line-height: 1;
  color: var(--dark);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.07;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.about-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* Brand Story */
.brand-story {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--amber-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.story-content h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.story-content h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.story-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-img-placeholder {
  height: 480px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #e8d5b4, #c4986a, #a06840);
  box-shadow: 0 24px 60px rgba(28, 24, 20, 0.12);
}

/* About Values */
.about-values {
  background: var(--dark);
  padding: 100px 48px;
}

.about-values-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.about-values h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
}

.about-values h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px;
  transition: background 0.3s, border-color 0.3s;
}

.about-value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 115, 42, 0.3);
}

.about-value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-value-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* Founder */
.founder {
  background: var(--surface);
  padding: 100px 48px;
}

.founder-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.founder-avatar-wrap {
  text-align: center;
}

.founder-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--amber-light), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.founder-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.founder-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.founder-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.founder-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  border-left: 3px solid var(--amber);
  padding-left: 24px;
  margin-top: 28px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact Main */
.contact-main {
  padding: 40px 48px 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 36px;
}

.contact-detail {
  margin-bottom: 32px;
}

.contact-detail h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 6px;
}

.contact-detail p,
.contact-detail a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
}

.contact-detail a:hover {
  color: var(--amber);
}

/* Contact Form */
.contact-form-wrapper h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 36px;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.required {
  color: var(--amber);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--surface-2);
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237c736a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(184, 115, 42, 0.12);
}

.form-error {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  visibility: hidden;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #c0392b;
}

.form-group.has-error .form-error {
  visibility: visible;
}

.form-success {
  background: var(--amber-pale);
  border: 1px solid var(--amber);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  margin-top: 16px;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--amber);
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Nav */
  .nav-inner {
    padding: 0 24px;
  }

  /* Hide the "Account" text label on mobile — icon only */
  .account-btn-label {
    display: none;
  }

  .account-btn {
    padding: 0;
    width: 40px;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 36px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    padding: 16px 24px;
  }

  /* Page sections */
  .hero {
    padding: 48px 24px;
    min-height: calc(100vh - var(--nav-height));
  }

  .hero h1 {
    font-size: clamp(42px, 10vw, 64px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .featured,
  .newsletter,
  .membership,
  .brand-story,
  .about-hero,
  .about-values,
  .founder,
  .contact-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .membership-cta {
    align-items: stretch;
  }

  .membership-cta .btn-primary {
    text-align: center;
  }

  .page-hero {
    padding: 72px 24px 52px;
  }

  .products-grid-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-img-placeholder {
    height: 280px;
    order: -1;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-avatar-wrap {
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .featured-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .featured,
  .values,
  .newsletter,
  .brand-story,
  .about-hero,
  .about-values,
  .founder {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius);
    overflow: visible;
    border: none;
    gap: 10px;
  }

  .newsletter-form input[type="email"] {
    border: 1.5px solid rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    background: var(--surface-2);
    padding: 13px 16px;
  }

  .newsletter-form button {
    border-radius: 8px;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */

/* ── Hero wrapper ── */
.thankyou-hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  background: var(--bg);
}

.thankyou-hero-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ── Animated flame ── */
.thankyou-flame {
  width: 72px;
  height: 90px;
  margin: 0 auto 28px;
  animation: flamePulse 3s ease-in-out infinite;
}

.thankyou-flame svg {
  width: 100%;
  height: 100%;
}

@keyframes flamePulse {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  30%       { transform: scaleY(1.06) scaleX(0.96); }
  60%       { transform: scaleY(0.97) scaleX(1.02); }
}

/* ── Headings ── */
.thankyou-hero .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.thankyou-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
}

.thankyou-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.thankyou-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── Decorative divider ── */
.thankyou-divider {
  width: 56px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  margin: 0 auto 48px;
  opacity: 0.5;
}

/* ── "What to expect" cards ── */
.thankyou-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  text-align: left;
}

.thankyou-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(184, 115, 42, 0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.thankyou-card:hover {
  box-shadow: 0 8px 28px rgba(28, 24, 20, 0.09);
  transform: translateY(-3px);
}

.thankyou-card-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 16px;
}

.thankyou-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.thankyou-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── CTAs ── */
.thankyou-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .thankyou-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .thankyou-card {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .thankyou-hero {
    padding: 60px 16px 80px;
  }

  .thankyou-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .thankyou-ctas .btn-primary,
  .thankyou-ctas .btn-ghost {
    text-align: center;
  }
}

/* ============================================================
   COURSE PAGE
   ============================================================ */

/* ── Hero ── */
.course-hero {
  padding: 100px 48px 80px;
  background: var(--bg);
}

.course-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.course-hero-content .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.course-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
}

.course-hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.course-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
}

.course-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.course-hero-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--light-muted);
}

/* Decorative badge */
.course-hero-visual {
  display: flex;
  justify-content: center;
}

.course-badge {
  background: var(--dark);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}

.course-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 115, 42, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.course-badge-flame {
  width: 60px;
  height: 75px;
  margin: 0 auto 24px;
  animation: flamePulse 3s ease-in-out infinite;
}

.course-badge-flame svg {
  width: 100%;
  height: 100%;
}

.course-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.course-badge-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.course-badge-divider {
  width: 32px;
  height: 1px;
  background: rgba(184, 115, 42, 0.5);
  margin: 20px auto;
}

.course-badge-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 4px;
}

.course-badge-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── What's Included ── */
.course-includes {
  padding: 100px 48px;
  background: var(--surface);
}

.course-includes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.course-includes-header {
  text-align: center;
  margin-bottom: 60px;
}

.course-includes-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
}

.course-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-include-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(184, 115, 42, 0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.course-include-card:hover {
  box-shadow: 0 8px 28px rgba(28, 24, 20, 0.09);
  transform: translateY(-3px);
}

.course-include-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}

.course-include-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.course-include-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

.course-include-detail {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── What You'll Learn ── */
.course-learn {
  padding: 100px 48px;
  background: var(--bg);
}

.course-learn-inner {
  max-width: 760px;
  margin: 0 auto;
}

.course-learn-header {
  margin-bottom: 56px;
}

.course-learn-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--surface-2);
}

.course-step:last-child {
  border-bottom: none;
}

.course-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  padding-top: 2px;
}

.course-step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.course-step-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ── Instructor ── */
.course-instructor {
  background: var(--surface);
  padding: 100px 48px;
}

.course-instructor-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.course-instructor-text .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.course-instructor-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.course-instructor-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}

.course-instructor-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 16px;
}

.course-instructor-text p:last-child {
  font-style: italic;
  color: var(--charcoal);
  border-left: 3px solid var(--amber);
  padding-left: 16px;
  margin-bottom: 0;
}

.course-instructor-sig {
  text-align: center;
  flex-shrink: 0;
}

.course-instructor-icon {
  width: 80px;
  height: 80px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin: 0 auto 16px;
}

.course-instructor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.course-instructor-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

/* ── Purchase ── */
.course-buy {
  padding: 100px 48px;
  background: var(--dark);
  text-align: center;
}

.course-buy-inner {
  max-width: 560px;
  margin: 0 auto;
}

.course-buy-inner .eyebrow {
  color: var(--amber-light);
  display: block;
  margin-bottom: 16px;
}

.course-buy-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.course-buy-inner h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.course-buy-inner > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 48px;
}

.course-buy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.course-buy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 115, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.course-buy-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.course-buy-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.course-buy-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber-light);
}

.course-buy-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.course-buy-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.course-buy-card-list li svg {
  color: var(--amber-light);
  flex-shrink: 0;
}

.course-buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.course-buy-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Course Responsive ── */
@media (max-width: 768px) {
  .course-hero,
  .course-includes,
  .course-learn,
  .course-instructor,
  .course-buy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .course-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .course-hero-visual {
    order: -1;
  }

  .course-badge {
    max-width: 240px;
  }

  .course-includes-grid {
    grid-template-columns: 1fr;
  }

  .course-instructor-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .course-instructor-sig {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .course-instructor-icon {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .course-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .course-hero-ctas .btn-primary,
  .course-hero-ctas .btn-ghost {
    text-align: center;
  }

  .course-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
