:root {
  --color-ink: #3b4552;
  --color-ink-soft: #4a5563;
  --color-ink-line: rgba(243, 236, 221, 0.16);

  --color-parchment: #faf6ef;
  --color-parchment-alt: #f1e9d8;
  --color-plum: #2c2438;
  --color-plum-muted: #6d6480;
  --color-line: #e7dcc4;

  --color-cream: #f4ecdb;
  --color-cream-muted: rgba(244, 236, 219, 0.68);

  --color-gold: #c9a05f;
  --color-gold-bright: #e8c98a;
  --color-gold-deep: #a9793f;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1080px;
  --radius: 10px;
  --radius-lg: 26px;
  --glow-gold: radial-gradient(circle at 50% 20%, rgba(201, 160, 95, 0.22), transparent 60%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-parchment);
  color: var(--color-plum);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

em, .italic { font-style: italic; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; }

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--color-ink);
  color: var(--color-cream);
}

.section--dark-soft {
  background: var(--color-ink-soft);
  color: var(--color-cream);
}

.section--alt {
  background: var(--color-parchment-alt);
}

.section--glow {
  position: relative;
  background-image: var(--glow-gold);
}

.text-muted { color: var(--color-plum-muted); }
.section--dark .text-muted,
.section--dark-soft .text-muted,
.hero .text-muted,
.power-statement .text-muted,
.cta-band .text-muted { color: var(--color-cream-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  font-weight: 600;
  margin-bottom: 1em;
}

.section--dark .eyebrow,
.section--dark-soft .eyebrow { color: var(--color-gold); }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.stagger > [data-reveal]:nth-child(1) { transition-delay: 0s; }
.stagger > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.stagger > [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.stagger > [data-reveal]:nth-child(4) { transition-delay: 0.36s; }
.stagger > [data-reveal]:nth-child(5) { transition-delay: 0.48s; }
.stagger > [data-reveal]:nth-child(6) { transition-delay: 0.6s; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--color-gold-bright), var(--color-gold));
  color: #241a0c;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201, 160, 95, 0.35); }

.btn-secondary {
  background: transparent;
  color: var(--color-plum);
  border-color: var(--color-line);
}

.section--dark .btn-secondary,
.section--dark-soft .btn-secondary,
.hero .btn-secondary,
.cta-band .btn-secondary,
.site-header .btn-secondary {
  color: var(--color-cream);
  border-color: var(--color-ink-line);
}

.btn-secondary:hover { border-color: var(--color-gold); color: var(--color-gold-deep); }
.section--dark .btn-secondary:hover,
.section--dark-soft .btn-secondary:hover,
.hero .btn-secondary:hover,
.cta-band .btn-secondary:hover,
.site-header .btn-secondary:hover { color: var(--color-gold-bright); }

.btn-block { width: 100%; justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(59, 69, 82, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-ink-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.brand span { color: var(--color-gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-cream-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--color-gold-bright); }

.nav-cta { display: flex; align-items: center; gap: 24px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-cream); margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  background: var(--color-ink);
  color: var(--color-cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--glow-gold);
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }

.hero-title {
  white-space: nowrap;
  font-size: clamp(1.3rem, 6.4vw, 3.8rem);
}

.hero-line {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--color-cream-muted);
  margin: 0 0 0.4em;
}

.hero-line--accent {
  color: var(--color-gold-deep);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 2.2em;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-media {
  margin-top: 56px;
}

.hero-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.understanding {
  display: grid;
  gap: 22px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.understanding p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin: 0;
  color: var(--color-cream);
}

.understanding--on-light p {
  color: var(--color-gold-deep);
}

.pull-quote {
  text-align: center;
  padding: 110px 0;
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
  font-style: normal;
}

.power-statement {
  text-align: center;
  padding: 96px 0;
  background: linear-gradient(160deg, var(--color-ink), var(--color-ink-soft));
  color: var(--color-cream);
}

.power-statement h2 {
  color: var(--color-gold-bright);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  max-width: 700px;
  margin: 0 auto;
}

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

.card {
  background: var(--color-parchment);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.section--dark .card,
.section--dark-soft .card {
  background: rgba(244, 236, 219, 0.04);
  border-color: var(--color-ink-line);
}

.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201, 160, 95, 0.16);
  color: var(--color-gold-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.15rem;
}

.section--dark .card-icon,
.section--dark-soft .card-icon { color: var(--color-gold-bright); }

.card-link {
  display: inline-block; margin-top: 1em; font-weight: 600;
  color: var(--color-gold-deep); text-decoration: none;
}

.section--dark .card-link,
.section--dark-soft .card-link { color: var(--color-gold-bright); }

.card-link:hover { text-decoration: underline; }

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-plum-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tab-btn:hover { border-color: var(--color-gold); color: var(--color-gold-deep); }

.tab-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #241a0c;
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.tab-panel-inner {
  background: var(--color-parchment);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.tab-panel-inner h3 { margin-bottom: 0.5em; }

.about-teaser {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 30%, rgba(201, 160, 95, 0.18), var(--color-ink-soft) 75%);
  border: 1px solid var(--color-ink-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  font-size: 0.9rem; font-weight: 600; text-align: center;
  padding: 24px;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.credentials { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.credentials li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px;
  background: var(--color-parchment);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.credentials li::before {
  content: ""; width: 7px; height: 7px; margin-top: 8px;
  border-radius: 50%; background: var(--color-gold); flex-shrink: 0;
}

.signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-top: 1.4em;
}

.cta-band {
  background: var(--color-ink);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before { content: ""; position: absolute; inset: 0; background-image: var(--glow-gold); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--color-gold-bright); }

.price-note {
  display: inline-block; margin-top: 8px; font-size: 0.85rem;
  padding: 4px 10px; border-radius: 999px;
  background: var(--color-parchment-alt); color: var(--color-plum-muted);
}

.section--dark .price-note,
.section--dark-soft .price-note {
  background: rgba(244, 236, 219, 0.08); color: var(--color-cream-muted);
}

.form { display: grid; gap: 20px; max-width: 560px; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 0.9rem; font-weight: 600; }
.form-row input, .form-row textarea {
  font: inherit; padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--color-line); background: var(--color-parchment);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--color-gold); outline-offset: 1px;
}

.contact-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; }
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-info .card { display: grid; gap: 4px; }

.site-footer {
  background: var(--color-ink);
  color: var(--color-cream-muted);
  padding: 56px 0 32px;
}

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-grid h4 {
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-cream-muted); margin-bottom: 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--color-cream); }
.footer-links a:hover { color: var(--color-gold-bright); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--color-ink-line);
  font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}

@media (max-width: 860px) {
  .hero-grid, .about-teaser, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-ink); flex-direction: column; padding: 24px;
    border-bottom: 1px solid var(--color-ink-line); gap: 20px;
  }
  .cta-band { padding: 48px 28px; }
  .section { padding: 72px 0; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
