
  :root {
    --purple-deep: #2D1B4E;
    --purple-mid: #5C3D8F;
    --purple-soft: #9B72CF;
    --purple-pale: #EDE4F8;
    --gold: #C9A84C;
    --gold-light: #F0D896;
    --gold-pale: #FDF6E3;
    --cream: #FAF7F2;
    --text-dark: #1A1020;
    --text-mid: #4A3B5C;
    --text-light: #8B7FA8;
    --white: #FFFFFF;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    animation: pageLoad 0.8s var(--ease-out-expo) forwards;
  }

  @keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(45, 27, 78, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    transition: background 0.4s var(--ease-in-out-smooth), box-shadow 0.4s var(--ease-in-out-smooth);
  }

  .nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    transition: letter-spacing 0.4s var(--ease-in-out-smooth), color 0.35s;
  }

  .nav-brand:hover {
    letter-spacing: 4px;
    color: var(--white);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.35s var(--ease-in-out-smooth);
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.35s var(--ease-out-expo), left 0.35s var(--ease-out-expo);
  }

  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; left: 0; }

  #hero {
    min-height: 100vh;
    background: var(--purple-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(92,61,143,0.5) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 10% 50%, rgba(155,114,207,0.15) 0%, transparent 60%);
    animation: heroBgPulse 12s var(--ease-in-out-smooth) infinite alternate;
  }

  @keyframes heroBgPulse {
    0% { opacity: 1; filter: brightness(1) saturate(1); }
    100% { opacity: 0.97; filter: brightness(1.03) saturate(1.05); }
  }

  .stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo);
  }
  .stars.stars-ready {
    opacity: 1;
  }

  .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--dur) cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0;
    will-change: opacity, transform;
  }

  @keyframes twinkle {
    0%, 100% {
      opacity: 0.12;
      transform: scale(0.88);
    }
    50% {
      opacity: var(--op);
      transform: scale(1.12);
    }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 40px 80px;
    max-width: 900px;
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFadeUp 1.1s var(--ease-out-expo) 0.25s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 10vw, 110px);
    font-weight: 300;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 8px;
    opacity: 0;
    animation: heroFadeUp 1.15s var(--ease-out-expo) 0.4s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }

  .hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: heroFadeUp 1.1s var(--ease-out-expo) 0.6s forwards;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 5vw, 52px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    line-height: 1.15;
    max-width: 620px;
    margin: 0 auto 60px;
    opacity: 0;
    animation: heroFadeUp 1.15s var(--ease-out-expo) 0.8s forwards;
  }

  .hero-hook {
    font-family: 'Lato', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: heroFadeUp 1.1s var(--ease-out-expo) 0.95s forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1.1s var(--ease-out-expo) 1.15s forwards;
  }

  .hero-ctas .btn-primary {
    box-shadow: 0 4px 24px rgba(201,168,76,0.25);
    animation: ctaSoftPulse 4s var(--ease-in-out-smooth) infinite;
  }
  .hero-ctas .btn-primary:hover {
    box-shadow: 0 12px 36px rgba(201,168,76,0.45);
    animation: none;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--purple-deep);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), background 0.35s var(--ease-in-out-smooth);
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201,168,76,0.45);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 40px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.35s, color 0.35s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-3px);
  }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeUpScroll 1s var(--ease-out-expo) 1.8s forwards;
  }

  .scroll-hint span {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
    transform-origin: center bottom;
    animation: scrollPulse 2.2s var(--ease-in-out-smooth) infinite;
  }

  .scroll-hint span {
    animation: scrollHintFade 2.2s var(--ease-in-out-smooth) infinite;
  }

  @keyframes scrollHintFade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.65); opacity: 1; }
  }

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

  @keyframes heroFadeUpScroll {
    from { opacity: 0; transform: translate(-50%, 36px); }
    to { opacity: 1; transform: translate(-50%, 0); }
  }

  @keyframes ctaSoftPulse {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 4px 24px rgba(201,168,76,0.25); }
    50% { transform: translateY(0) scale(1.02); box-shadow: 0 6px 28px rgba(201,168,76,0.35); }
  }

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

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  section { padding: 100px 40px; }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }

  .section--shop {
    background: var(--purple-deep);
  }

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    transition: letter-spacing 0.6s var(--ease-out-expo);
  }

  .reveal.visible .section-label { letter-spacing: 6px; }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--purple-deep);
    margin-bottom: 24px;
  }

  .section-title em {
    font-style: italic;
    color: var(--purple-mid);
  }

  .gold-rule {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
    transform-origin: left center;
    transition: width 0.8s var(--ease-out-expo) 0.2s;
  }

  .reveal.visible .gold-rule { width: 80px; }

  #book {
    background: var(--white);
  }

  .book-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
  }

  .book-cover-wrapper {
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
  }

  .book-cover-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 60px rgba(45,27,78,0.35), -5px -5px 20px rgba(201,168,76,0.1);
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  }

  .book-cover-wrapper:hover img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 24px 24px 64px rgba(45,27,78,0.4), -8px -8px 24px rgba(201,168,76,0.15);
  }

  .book-cover-placeholder {
    aspect-ratio: 2/3;
    background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple-mid) 60%, var(--purple-soft) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    box-shadow: 20px 20px 60px rgba(45,27,78,0.3), -5px -5px 20px rgba(201,168,76,0.1);
  }

  .book-cover-placeholder::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,168,76,0.4);
    pointer-events: none;
  }

  .book-cover-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .cover-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .cover-title-text em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
    font-size: 34px;
  }

  .cover-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto;
  }

  .cover-author-text {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
  }

  .cover-tagline-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
    line-height: 1.5;
  }

  .book-description p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .book-description p strong {
    font-weight: 600;
    color: var(--purple-deep);
  }

  .book-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 40px;
  }

  .tag {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid var(--purple-soft);
    color: var(--purple-mid);
    transition: transform 0.35s var(--ease-spring), border-color 0.35s, color 0.35s;
  }

  .tag:hover {
    border-color: var(--gold);
    color: var(--purple-deep);
    transform: scale(1.04);
  }

  #author {
    background: var(--purple-pale);
  }

  .author-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .author-grid img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  }

  .author-grid img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 20px 20px 56px rgba(45,27,78,0.35);
  }

  .author-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .author-photo-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--purple-mid), var(--purple-deep));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
  }

  .author-photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.15), transparent 60%);
  }

  .author-photo-icon {
    font-size: 80px;
    opacity: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
  }

  .author-photo-caption {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    position: relative;
    z-index: 1;
  }

  #pullquote.pullquote-section {
    background: var(--purple-deep);
    padding: 100px 40px;
    text-align: center;
    position: relative;
  }
  .pullquote-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .pullquote-section .pullquote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 24px;
    position: relative;
    animation: pullquoteFadeIn 1.2s var(--ease-out-expo) 0.2s both;
  }

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

  .pullquote-text::before {
    content: '\201C';
    font-size: 120px;
    color: rgba(201,168,76,0.2);
    position: absolute;
    top: -30px;
    left: -20px;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
  }

  .pullquote-attr {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
  }

  #praise.praise-section {
    background: var(--white);
    padding: 100px 40px;
  }
  .praise-subline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-mid);
    margin: -8px 0 0 0;
    max-width: 480px;
  }
  #praise .section-title em { color: var(--purple-mid); }
  .praise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
  }
  .praise-card {
    padding: 32px 28px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    transition: background 0.4s var(--ease-in-out-smooth), box-shadow 0.4s var(--ease-in-out-smooth), transform 0.4s var(--ease-out-expo), border-left-color 0.4s;
  }
  .praise-card:hover {
    background: rgba(253, 246, 227, 0.6);
    box-shadow: 0 4px 20px rgba(45, 27, 78, 0.06);
    transform: translateX(4px);
    border-left-color: var(--gold-light);
  }
  .praise-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 16px;
    font-style: italic;
  }
  .praise-attr {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--purple-mid);
    font-style: normal;
    display: block;
  }

  #connect {
    background: #3D2860;
    text-align: center;
  }

  #connect .section-label { color: var(--gold); }
  #connect .section-title { color: var(--white); }
  #connect .section-title em { color: var(--gold-light); }

  .connect-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .connect-inner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
  }
  .connect-inner p strong {
    color: var(--gold-light);
    font-weight: 400;
  }

  .email-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }

  .email-input {
    flex: 1;
    padding: 16px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    outline: none;
    transition: border-color 0.35s var(--ease-in-out-smooth), box-shadow 0.4s var(--ease-out-expo);
  }

  .email-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  }

  .email-input::placeholder {
    color: rgba(255,255,255,0.4);
  }

  .email-btn {
    background: var(--gold);
    color: var(--purple-deep);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 28px;
    border: none;
    cursor: pointer;
    transition: background 0.35s var(--ease-in-out-smooth), transform 0.35s var(--ease-out-expo);
    white-space: nowrap;
  }

  .email-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .email-btn:not(:hover) {
    animation: emailBtnGlow 4s var(--ease-in-out-smooth) infinite;
  }

  @keyframes emailBtnGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(201,168,76,0.2); }
    50% { box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
  }

  .form-note {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
  }

  #speaking {
    background: var(--white);
  }

  .speaking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .speaking-card {
    border: 1px solid var(--purple-pale);
    padding: 40px 30px;
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
  }

  .speaking-intro-link:hover p {
    color: var(--purple-mid);
  }

  .speaking-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-soft));
    transform: scaleX(0);
    transform-origin: center left;
    transition: transform 0.45s var(--ease-out-expo);
  }

  .speaking-card:hover {
    box-shadow: 0 16px 48px rgba(45,27,78,0.12);
    transform: translateY(-6px);
  }
  .speaking-card:hover::after { transform: scaleX(1); }

  .speaking-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s var(--ease-spring);
  }

  .speaking-card:hover .speaking-icon {
    transform: scale(1.15) translateY(-2px);
  }

  .speaking-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--purple-deep);
    margin-bottom: 14px;
    text-transform: uppercase;
  }

  .speaking-card p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid);
  }

  #booking {
    background: linear-gradient(135deg, var(--purple-deep) 0%, #1A0D35 100%);
    text-align: center;
  }

  #booking .section-title {
    color: var(--white);
  }

  #booking .section-title em {
    color: var(--gold-light);
  }

  .booking-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-bottom: 50px;
    line-height: 1.7;
  }

  .booking-form {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }

  .booking-success {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .booking-success .booking-tagline {
    margin-bottom: 0;
  }
  #booking-form-wrap.is-hidden {
    display: none;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .form-label {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
  }

  .form-field {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 14px 18px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.35s var(--ease-in-out-smooth), box-shadow 0.4s var(--ease-out-expo);
  }

  .form-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  }
  .form-field::placeholder { color: rgba(255,255,255,0.25); }

  select.form-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  textarea.form-field { resize: vertical; min-height: 100px; }

  .submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--purple-deep);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), background 0.35s var(--ease-in-out-smooth);
  }

  .submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  }

  .submit-btn:not(:hover):not(:disabled) {
    animation: submitPulse 5s var(--ease-in-out-smooth) infinite;
  }

  @keyframes submitPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(201,168,76,0.3); }
    50% { box-shadow: 0 4px 20px rgba(201,168,76,0.45); }
  }

  .submit-note {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    text-align: center;
  }

  footer {
    background: #0E0620;
    padding: 60px 40px 48px;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.2);
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 6px;
  }

  .footer-author {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    row-gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .footer-links a {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.35s var(--ease-in-out-smooth);
    position: relative;
  }

  .footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease-out-expo);
  }

  .footer-links a:hover { color: var(--gold); }
  .footer-links a:hover::after { width: 100%; }

  .footer-copy {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
  }

  nav.nav-scrolled {
    background: rgba(45, 27, 78, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }

  .nav-links a:focus-visible,
  .btn-primary:focus-visible,
  .btn-outline:focus-visible,
  .email-btn:focus-visible,
  .submit-btn:focus-visible,
  .footer-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  .email-input:focus-visible,
  .form-field:focus-visible {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.35);
  }

  .reveal {
    opacity: 0;
    transform: translateY(44px) scale(0.98);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  }

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

  .nav-toggle {
    display: none;
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    z-index: 102;
    transition: border-color 0.3s;
    flex-shrink: 0;
    overflow: visible;
  }
  .nav-toggle:hover { border-color: var(--gold); }
  .nav-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  .nav-toggle-bar {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background: var(--gold-light);
    transition: transform 0.3s ease, opacity 0.2s ease;
    flex-shrink: 0;
  }
  .nav-toggle-bar:nth-child(1) { top: 13px; }
  .nav-toggle-bar:nth-child(2) { top: 21px; }
  .nav-toggle-bar:nth-child(3) { top: 29px; }

  @media (max-width: 768px) {
    .nav-toggle { display: flex; }
    nav {
      padding: 16px 24px;
      overflow: visible;
    }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--purple-deep);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      list-style: none;
      padding: 0;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      z-index: 101;
    }
    nav.nav-open .nav-links { display: flex; }
    nav.nav-open .nav-toggle-bar:nth-child(1) {
      top: 21px;
      transform: rotate(45deg);
    }
    nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-toggle-bar:nth-child(3) {
      top: 21px;
      transform: rotate(-45deg);
    }
    .nav-links a {
      min-height: 44px;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .btn-primary, .btn-outline {
      min-height: 44px;
      padding: 14px 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .email-btn, .submit-btn {
      min-height: 44px;
      padding: 14px 24px;
    }
    .email-input, .form-field, select.form-field {
      min-height: 44px;
      padding: 14px 18px;
    }
    textarea.form-field { min-height: 100px; }
    section { padding: 70px 24px; }
    .book-grid, .author-grid { grid-template-columns: 1fr; gap: 40px; }
    .speaking-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-content { padding: 100px 24px 70px; }
    .email-form { flex-direction: column; }
    .email-input { border-right: 1px solid rgba(92,61,143,0.2); border-bottom: none; }

    .book-cover-wrapper img,
    .author-grid img {
      max-width: 100%;
      height: auto;
    }
    .section-inner {
      min-width: 0;
    }
    .shop-card img {
      aspect-ratio: unset;
      height: auto;
      max-width: 100%;
      width: 100%;
      object-fit: unset;
    }
    .shop-card {
      min-width: 0;
    }
  }
