@charset "UTF-8";
/* CSS Document */

:root {
  --ivory: #f8f5ef;
  --ivory-deep: #efe7db;
  --white: #fffdf9;
  --ink: #2f2a25;
  --muted: #665f57;
  --plum: #6a4354;
  --plum-dark: #563645;
  --gold: #b08a4a;
  --gold-soft: #dcc8a0;
  --line: rgba(47, 42, 37, 0.12);
  --shadow: 0 18px 45px rgba(47, 42, 37, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 200, 160, 0.15), transparent 28%),
    linear-gradient(180deg, #fcfaf6 0%, var(--ivory) 100%);
  line-height: 1.6;
}

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

a { color: inherit; }

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252, 250, 246, 0.84);
  border-bottom: 1px solid rgba(47, 42, 37, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a:hover,
.nav a:focus {
  color: var(--plum);
}

.hero {
  padding: clamp(34px, 6vw, 72px) 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--plum);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.14;
  color: #231f1c;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.hero p,
.section p,
.card p,
label,
input,
textarea,
select,
button {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.hero-copy {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 26px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(86, 54, 69, 0.16);
}

.btn-primary {
  background: linear-gradient(180deg, var(--plum) 0%, var(--plum-dark) 100%);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border: 1px solid rgba(106, 67, 84, 0.22);
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.note-item {
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(47, 42, 37, 0.04);
}

.hero-media {
  position: relative;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(239,231,219,0.95));
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 138, 74, 0.16);
}

.photo-frame img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  min-height: 620px;
  background: #e9e0d2;
}

.photo-badge {
  position: absolute;
  left: -10px;
  bottom: 24px;
  max-width: 250px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 16px 30px rgba(47, 42, 37, 0.08);
}

.photo-badge strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.photo-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.section {
  padding: clamp(56px, 7vw, 92px) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,253,249,0.68) 0%, rgba(255,255,255,0.58) 100%);
  border-top: 1px solid rgba(47, 42, 37, 0.05);
  border-bottom: 1px solid rgba(47, 42, 37, 0.05);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
}

.copy-stack p + p {
  margin-top: 16px;
}

.quote-card,
.stage-card,
.speaking-card,
.contact-card,
.form-panel {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card,
.stage-card,
.speaking-card,
.contact-card {
  padding: clamp(24px, 3vw, 34px);
}

.stage-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.stage-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.topic {
  padding: 20px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf9 0%, #f5efe6 100%);
  border: 1px solid rgba(176, 138, 74, 0.18);
}

.topic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2ece8 0%, #e8dfd7 100%);
  color: var(--plum);
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.7);
}

.topic h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.form-panel {
  padding: clamp(22px, 3vw, 34px);
}

.form-intro {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.fieldset-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #2a2521;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(47, 42, 37, 0.16);
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 1rem;
  color: var(--ink);
  background: #fffdfa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(106, 67, 84, 0.42);
  box-shadow: 0 0 0 4px rgba(106, 67, 84, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.options {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(47, 42, 37, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
}

.option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--plum);
  flex: 0 0 auto;
  padding: 0;
}

.option strong {
  display: block;
  font-size: 0.97rem;
  margin-bottom: 2px;
}

.option span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -4px;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.submit-row .btn {
  border: 0;
  cursor: pointer;
}

.footer {
  padding: 30px 0 40px;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(47, 42, 37, 0.08);
  padding-top: 24px;
}

/* MOBILE MENU / DESKTOP MENU FIX */
.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(47, 42, 37, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.92);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 20px rgba(47, 42, 37, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--plum);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(47, 42, 37, 0.08);
  background: rgba(252, 250, 246, 0.97);
  backdrop-filter: blur(14px);
}

.mobile-menu-inner {
  display: grid;
  gap: 0;
  padding: 8px 0 16px;
}

.mobile-menu a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(47, 42, 37, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--plum);
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 761px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .stage-card {
    grid-template-columns: 1fr;
  }

  .hero-note,
  .topics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame img {
    min-height: auto;
  }

  .photo-badge {
    position: static;
    margin-top: 16px;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-inner {
    padding: 14px 0;
    align-items: center;
  }

  .nav-desktop {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    max-width: calc(100% - 70px);
  }

  .brand small {
    line-height: 1.3;
  }

  h1 {
    max-width: none;
  }

  .hero {
    padding-top: 26px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}