/* ========================================
   POLYGON — Typography Design
   Typographic Minimalism Style
   ======================================== */

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

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:       #FFFFFF;
  --black:       #111111;
  --dark:        #1C1C1C;
  --gray-900:    #2A2A2A;
  --gray-700:    #4A4A4A;
  --gray-500:    #777777;
  --gray-300:    #BBBBBB;
  --gray-100:    #EFEFED;
  --bg:          #F9F8F5;
  --ochre:       #B8934A;
  --ochre-light: #D4AF72;
  --ochre-dark:  #8C6D30;
  --border:      #E0DDD6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:        1200px;
  --section-py:   80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(249, 248, 245, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.03em;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-name span {
  color: var(--ochre);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--black);
  background-color: var(--gray-100);
}

.main-nav > ul > li.active > a {
  color: var(--ochre);
}

/* Dropdown */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--gray-700);
  transition: color 0.2s, background-color 0.2s;
}

.dropdown li a:hover {
  background-color: var(--gray-100);
  color: var(--ochre);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.btn-contact {
  padding: 9px 22px;
  background-color: var(--black);
  color: var(--white) !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background-color 0.2s;
}

.btn-contact:hover {
  background-color: var(--ochre) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 32px 40px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.mobile-nav ul li a:hover {
  color: var(--ochre);
}

.mobile-nav-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 20px;
  margin-bottom: 4px;
  padding: 0;
  border: none !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  padding-top: 152px;
  padding-bottom: var(--section-py);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--ochre);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.hero-image-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* ========================================
   TYPOGRAPHY (shared)
   ======================================== */

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--ochre);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-700);
  max-width: 640px;
  margin-bottom: 48px;
}

.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}

.page-header-inner {
  max-width: 760px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}

.page-title em {
  font-style: italic;
  color: var(--ochre);
}

.page-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background-color: var(--ochre);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-ochre {
  background-color: var(--ochre);
  color: var(--white);
}

.btn-ochre:hover {
  background-color: var(--ochre-dark);
  color: var(--white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: var(--section-py) 0;
}

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

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

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-subtitle,
.section-dark p {
  color: var(--gray-300);
}

.section-dark .section-label {
  color: var(--ochre-light);
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--ochre);
  margin: 24px 0;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ochre);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link::after {
  content: '→';
}

.card-link:hover {
  gap: 10px;
}

/* Info card */
.info-card {
  padding: 36px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.info-card-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 8px;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.info-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ochre);
}

.feature-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ========================================
   TWO-COLUMN LAYOUT
   ======================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
}

.two-col-text h2 em {
  font-style: italic;
  color: var(--ochre);
}

.two-col-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.two-col-text p:last-of-type {
  margin-bottom: 0;
}

.two-col-img {
  position: relative;
}

.two-col-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

.two-col-img-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

/* ========================================
   STATS ROW
   ======================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.stat-item {
  background-color: var(--white);
  padding: 36px 28px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* ========================================
   QUOTE / PULLQUOTE
   ======================================== */

.pullquote {
  position: relative;
  padding: 40px 48px;
  border-left: 4px solid var(--ochre);
  background-color: var(--white);
  margin: 40px 0;
}

.pullquote p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 16px;
}

.pullquote cite {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--ochre);
  border: 3px solid var(--bg);
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
}

/* ========================================
   ARTICLE CONTENT
   ======================================== */

.article-body {
  max-width: 740px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  margin: 48px 0 20px;
  line-height: 1.2;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin: 36px 0 16px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.article-body ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.article-body ol li {
  list-style: decimal;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--black);
  font-weight: 600;
}

.article-body a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--ochre-dark);
}

.article-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
  margin: 32px 0;
}

/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--gray-300);
}

.breadcrumb li a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.breadcrumb li a:hover {
  color: var(--ochre);
}

.breadcrumb li:last-child {
  color: var(--black);
  font-weight: 500;
}

/* ========================================
   SIDEBAR + ARTICLE LAYOUT
   ======================================== */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-links a {
  font-size: 13px;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.sidebar-links a::before {
  content: '→';
  color: var(--ochre);
  font-size: 12px;
}

.sidebar-links a:hover {
  color: var(--ochre);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--gray-100);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
  cursor: pointer;
}

.tag:hover, .tag a:hover {
  background-color: var(--ochre);
  color: var(--white);
}

.tag a {
  color: inherit;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--gray-100);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ochre);
  background-color: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--ochre);
}

.form-consent label {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background-color: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ========================================
   BREADCRUMB HERO
   ======================================== */

.page-hero {
  padding-top: 130px;
  padding-bottom: 56px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

/* ========================================
   TABLE
   ======================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  background-color: var(--gray-100);
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top;
}

.data-table tr:hover td {
  background-color: var(--gray-100);
}

/* ========================================
   TYPEFACE SHOWCASE
   ======================================== */

.typeface-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.typeface-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.typeface-sample {
  font-size: 52px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.typeface-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.typeface-meta {
  font-size: 12px;
  color: var(--ochre);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.typeface-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ========================================
   BLOG / ARTICLES LIST
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.blog-card-date {
  font-size: 12px;
  color: var(--gray-500);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-title a {
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--ochre);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.blog-card-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--ochre);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

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

.blog-card-read-more:hover {
  gap: 10px;
}

/* Featured article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}

.featured-article-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-article-body {
  padding: 48px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========================================
   TOOLS PAGE
   ======================================== */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tool-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.tool-icon {
  width: 52px;
  height: 52px;
  background-color: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.tool-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.tool-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 12px;
}

.tool-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.tool-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--gray-100);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.05em;
}

.tool-badge.free {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.tool-badge.paid {
  background-color: #FFF3E0;
  color: #E65100;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter-section {
  background-color: var(--dark);
  padding: 80px 0;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-inner p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  background-color: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  border-color: var(--ochre-light);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background-color: var(--black);
  color: var(--gray-300);
  padding-top: 72px;
  padding-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 24px;
}

.footer-brand .logo-tagline {
  color: var(--gray-500);
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact-icon {
  flex-shrink: 0;
  color: var(--ochre);
  width: 16px;
  margin-top: 1px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
  line-height: 1.6;
}

.footer-links a:hover {
  color: var(--ochre-light);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--ochre-light);
}

/* ========================================
   POLICY PAGES
   ======================================== */

.policy-content {
  max-width: 800px;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin: 44px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 28px 0 12px;
}

.policy-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.policy-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-content ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:hover {
  color: var(--ochre-dark);
}

.policy-update {
  font-size: 13px;
  color: var(--gray-500);
  padding: 16px 20px;
  background-color: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 40px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

@media (max-width: 900px) {
  :root {
    --section-py: 60px;
  }

  .main-nav, .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: -1;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .cards-grid,
  .cards-grid-2,
  .blog-grid,
  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article-img {
    min-height: 240px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .cards-grid,
  .cards-grid-2,
  .blog-grid,
  .tools-grid,
  .cards-grid-4,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .pullquote {
    padding: 28px 24px;
  }

  .pullquote p {
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal {
    gap: 14px;
  }
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.ochre { color: var(--ochre); }
.gray  { color: var(--gray-700); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Horizontal rule */
hr.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 64px 0;
}

/* Chip row */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  padding: 7px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
  cursor: pointer;
}

.chip:hover, .chip.active {
  background-color: var(--ochre);
  border-color: var(--ochre);
  color: var(--white);
}

/* Number list */
.number-list {
  counter-reset: num-list;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.number-list-item {
  display: flex;
  gap: 20px;
  counter-increment: num-list;
}

.number-list-item::before {
  content: counter(num-list, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--ochre);
  flex-shrink: 0;
  line-height: 1;
  width: 52px;
}

.number-list-content h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.number-list-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
}

/* ========================================
   BUTTON ALIASES (contact.php uses .btn--primary etc.)
   ======================================== */

.btn--primary {
  background-color: var(--black);
  color: var(--white);
}
.btn--primary:hover {
  background-color: var(--ochre);
  color: var(--white);
}
.btn--outline {
  background-color: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--outline:hover {
  background-color: var(--black);
  color: var(--white);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ========================================
   PAGE HERO VARIANTS
   ======================================== */

.page-hero {
  padding-top: 130px;
  padding-bottom: 56px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero--policy h1 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.page-hero .hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 640px;
}

.policy-date {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* ========================================
   POLICY PAGE STYLES
   ======================================== */

.policy-section {
  padding: 64px 0 80px;
}

.container--policy {
  max-width: 800px;
}

.policy-intro {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.policy-toc {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 36px;
  margin-bottom: 48px;
}

.policy-toc h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.policy-toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-toc ol li {
  list-style: decimal;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

.policy-toc ol li a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.policy-toc ol li a:hover {
  color: var(--ochre-dark);
}

.container--policy h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin: 48px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.25;
  scroll-margin-top: 90px;
}

.container--policy h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin: 28px 0 12px;
}

.container--policy p {
  font-size: 15px;
  line-height: 1.88;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.container--policy ul,
.container--policy ol {
  padding-left: 24px;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.container--policy ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}

.container--policy ol li {
  list-style: decimal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}

.container--policy strong {
  color: var(--black);
  font-weight: 600;
}

.container--policy a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container--policy a:hover {
  color: var(--ochre-dark);
}

.container--policy code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background-color: var(--gray-100);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--black);
}

.policy-contact-block {
  background-color: var(--gray-100);
  border-left: 3px solid var(--ochre);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin-top: 12px;
}

.policy-contact-block p {
  margin-bottom: 8px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.policy-contact-block p:last-child {
  margin-bottom: 0 !important;
}

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.cookie-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  background-color: var(--gray-100);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.cookie-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top;
}

.cookie-table tr:hover td {
  background-color: var(--gray-100);
}

/* ========================================
   CONTACT PAGE (contact.php-specific)
   ======================================== */

.contact-section {
  padding: 64px 0 80px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-block {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contact-block:last-child {
  border-bottom: none;
}

.contact-block h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-block p,
.contact-block address {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: normal;
}

.contact-block a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-note {
  font-size: 12px !important;
  color: var(--gray-500) !important;
  margin-top: 4px;
}

.contact-topics {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.contact-topics li {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.contact-topics li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--ochre);
}

.contact-form-col {}

.form-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}

.form-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.form-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.req {
  color: #c0392b;
  margin-left: 2px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ochre);
  background-color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.65;
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-checkbox {
  margin-top: 4px;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--gray-700) !important;
  cursor: pointer;
  line-height: 1.6 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ochre);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  min-height: 16px;
}

/* Form success message */
.form-success-message {
  background-color: #f0faf0;
  border: 1px solid #b2dfb2;
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 24px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background-color: #2e7d32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 18px;
}

.form-success-message h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.form-success-message p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
}

/* Contact FAQ */
.contact-faq {
  background-color: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.contact-faq h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item {
  padding: 28px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.35;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
}

/* ========================================
   ARTICLE BODY SECTION (article pages)
   ======================================== */

.article-body-section {
  padding: 60px 0 80px;
}

.container--article {
  max-width: 760px;
}

.container--article h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin: 44px 0 18px;
  line-height: 1.25;
}

.container--article h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 32px 0 14px;
}

.container--article p {
  font-size: 16px;
  line-height: 1.88;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.container--article ul,
.container--article ol {
  padding-left: 24px;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.container--article ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}

.container--article ol li {
  list-style: decimal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}

.container--article strong {
  color: var(--black);
  font-weight: 600;
}

.container--article a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container--article a:hover {
  color: var(--ochre-dark);
}

/* Article hero */
.page-hero--article .article-meta-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb-link {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--ochre);
}

.article-cat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.article-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-top: 20px;
  max-width: 700px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-500);
}

.byline-dot {
  color: var(--gray-300);
}

/* Article images */
.article-image-full {
  margin: 36px 0;
}

.article-image-full img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.article-image-inline {
  margin: 36px 0;
}

.article-image-inline img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
}

.image-caption {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 10px;
  line-height: 1.5;
  font-style: italic;
}

/* Article pull quote */
.article-pull-quote {
  margin: 40px 0;
  padding: 32px 40px;
  border-left: 4px solid var(--ochre);
  background-color: var(--white);
}

.article-pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: 21px;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
}

/* Color grid (article-color.php) */
.color-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.color-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}

.color-swatch {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.color-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.color-card p {
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: var(--gray-700) !important;
  margin-bottom: 0 !important;
}

/* Article navigation */
.article-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  flex-wrap: wrap;
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 45%;
  transition: opacity 0.2s;
}

.article-nav-link:hover {
  opacity: 0.75;
}

.article-nav-link--next {
  text-align: right;
  margin-left: auto;
}

.nav-direction {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.nav-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}

/* Related articles */
.related-articles {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 56px 0;
}

.related-articles .section-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: block;
  padding: 24px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.related-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.35;
}

.related-card p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ========================================
   SITEMAP PAGE
   ======================================== */

.sitemap-section {
  padding: 64px 0 80px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.sitemap-col h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ochre);
  display: inline-block;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-list li a {
  font-size: 14px;
  color: var(--gray-700);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  padding: 3px 0;
}

.sitemap-list li a:hover {
  color: var(--ochre);
  padding-left: 8px;
}

/* ========================================
   404 ERROR PAGE
   ======================================== */

.error-section {
  padding: 140px 0 100px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.error-number {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -4px;
}

.error-content h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.error-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 36px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-suggestions h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.error-suggestions ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.error-suggestions ul li a {
  font-size: 14px;
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.error-suggestions ul li a:hover {
  color: var(--ochre-dark);
}

/* ========================================
   RESPONSIVE ADDITIONS
   ======================================== */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .color-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .article-nav-link {
    max-width: 100%;
  }

  .article-nav-link--next {
    text-align: left;
    margin-left: 0;
  }

  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .form-card {
    padding: 28px 20px;
  }

  .article-image-full img,
  .article-image-inline img {
    height: 240px;
  }

  .article-pull-quote {
    padding: 24px 20px;
  }

  .article-pull-quote blockquote {
    font-size: 18px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .color-grid {
    grid-template-columns: 1fr;
  }

  .cookie-table-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}
