/* ============================================
   MACHU PICCHU ENTRY TICKETS — Editorial Style
   ============================================ */

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

:root {
  /* Inca-inspired palette */
  --stone: #1c1a17;          /* Andean stone */
  --stone-soft: #2d2a25;
  --paper: #f5f1e8;          /* Aged paper */
  --paper-warm: #ede5d3;
  --gold: #c9a461;           /* Inca gold */
  --gold-deep: #8b6f3a;
  --terracotta: #a8543b;     /* Andean clay */
  --moss: #4a5d3a;           /* Mountain moss */
  --sky: #6b8ca8;            /* Andean sky */
  --ink: #16140f;
  --line: rgba(28, 26, 23, 0.15);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --font-script: 'Caveat', cursive;

  --max: 1320px;
  --gap: clamp(1rem, 3vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(201, 164, 97, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(168, 84, 59, 0.03) 0%, transparent 50%);
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}

.script {
  font-family: var(--font-script);
  color: var(--terracotta);
  font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark svg { width: 100%; height: 100%; }

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  background: var(--stone);
  color: var(--paper);
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 1px solid var(--stone);
}

.nav-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 10.5px; }
.nav-toggle span:nth-child(3) { top: 17px; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-inner.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1.5rem var(--gap);
    border-bottom: 1px solid var(--line);
    gap: 1.2rem;
  }
  .nav-inner.open .nav-cta {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
  }
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

.section-pad { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
}

.btn-primary {
  background: var(--stone);
  color: var(--paper);
  border: 1px solid var(--stone);
}
.btn-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(168, 84, 59, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-gold {
  background: var(--gold);
  color: var(--stone);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.3s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--stone);
  color: var(--paper-warm);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-weight: 600;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--paper);
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.7rem; }
.footer a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.footer a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================
   HERO (used on home)
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.4) 0%, rgba(245, 241, 232, 0.85) 70%, var(--paper) 100%),
    url('https://images.unsplash.com/photo-1587595431973-160d0d94add1?w=1800&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero-headline .stamp {
  display: inline-block;
  font-size: 0.18em;
  vertical-align: middle;
  margin-left: 0.6em;
  padding: 0.3em 0.8em;
  border: 1.5px solid var(--gold-deep);
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-meta p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--stone-soft);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: var(--gap);
  right: var(--gap);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  z-index: 2;
}

.hero-stats div { padding: 0 1rem; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: none; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}
.hero-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-stats div { border-right: none; padding: 0.5rem; }
  .hero-stats strong { font-size: 1.4rem; }
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 164, 97, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.page-header-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 800px) {
  .page-header-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 400;
  margin-top: 1rem;
}
.page-title em { font-style: italic; color: var(--terracotta); }

.page-lede {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--stone-soft);
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span { margin: 0 0.6rem; opacity: 0.5; }

/* ============================================
   CARDS / GRIDS — Circuits / Tickets
   ============================================ */
.circuit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .circuit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .circuit-grid { grid-template-columns: 1fr; } }

.circuit-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.circuit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.circuit-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px -20px rgba(28, 26, 23, 0.2);
}
.circuit-card:hover::before { transform: scaleX(1); }

.circuit-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
}

.circuit-card h3 {
  font-size: 1.6rem;
  margin: 0;
}

.circuit-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--stone);
  color: var(--paper);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}

.circuit-card p {
  font-size: 0.93rem;
  color: var(--stone-soft);
  line-height: 1.6;
}

.circuit-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.circuit-meta div span {
  display: block;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.circuit-meta div strong { font-weight: 600; font-size: 0.95rem; }

/* ============================================
   FEATURE / EDITORIAL SPLIT
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse > :first-child { order: 2; }
@media (max-width: 800px) {
  .split, .split-reverse { grid-template-columns: 1fr; gap: 2rem; }
  .split-reverse > :first-child { order: initial; }
}

.split h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 1rem 0 1.5rem;
}
.split h2 em { font-style: italic; color: var(--terracotta); }

.split p {
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  color: var(--stone-soft);
}
.split p:last-of-type { margin-bottom: 1.8rem; }

.split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-warm);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-img:hover img { transform: scale(1.04); }

.split-img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--paper);
  padding: 0.5rem 1rem;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--stone);
  border: 1px solid var(--gold);
  transform: rotate(-1deg);
}

/* ============================================
   PRICE TABLE
   ============================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.price-table th, .price-table td {
  padding: 1.1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.price-table thead {
  background: var(--stone);
  color: var(--paper);
}
.price-table thead th {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.price-table tbody tr { transition: background 0.2s; }
.price-table tbody tr:hover { background: rgba(201, 164, 97, 0.08); }

.price-table .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--terracotta);
}
.price-table td:first-child { font-weight: 600; }

.price-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

/* ============================================
   STEP / PROCESS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--stone-soft);
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-q {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  list-style: none;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding-top: 1rem;
  color: var(--stone-soft);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--stone);
  color: var(--paper);
  padding: clamp(3rem, 7vw, 5rem) var(--gap);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(201, 164, 97, 0.18) 0%, transparent 60%);
}
.cta-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
@media (max-width: 700px) {
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  margin-top: 1rem;
  opacity: 0.8;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}
.cta-banner .btn-gold { justify-self: end; }
@media (max-width: 700px) {
  .cta-banner .btn-gold { justify-self: center; }
}

/* ============================================
   PROSE (article body)
   ============================================ */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 2.25rem;
  margin: 2.8rem 0 1rem;
  font-weight: 500;
}
.prose h3 {
  font-size: 1.5rem;
  margin: 2rem 0 0.8rem;
  font-weight: 500;
}
.prose p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--stone-soft);
  line-height: 1.75;
}
.prose ul, .prose ol {
  margin: 0 0 1.5rem 1.5rem;
  font-size: 1.02rem;
  color: var(--stone-soft);
}
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose strong { color: var(--ink); font-weight: 600; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--terracotta);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
}

.callout {
  background: var(--paper-warm);
  border-left: 3px solid var(--terracotta);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  font-size: 0.98rem;
}
.callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }
.fade-in.delay-4 { animation-delay: 0.6s; }

/* Decorative section header */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head .eyebrow::before { display: none; }
.section-head .eyebrow {
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 400;
  max-width: 18ch;
  margin: 0 auto;
}
.section-head h2 em { font-style: italic; color: var(--terracotta); }
.section-head p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--stone-soft);
  max-width: 50ch;
  margin: 1rem auto 0;
}

/* Ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--gold-deep);
}
.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  background: var(--gold-deep);
  flex: 1;
  max-width: 80px;
  opacity: 0.5;
}
.ornament svg { width: 20px; height: 20px; }
