/* ==========================================================================
   Asia Finest — Typography System
   ========================================================================== */

/* Body defaults */
body {
  background: var(--af-obsidian);
  color: var(--af-ivory);
  font-family: var(--af-sans);
  line-height: 1.55;
  font-size: 16px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Heading hierarchy — all use serif, weight 600
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--af-serif);
  font-weight: 600;
}

h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: .01em;
}

h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.15;
}

h4 {
  font-size: 20px;
  line-height: 1.25;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Paragraphs — max 75 characters per line per guideline */
p {
  margin: 0 0 1em;
  max-width: 75ch;
}

/* --------------------------------------------------------------------------
   Text utility classes
   -------------------------------------------------------------------------- */

.af-text-gold {
  color: var(--af-gold);
}

.af-text-muted {
  color: rgba(248, 248, 248, .78);
}

.af-text-stone {
  color: var(--af-stone);
}

.af-text-sand {
  color: var(--af-sand);
}

/* Eyebrow — small uppercase label */
.af-eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, .78);
}

/* Kicker — row with label and optional right-side element */
.af-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Blockquote
   -------------------------------------------------------------------------- */

blockquote {
  border-left: 3px solid var(--af-gold);
  margin: 1.5em 0;
  padding: .8em 1.2em;
  font-style: italic;
  font-family: var(--af-serif);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(248, 248, 248, .85);
}

blockquote p {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: .6em;
  font-style: normal;
  font-family: var(--af-sans);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--af-stone);
}

/* --------------------------------------------------------------------------
   WordPress alignment classes
   -------------------------------------------------------------------------- */

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.alignwide {
  max-width: calc(var(--af-max) + 120px);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
