/* =========================================
   Дмитро Титула — Психолог | Загальні стилі
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #431407;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #fff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, .12);
  --transition: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-700);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--amber-100);
  z-index: 100;
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber-900);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber-700);
  border-bottom-color: var(--amber-700);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--amber-900);
  padding: 4px;
}

.nav-burger svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--amber-100);
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .07);
  }

  .nav-links.open {
    display: flex;
  }
}

/* ---- LAYOUT ---- */
.page {
  padding-top: 5rem;
  flex: 1;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--amber-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-800);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--amber-700);
  color: var(--amber-700);
}

.btn-outline:hover {
  background: var(--amber-50);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--amber-50) 0%, var(--white) 50%, var(--orange-50) 100%);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--amber-900);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--amber-600);
}

.hero-desc {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features {
  padding-top: 2rem;
  border-top: 1px solid var(--amber-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-feature-icon {
  font-size: 1.5rem;
}

.hero-feature h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .15rem;
}

.hero-feature p {
  font-size: .85rem;
  color: var(--gray-600);
}

/* Hero card */
.hero-card {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, var(--amber-200), var(--orange-200));
  border-radius: var(--radius-3xl);
  opacity: .2;
  filter: blur(3rem);
}

.hero-card-inner {
  position: relative;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
  border-radius: var(--radius-3xl);
  padding: 3rem;
  text-align: center;
}

.hero-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--amber-900);
  margin-bottom: 1rem;
}

.hero-card-desc {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-card-badge {
  background: rgba(255, 255, 255, .6);
  border-radius: var(--radius-lg);
  padding: 1rem;
  font-size: .875rem;
  color: var(--gray-800);
}

.hero-card-badge p:first-child {
  font-weight: 600;
  margin-bottom: .25rem;
}

/* ---- ABOUT SECTION ---- */
.section {
  padding: 5rem 0;
}

.section-bg {
  background: var(--white);
}

.section-bg-light {
  background: var(--amber-50);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--amber-900);
  margin-bottom: 3rem;
}

.section-title-center {
  text-align: center;
}

.section-lead {
  text-align: center;
  max-width: 720px;
  margin: -2rem auto 2.5rem;
  color: var(--amber-700);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.container-narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--amber-900);
  text-align: center;
}

.about-role {
  color: var(--amber-600);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--amber-800);
  text-align: center;
  border-left: 4px solid var(--amber-400);
  padding-left: 1.25rem;
  margin: 0 auto;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-split-text p {
  color: var(--amber-800);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-split-creds {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cred-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
}

.cred-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cred-item strong {
  display: block;
  color: var(--amber-900);
  font-size: .95rem;
  margin-bottom: .25rem;
}

.cred-item span {
  color: var(--amber-700);
  font-size: .88rem;
  line-height: 1.5;
}

/* ===== GALLERY GRID 3×3 ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: .75rem;
  background: var(--amber-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* placeholder shown when image is missing */
.gallery-placeholder {
  background: var(--amber-100);
  border: 2px dashed var(--amber-300);
  border-radius: .75rem;
  position: relative;
}

.gallery-placeholder::after {
  content: 'фото незабаром';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--amber-400);
  letter-spacing: .05em;
}

.gallery-placeholder img { display: none; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

/* ===== CARDS GRID 2 ===== */
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .cards-grid-2 { grid-template-columns: 1fr; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 4rem 0 3rem;
}

.page-tag {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: .5rem;
}

.page-subtitle {
  color: var(--amber-600);
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--amber-800);
  max-width: 600px;
}

/* ===== GRID ===== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .cards-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
}

.card-feature {
  padding: 2rem;
  border: 1px solid var(--amber-200);
  border-radius: var(--radius-2xl);
  transition: var(--transition);
}

.card-feature:hover {
  box-shadow: var(--shadow-lg);
}

.card-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-feature h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--amber-900);
  margin-bottom: .75rem;
}

.card-feature p {
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

.service-card {
  border: 2px solid var(--amber-700);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-card-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--amber-600);
  color: var(--white);
  padding: .25rem 1rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 500;
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--amber-900);
  margin-bottom: .5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1rem;
}

.service-price-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber-700);
}

.service-price-label {
  color: var(--gray-600);
}

.service-duration {
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  gap: .5rem;
  color: var(--gray-700);
}

.service-list li span:first-child {
  color: var(--amber-600);
  font-weight: 700;
}

/* FAQ */
.faq-section {
  background: var(--amber-50);
  border-radius: var(--radius-2xl);
  padding: 3rem;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--amber-900);
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--amber-200);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-weight: 600;
  color: var(--amber-900);
  margin-bottom: .5rem;
}

.faq-a {
  color: var(--gray-700);
  line-height: 1.7;
}

/* ---- CALCULATOR ---- */
.calc-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
  padding: 5rem 0;
}

.calc-wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.calc-headline {
  text-align: center;
  margin-bottom: 3rem;
}

.calc-headline h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--amber-900);
  margin-bottom: .75rem;
}

.calc-headline p {
  color: var(--gray-600);
}

.calc-box {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.calc-section {
  margin-bottom: 2rem;
}

.calc-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--amber-900);
  margin-bottom: 1rem;
  display: block;
}

.calc-label span {
  color: var(--amber-700);
  font-size: 1.1rem;
}

.calc-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-type-btn {
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.calc-type-btn.selected {
  border-color: var(--amber-700);
  background: var(--amber-50);
}

.calc-type-btn:hover {
  border-color: var(--amber-200);
}

.calc-type-icon {
  font-size: 1.75rem;
  margin-bottom: .5rem;
}

.calc-type-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-800);
}

.calc-type-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber-700);
  margin-top: .25rem;
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: var(--amber-200);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  accent-color: var(--amber-700);
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber-700);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: .5rem;
}

.calc-detail {
  background: var(--amber-50);
  border-radius: var(--radius-lg);
  padding: 1rem;
  font-size: .875rem;
  color: var(--gray-600);
}

.calc-breakdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 2px solid var(--amber-200);
}

.calc-breakdown span:last-child {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 1.05rem;
}

.calc-total {
  background: linear-gradient(135deg, var(--amber-700), var(--amber-600));
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.calc-total-label {
  font-size: .875rem;
  opacity: .9;
  margin-bottom: .5rem;
}

.calc-total-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.calc-tip {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 1rem;
  font-size: .875rem;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
}

.calc-tip strong {
  display: block;
  margin-bottom: .35rem;
}

/* ---- CONTACTS ---- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--amber-900);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h3 {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .25rem;
  font-size: .95rem;
}

.contact-item p,
.contact-item a {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-item a {
  color: var(--amber-700);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--amber-800);
}

.contact-form-box {
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--amber-900);
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--amber-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: .95rem;
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--amber-700);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, .1);
}

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

.map-placeholder {
  background: var(--amber-100);
  border-radius: var(--radius-2xl);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-placeholder .map-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--amber-900);
  font-weight: 500;
  margin-bottom: .25rem;
}

.map-placeholder small {
  color: var(--amber-700);
  font-size: .875rem;
}

.info-badge {
  border-radius: var(--radius-lg);
  padding: 1rem;
  font-size: .875rem;
  margin-bottom: .75rem;
}

.info-badge-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a5f;
}

.info-badge-green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
}

.info-badge strong {
  font-weight: 600;
}

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

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

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

.blog-category {
  font-size: .75rem;
  font-weight: 500;
  color: var(--amber-700);
  background: var(--amber-50);
  padding: .2rem .75rem;
  border-radius: 99px;
}

.blog-date {
  font-size: .75rem;
  color: var(--gray-500);
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--amber-900);
  margin-bottom: .75rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: .875rem;
  font-weight: 500;
  color: var(--amber-700);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--amber-800);
  gap: .5rem;
}

.blog-read-more::after {
  content: '→';
}

/* Methods section */
.methods-box {
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: var(--radius-2xl);
  padding: 3rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.methods-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber-900);
  margin-bottom: 1rem;
}

.methods-col p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: .75rem;
  font-size: .95rem;
}

.record-badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.record-badge small {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .5rem;
  display: block;
}

.record-badge strong {
  display: block;
  color: var(--amber-900);
  font-size: 1.1rem;
  margin-bottom: .35rem;
}

.record-badge p {
  color: var(--gray-600);
  font-size: .9rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--amber-950);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
}

.footer-col h4 {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.footer-copy {
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

/* ---- PAGE HEADER ---- */
.page-header {
  padding: 4rem 0 0;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--amber-900);
  margin-bottom: .75rem;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

/* ---- UTILITY ---- */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}