/* ─────────────────────────────────────────────
   SHELBY TATE — shelbytate.me
   Brand System CSS · March 2026
   Palette: Blood Orange · Cab Sauv · Golden Butter · Rosewater
   Type: Fraunces (display) · Josefin Sans (body) · Jost (labels) · Homemade Apple (accent)
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,900;1,9..144,700;1,9..144,900&family=Josefin+Sans:wght@300;400&family=Jost:wght@200;300&family=Homemade+Apple&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:     #EBD4B9;
  --wine:   #702C37;
  --orange: #D64B34;
  --yellow: #F2C84A;
  --rose:   #F5DDD8;
  --olive:  #6F6F4B;
  --sage:   #8FA882;
  --white:  #FFFFFF;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── BASE ── */
body {
  background: var(--bg);
  color: var(--wine);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
}

/* ── GRAIN TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  line-height: 0.88;
  letter-spacing: -0.025em;
}

h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h3 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

p { font-size: 14px; line-height: 1.75; }

.eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(235, 212, 185, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(112,44,55,0.09);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  color: var(--wine);
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.5; }

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

.nav-social a {
  color: var(--wine);
  opacity: 0.55;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.nav-social a:hover { opacity: 1; }

main { padding-top: 62px; }

/* ── SECTIONS ── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }

.section-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 24px;
}

/* ── TICKER ── */
.ticker {
  background: var(--wine);
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tick 30s linear infinite;
}

.ticker-segment {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-right: 60px;
}

@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 10px;
}

/* ── CARDS ── */
.card {
  border-radius: 5px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.18s ease;
  cursor: default;
}

a .card, a.card { cursor: pointer; }
a .card:hover, a.card:hover { transform: translateY(-2px); }

.card h3 { font-size: 21px; margin-bottom: 2px; }

.card--wine   { background: var(--wine); color: var(--rose); }
.card--orange { background: var(--orange); color: var(--bg); }
.card--yellow { background: var(--yellow); color: var(--wine); }
.card--rose   { background: var(--rose); color: var(--wine); border: 1px solid rgba(112,44,55,0.08); }
.card--olive  { background: var(--olive); color: var(--bg); }
.card--white  { background: var(--white); color: var(--wine); border: 1px solid rgba(112,44,55,0.08); }
.card--beige  { background: var(--bg); color: var(--wine); border: 1px solid rgba(112,44,55,0.1); }
.card--sage   { background: var(--sage); color: var(--bg); }

.card-cta {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.75;
}

.card-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 1;
  font-variation-settings: 'opsz' 144;
  display: block;
}

.card-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.7;
  margin-top: 6px;
  max-width: 320px;
}

/* Handwriting accent — used once, sparingly */
.annotation {
  font-family: 'Homemade Apple', cursive;
  font-size: 12.5px;
  opacity: 0.22;
  transform: rotate(-5deg);
  position: absolute;
  bottom: 18px;
  right: 20px;
  line-height: 1.5;
  max-width: 140px;
  text-align: right;
  pointer-events: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.15s;
  text-decoration: none;
}

.btn:hover { opacity: 0.82; transform: translateY(-1px); }

.btn--wine    { background: var(--wine);   color: var(--yellow); }
.btn--orange  { background: var(--orange); color: var(--bg);     }
.btn--yellow  { background: var(--yellow); color: var(--wine);   }
.btn--outline { background: transparent;   color: var(--wine);   border: 1px solid rgba(112,44,55,0.28); }

/* ── FORMS ── */
.form { display: flex; flex-direction: column; gap: 16px; }

.form label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(112,44,55,0.14);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--wine);
  outline: none;
  transition: border-color 0.2s;
}

.form input:focus,
.form textarea:focus { border-color: rgba(112,44,55,0.38); }

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

::placeholder { color: var(--wine); opacity: 0.3; }

/* Inline notify form */
.notify-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.notify-row input {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(112,44,55,0.14);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--wine);
  outline: none;
}

.notify-row button {
  background: var(--wine);
  color: var(--yellow);
  border: none;
  border-radius: 3px;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.notify-row button:hover { opacity: 0.82; }

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 40px 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(112,44,55,0.08);
  border-radius: 5px;
  padding: 24px 20px;
}

.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  font-variation-settings: 'opsz' 144;
  color: var(--wine);
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ── CTA TRIO ── */
.cta-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.cta-box {
  border-radius: 5px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-box h3 { font-size: 24px; margin-top: 4px; }
.cta-box p  { font-size: 12px; opacity: 0.7; line-height: 1.65; }

/* ── OFFERING BLOCKS (Work With Me) ── */
.offering {
  background: var(--white);
  border: 1px solid rgba(112,44,55,0.08);
  border-radius: 6px;
  padding: 40px;
  margin-bottom: 12px;
}

.offering h2 { font-size: 34px; margin-bottom: 14px; }
.offering > p { max-width: 560px; opacity: 0.68; margin-bottom: 24px; }

.offering.greyed {
  opacity: 0.38;
  pointer-events: none;
  filter: grayscale(0.25);
}

.status-pill {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(112,44,55,0.07);
  color: var(--wine);
  margin-bottom: 16px;
}

/* ── EVENT CARDS ── */
.event-card {
  background: var(--white);
  border: 1px solid rgba(112,44,55,0.08);
  border-radius: 6px;
  padding: 40px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.event-card h2 { font-size: 32px; margin-bottom: 12px; }
.event-card p  { opacity: 0.65; max-width: 480px; margin-bottom: 0; }

.event-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.42;
  margin-bottom: 12px;
}

/* ── SOCIAL ROW ── */
.social-big {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.social-link-big {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 11px 20px;
  border: 1px solid rgba(112,44,55,0.22);
  border-radius: 3px;
  transition: all 0.2s;
}

.social-link-big:hover {
  background: var(--wine);
  color: var(--yellow);
  border-color: var(--wine);
  opacity: 1;
}

.social-small {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link-sm {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.social-link-sm:hover { opacity: 0.75; }

/* ── BRAND LOGOS ── */
.brand-strip {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(112,44,55,0.09);
  border-bottom: 1px solid rgba(112,44,55,0.09);
}

.brand-name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ── IFRAME EMBED ── */
.iframe-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(112,44,55,0.1);
}

.iframe-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col--wide {
  grid-template-columns: 1.4fr 1fr;
}

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  background: var(--rose);
  border: 1px solid rgba(112,44,55,0.1);
  border-radius: 5px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(112,44,55,0.03) 8px,
    rgba(112,44,55,0.03) 9px
  );
}

.photo-placeholder span {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.35;
  position: relative;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid rgba(112,44,55,0.1);
  margin: 60px 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--wine);
  padding: 56px 48px 36px;
  margin-top: 100px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
  font-variation-settings: 'opsz' 144;
}

.footer-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--bg);
  opacity: 0.45;
  line-height: 1.65;
  max-width: 220px;
  display: block;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--bg);
  opacity: 0.5;
  margin-bottom: 9px;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 0.9; }

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

.footer-social a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.38;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.75; }

.footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(235,212,185,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8.5px;
  letter-spacing: 0.15em;
  color: var(--bg);
  opacity: 0.28;
}

/* ── CORPORATE PAGE ── */
.tier-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 32px 0;
}

.tier {
  background: var(--white);
  border: 1px solid rgba(112,44,55,0.08);
  border-radius: 5px;
  padding: 28px 24px;
}

.tier-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
  display: block;
  margin-bottom: 10px;
}

.tier h3 { font-size: 18px; margin-bottom: 8px; }
.tier p  { font-size: 12px; opacity: 0.6; line-height: 1.6; }

.tier.featured {
  background: var(--wine);
  color: var(--rose);
  border-color: var(--wine);
}

.tier.featured .tier-label { color: var(--yellow); opacity: 0.8; }
.tier.featured h3 { color: var(--bg); }
.tier.featured p  { color: var(--rose); opacity: 0.75; }

/* ── ABOUT PAGE ── */
.about-body {
  max-width: 680px;
}

.about-body p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
}

.about-close {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
  display: block;
  margin-top: 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .wrap { padding: 0 24px; }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .bento .card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 160px;
  }

  .stat-row        { grid-template-columns: 1fr 1fr; }
  .cta-trio        { grid-template-columns: 1fr; }
  .two-col         { grid-template-columns: 1fr; }
  .two-col--wide   { grid-template-columns: 1fr; }
  .tier-row        { grid-template-columns: 1fr; }
  .event-card      { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }
  .footer-social   { align-items: flex-start; }
  .footer-nav      { gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .social-big { flex-direction: column; }
  .event-card { padding: 28px 20px; gap: 24px; }
  .offering   { padding: 28px 20px; }
}
