/* ==========================================================
   gabrielanpetrov.com — Vienna Modern v2
   Shared stylesheet for all pages
   ========================================================== */

:root {
  --bg: #F7F5F0;
  --bg-cream: #EDE7DC;
  --bordeaux: #6B2737;
  --bordeaux-deep: #4F1C28;
  --gold: #B8945F;
  --gold-warm: #C9A574;
  --gold-soft: rgba(184, 148, 95, 0.10);
  --gold-veil: rgba(184, 148, 95, 0.04);
  --ink: #3A3A3A;
  --ink-soft: #6E6E6E;
  --rule: #D9D2C5;
  --shadow: 0 4px 24px rgba(107, 39, 55, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   Language toggle
   ========================================================== */

body.lang-ro .en, body.lang-ro .de { display: none !important; }
body.lang-en .ro, body.lang-en .de { display: none !important; }
body.lang-de .ro, body.lang-de .en { display: none !important; }

/* ==========================================================
   Layout
   ========================================================== */

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

section {
  padding: clamp(72px, 10vw, 160px) 0;
  position: relative;
}

section.compact { padding: clamp(48px, 6vw, 96px) 0; }

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

/* ==========================================================
   Top navigation
   ========================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--bordeaux);
}

.nav-monogram {
  width: 38px;
  height: 38px;
  border: 1px solid var(--bordeaux);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--bordeaux);
}

.nav-brand-text {
  font-family: 'Lora', serif;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--bordeaux);
}

.nav-brand-text .sub {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.25s ease;
}

.nav-menu a:hover { color: var(--bordeaux); }

.nav-menu a.current {
  color: var(--bordeaux);
}

.nav-menu a.current::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  gap: 0;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
}

.lang-toggle button {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-toggle button:hover { color: var(--bordeaux); }

.lang-toggle button.active {
  background: var(--bordeaux);
  color: var(--bg);
}

.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--bordeaux);
}

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

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px clamp(20px, 5vw, 48px) 48px;
    border-bottom: 1px solid var(--rule);
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { font-size: 14px; }
  .nav-burger { display: block; }
}

@media (max-width: 600px) {
  .nav-brand-text { display: none; }
  .nav-inner { padding: 14px 18px; gap: 12px; }
  .lang-toggle button { padding: 5px 10px; font-size: 10px; }
}

/* ==========================================================
   Signature elements
   ========================================================== */

.monogram {
  width: 56px;
  height: 56px;
  border: 1px solid var(--bordeaux);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--bordeaux);
}

.seal {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}

.rule {
  height: 1px;
  background: var(--gold);
  width: 64px;
  margin: 28px 0;
  border: none;
}

.rule-center {
  height: 1px;
  background: var(--gold);
  width: 64px;
  margin: 28px auto;
  border: none;
}

.rule-full {
  height: 1px;
  background: var(--rule);
  width: 100%;
  margin: 32px 0;
  border: none;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 36px 0;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  background: var(--gold);
  flex: 0 0 48px;
}

.ornament-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 24px;
}

.h3-eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

/* ==========================================================
   Typography
   ========================================================== */

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: var(--bordeaux);
  font-weight: 500;
}

h1 {
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.2px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

p {
  margin-bottom: 18px;
  color: var(--ink);
}

.lead {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 760px;
}

.drop {
  font-family: 'Lora', serif;
  font-size: 76px;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--bordeaux);
}

em { font-style: italic; color: var(--bordeaux); }
strong { font-weight: 600; color: var(--bordeaux); }

/* ==========================================================
   Section opener (used on every interior page)
   ========================================================== */

.section-opener { margin-bottom: 40px; }

.section-opener .section-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ==========================================================
   Page hero (interior pages — smaller than home hero)
   ========================================================== */

.page-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--rule);
}

.page-hero .monogram {
  margin: 0 auto 24px;
  display: flex;
}

.page-hero .eyebrow { margin-bottom: 14px; }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 800px;
  margin: 0 auto 18px;
}

.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(17px, 1.7vw, 20px);
}

/* ==========================================================
   Icon system (inline SVG, gold stroke)
   ========================================================== */

.icon {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-lg { width: 56px; height: 56px; }

.icon-circle {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle .icon { width: 32px; height: 32px; }

/* ==========================================================
   Cards & grids
   ========================================================== */

.callout {
  background: var(--gold-soft);
  border-left: 2px solid var(--gold);
  padding: 26px 30px;
  margin: 32px 0;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 760px) {
  .card-grid { grid-template-columns: 1fr !important; gap: 20px; }
}

.card,
.card:link,
.card:visited,
.card:hover,
.card:focus,
.card:active {
  text-decoration: none;
  color: inherit;
}

.card *,
.card h3,
.card p {
  text-decoration: none;
}

.card {
  background: var(--bg);
  padding: 36px 32px;
  border: 1px solid var(--rule);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: block;
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(107, 39, 55, 0.14), 0 2px 8px rgba(107, 39, 55, 0.06);
  transform: translateY(-4px);
}

a.card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.card h3 { margin-bottom: 14px; }

.card p {
  font-size: 15.5px;
  margin-bottom: 0;
  color: var(--ink);
}

/* Service tile — used on Servicii page */
.service-tile {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.service-tile:last-child { border-bottom: none; }

.service-tile .icon-circle { margin-bottom: 0; }

.service-tile h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-tile p { font-size: 16px; max-width: 640px; }

@media (max-width: 600px) {
  .service-tile { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================
   Two-column
   ========================================================== */

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

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

@media (max-width: 720px) {
  .two-col, .two-col.uneven { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================
   Process steps (numbered)
   ========================================================== */

.process { margin-top: 32px; }

.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.process-step:last-child { border-bottom: none; }

.process-step .step-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}

.process-step h3 { font-size: 20px; margin-bottom: 10px; }

.process-step p { font-size: 15.5px; margin-bottom: 0; }

@media (max-width: 600px) {
  .process-step { grid-template-columns: 60px 1fr; gap: 18px; }
  .process-step .step-num { font-size: 24px; }
}

/* ==========================================================
   Refined list (gold dash)
   ========================================================== */

/* Collapsible details (used on Services page) */
.service-details {
  margin: 20px 0 0;
  max-width: 720px;
}

.service-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: color 0.25s ease;
}

.service-details summary::-webkit-details-marker {
  display: none;
}

.service-details summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  margin-left: auto;
  margin-bottom: 4px;
  transition: transform 0.3s ease, border-color 0.25s ease;
}

.service-details[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: -4px;
}

.service-details summary:hover {
  color: var(--bordeaux);
}

.service-details summary:hover::after {
  border-right-color: var(--bordeaux);
  border-bottom-color: var(--bordeaux);
}

.service-details[open] summary {
  border-bottom-color: transparent;
}

.service-details ul.refined {
  margin-top: 0;
  border-bottom: 1px solid var(--rule);
}

ul.refined {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  max-width: 720px;
}

ul.refined li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  line-height: 1.55;
  font-size: 16px;
}

ul.refined li:last-child { border-bottom: none; }

ul.refined li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================
   Photo placeholder + framed photo
   ========================================================== */

.photo-frame {
  position: relative;
  background: var(--bg-cream);
  border: 1px solid var(--rule);
  overflow: hidden;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-frame.portrait { aspect-ratio: 4 / 5; }
.photo-frame.landscape { aspect-ratio: 3 / 2; }
.photo-frame.square { aspect-ratio: 1 / 1; }

.photo-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.5;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
  padding: 24px;
}

.photo-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.25;
}

/* ==========================================================
   Case study card (Portfolio)
   ========================================================== */

.case-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

a.case-card,
a.case-card:link,
a.case-card:visited,
a.case-card:hover,
a.case-card:focus,
a.case-card:active {
  text-decoration: none;
  color: inherit;
}

a.case-card *,
a.case-card h3,
a.case-card p {
  text-decoration: none;
}

a.case-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(107, 39, 55, 0.14), 0 2px 8px rgba(107, 39, 55, 0.06);
  transform: translateY(-4px);
}

a.case-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.case-card .photo-frame { border: none; }
.case-card .photo-frame::after { display: none; }

.case-card-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-card-body h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.case-card-body p {
  font-size: 15.5px;
  margin-bottom: 18px;
}

.case-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-soft);
}

.case-card-meta .tag {
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold);
}

@media (max-width: 760px) {
  .case-card { grid-template-columns: 1fr; }
}

/* ==========================================================
   Metrics block
   ========================================================== */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.metric .metric-val {
  font-family: 'Lora', serif;
  font-size: 38px;
  color: var(--bordeaux);
  line-height: 1;
  margin-bottom: 8px;
}

.metric .metric-lbl {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1.4;
}

/* ==========================================================
   Languages strip
   ========================================================== */

.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 20px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
}

.languages > span {
  position: relative;
  padding-left: 14px;
}

.languages > span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ==========================================================
   CTA section (bordeaux background)
   ========================================================== */

.cta-section {
  background: var(--bordeaux);
  color: #F7F5F0;
  padding: clamp(64px, 8vw, 120px) 0;
}

.cta-section h2,
.cta-section h3,
.cta-section strong { color: #F7F5F0; }
.cta-section .eyebrow { color: var(--gold-warm); }
.cta-section .rule { background: var(--gold-warm); }
.cta-section p { color: #E8E2D6; max-width: 640px; }
.cta-section .lead { color: #F7F5F0; }

.cta-button {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 36px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #F7F5F0;
  text-decoration: none;
  border: 1px solid var(--gold-warm);
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--gold-warm);
  color: var(--bordeaux);
}

.cta-button-light {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--bordeaux);
  text-decoration: none;
  border: 1px solid var(--bordeaux);
  background: transparent;
  transition: all 0.3s ease;
}

.cta-button-light:hover {
  background: var(--bordeaux);
  color: var(--bg);
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  margin-top: 36px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #E8E2D6;
}

.cta-contact a {
  color: #F7F5F0;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-warm);
  padding-bottom: 2px;
}

/* ==========================================================
   Form (Contact page)
   ========================================================== */

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-submit {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--bg);
  background: var(--bordeaux);
  border: 1px solid var(--bordeaux);
  padding: 16px 40px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--bordeaux-deep);
  border-color: var(--bordeaux-deep);
}

/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
  background: var(--bg-cream);
  padding: 32px 0 18px;
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
  align-items: start;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.footer-brand .monogram {
  width: 32px;
  height: 32px;
  font-size: 13px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer-tagline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin: 0;
  line-height: 1.4;
}

.footer-col h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 5px; line-height: 1.4; }

.footer-col a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12.5px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--bordeaux); }

/* Collapsible footer columns (navigation, contact) */
.footer-details {
  margin: 0;
}

.footer-details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-details > summary::-webkit-details-marker { display: none; }

.footer-details > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.2px solid var(--gold);
  border-bottom: 1.2px solid var(--gold);
  transform: rotate(45deg);
  margin-left: auto;
  margin-bottom: 3px;
  transition: transform 0.3s ease, border-color 0.2s ease;
}

.footer-details[open] > summary::after {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}

.footer-details > summary:hover { color: var(--bordeaux); }

.footer-details > summary:hover::after {
  border-right-color: var(--bordeaux);
  border-bottom-color: var(--bordeaux);
}

.footer-details ul {
  list-style: none;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ink-soft);
}

.footer-bottom .seal {
  width: 24px;
  height: 24px;
  font-size: 9px;
}

/* ==========================================================
   Utilities
   ========================================================== */

.text-center { text-align: center; }
.max-720 { max-width: 720px; }
.max-640 { max-width: 640px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
