/* ============================================================
   THE ADORING MAN — Brand System CSS
   Deep Ink #0E0C0A · Sacred Gold #B8913A · Parchment #F9F6EF
   Cinzel Bold for titles · EB Garamond for body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
  --ink:        #0E0C0A;
  --ink-2:      #1a1714;
  --ink-3:      #242018;
  --gold:       #B8913A;
  --gold-light: #d4aa55;
  --gold-dim:   rgba(184,145,58,0.18);
  --gold-faint: rgba(184,145,58,0.07);
  --parchment:  #F9F6EF;
  --cream:      #e8e2d5;
  --text-body:  #c8c0b0;
  --text-dim:   #7a7060;

  --font-display: 'Cinzel', serif;
  --font-body:    'EB Garamond', Georgia, serif;

  --ease-gold: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--ink);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1.2em; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease-gold), opacity 0.2s;
}
a:hover { color: var(--gold-light); }

em { font-style: italic; color: var(--cream); }

strong {
  font-weight: 500;
  color: var(--parchment);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 0.88em;
}

/* ── SYMBOL ── */
.symbol {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 0.12em solid currentColor;
  position: relative;
  vertical-align: middle;
}
.symbol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.28em;
  height: 0.28em;
  background: currentColor;
  border-radius: 50%;
}

.symbol-gold { color: var(--gold); }
.symbol-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-width: 3px;
}
.symbol-lg::after {
  width: 1rem;
  height: 1rem;
}
.symbol-xl {
  width: 6rem;
  height: 6rem;
  border-width: 4px;
}
.symbol-xl::after {
  width: 1.7rem;
  height: 1.7rem;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(14,12,10,0.97) 0%, transparent 100%);
  transition: background 0.3s;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,145,58,0.4);
  padding: 0.5rem 1.25rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── DIVIDERS ── */
.rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,145,58,0.35), transparent);
  margin: 0 auto;
}
.rule-sm {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0;
}

/* ── SECTIONS ── */
.section {
  padding: 7rem 0;
  position: relative;
}
.section-sm { padding: 4rem 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 3rem;
}
.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── GOLD LABEL ── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 1.2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.25s var(--ease-gold);
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(184,145,58,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184,145,58,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* ── EMAIL FORM ── */
.form-group {
  display: flex;
  gap: 0;
  max-width: 500px;
}
.form-input {
  flex: 1;
  background: rgba(249,246,239,0.06);
  border: 1px solid rgba(184,145,58,0.3);
  border-right: none;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: rgba(184,145,58,0.7); }
.form-submit {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.form-submit:hover {
  background: var(--gold-light);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ── QUOTE BLOCK ── */
.pull-quote {
  border-left: 2px solid rgba(184,145,58,0.4);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 3rem 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(184,145,58,0.12);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.5;
  margin-top: 2.5rem;
  text-align: center;
}

/* ── FADE IN ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONCENTRIC RINGS BACKGROUND ── */
.rings-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 110vw);
  height: min(900px, 110vw);
  pointer-events: none;
}
.rings-bg circle {
  fill: none;
  stroke: rgba(184,145,58,0.06);
  stroke-width: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 1.25rem 1.5rem; }
  .container, .container-narrow, .container-wide { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(14,12,10,0.98);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 800;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-cta.open { display: block; }

  .form-group { flex-direction: column; }
  .form-input { border-right: 1px solid rgba(184,145,58,0.3); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  .section { padding: 5rem 0; }
}

/* ============================================================
   KIT FORM OVERRIDES — Clare template → brand system
   UID: f81ae79ae0
   ============================================================ */

.formkit-form[data-uid="f81ae79ae0"] {
  background: transparent !important;
  padding: 0 !important;
  font-family: 'EB Garamond', Georgia, serif !important;
}

.formkit-form[data-uid="f81ae79ae0"] .seva-fields {
  display: flex !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-field {
  flex: 1 !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-input {
  background: rgba(249,246,239,0.06) !important;
  border: 1px solid rgba(184,145,58,0.3) !important;
  border-right: none !important;
  border-radius: 0 !important;
  color: #F9F6EF !important;
  font-family: 'EB Garamond', Georgia, serif !important;
  font-size: 1rem !important;
  padding: 0.9rem 1.25rem !important;
  height: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  transition: border-color 0.2s !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-input:focus {
  border-color: rgba(184,145,58,0.7) !important;
  outline: none !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-input::placeholder {
  color: #7a7060 !important;
  opacity: 1 !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-submit {
  background: #B8913A !important;
  background-color: #B8913A !important;
  color: #0E0C0A !important;
  border-radius: 0 !important;
  border: 1px solid #B8913A !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  min-width: 120px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-submit > span {
  padding: 0.9rem 1.75rem !important;
  display: block !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-submit:hover {
  background: #d4aa55 !important;
  background-color: #d4aa55 !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-submit:hover > span {
  background-color: transparent !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-powered-by-convertkit-container,
.formkit-form[data-uid="f81ae79ae0"] .formkit-powered-by-convertkit {
  display: none !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-alert-error {
  background: rgba(234,65,16,0.1) !important;
  border-color: rgba(234,65,16,0.3) !important;
  color: #f2643b !important;
  border-radius: 0 !important;
  font-family: 'EB Garamond', Georgia, serif !important;
  font-size: 0.9rem !important;
  margin: 0.5rem 0 !important;
}

.formkit-form[data-uid="f81ae79ae0"] .formkit-alert-success {
  background: rgba(16,191,122,0.08) !important;
  border-color: rgba(16,191,122,0.3) !important;
  color: #10bf7a !important;
  border-radius: 0 !important;
  font-family: 'EB Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-size: 1rem !important;
  margin: 0.5rem 0 !important;
}

/* Mobile stacking */
@media (max-width: 600px) {
  .formkit-form[data-uid="f81ae79ae0"] .seva-fields {
    flex-direction: column !important;
  }
  .formkit-form[data-uid="f81ae79ae0"] .formkit-input {
    border-right: 1px solid rgba(184,145,58,0.3) !important;
    border-bottom: none !important;
  }
  .formkit-form[data-uid="f81ae79ae0"] .formkit-submit {
    width: 100% !important;
    min-width: unset !important;
  }
}
