*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #B8975A;
  --gold-light: #D4B483;
  --gold-pale: #F5EDD9;
  --ivory: #FAF8F4;
  --charcoal: #1C1C1C;
  --mid: #5A5A5A;
  --light: #E8E4DC;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 10px 12px;
  z-index: 9999;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-dark {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.announcement-bar {
  background: var(--gold);
  padding: 10px 40px;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.announcement-bar p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
}
.announcement-bar strong { font-weight: 600; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--black);
  padding: 32px 40px;
  z-index: 999;
  border-top: 1px solid rgba(184,151,90,0.2);
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1209 0%, #0d0d0d 60%);
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><defs><pattern id="grain" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="none"/><circle cx="1" cy="1" r="0.4" fill="rgba(184,151,90,0.06)"/><circle cx="3" cy="3" r="0.3" fill="rgba(184,151,90,0.04)"/></pattern></defs><rect width="400" height="600" fill="url(%23grain)"/></svg>');
}
.hero-image-artistic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  opacity: 0.96;
}
.hero-bag-illustration {
  width: 80%;
  max-width: 420px;
  opacity: 0.9;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}
.hero-stat {
  padding: 0 24px 0 0;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(184,151,90,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.brand-strip {
  background: var(--charcoal);
  padding: 28px 40px;
  border-top: 1px solid rgba(184,151,90,0.2);
  border-bottom: 1px solid rgba(184,151,90,0.2);
}
.brand-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.brand-strip-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-strip-channels {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.channel-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.channel-tag:hover { color: var(--gold); }

.value-section {
  padding: 120px 0;
  background: var(--ivory);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.value-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 24px;
}
.value-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.value-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-feature-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
.value-feature-text h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.value-feature-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
}
.value-visual {
  position: relative;
}
.value-image-stack {
  position: relative;
  height: 560px;
}
.value-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 82%;
  height: 480px;
  background: var(--light);
  overflow: hidden;
}
.value-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  height: 260px;
  background: var(--charcoal);
  border: 6px solid var(--ivory);
  overflow: hidden;
  z-index: 2;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8E4DC;
}
.img-placeholder-dark {
  background: #2A2A2A;
}
.value-badge {
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.value-badge-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.value-badge-text {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.materials-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.materials-section::before {
  content: 'MATERIALS';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.2em;
  pointer-events: none;
}
.materials-header {
  text-align: center;
  margin-bottom: 70px;
}
.materials-header .section-title { color: var(--white); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.material-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.material-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.material-card:hover .material-bg { transform: scale(1.06); }
.material-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.material-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.material-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.material-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.material-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.material-card:hover .material-desc { max-height: 80px; }
.material-arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.material-card:hover .material-arrow { opacity: 1; background: var(--gold); border-color: var(--gold); }
.mat-pu { background: linear-gradient(160deg, #3D2B1F 0%, #6B4435 40%, #8B5E4A 100%); }
.mat-full { background: linear-gradient(160deg, #1A0F08 0%, #3D200E 40%, #5C3520 100%); }
.mat-split { background: linear-gradient(160deg, #2C2015 0%, #4A3525 40%, #6B5040 100%); }
.mat-genuine { background: linear-gradient(160deg, #0F0A06 0%, #2A1808 40%, #472C14 100%); }

.process-section {
  padding: 120px 0;
  background: var(--white);
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.process-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--light);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .step-circle {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
}
.step-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}

.categories-section {
  padding: 120px 0;
  background: var(--ivory);
}
.categories-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.cat-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.cat-card-large {
  grid-row: span 2;
}
.cat-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cat-card-large .cat-image { height: 480px; }
.cat-image-default { height: 220px; }
.cat-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cat-card:hover .cat-bg { transform: scale(1.04); }
.cat-body {
  padding: 28px 32px;
  border-top: 1px solid var(--light);
}
.cat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.cat-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cat-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-link::after {
  content: '→';
  transition: transform 0.2s;
}
.cat-card:hover .cat-link::after { transform: translateX(4px); }
.bg-tote { background: #C4A882; }
.bg-clutch { background: #8B7355; }
.bg-shoulder { background: #A0876B; }
.bg-crossbody { background: #B5967A; }
.bg-satchel { background: #6B5040; }

.why-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-content {
  padding-right: 80px;
  padding-top: 20px;
}
.why-content .section-title { color: var(--white); }
.why-content .divider { background: var(--gold); }
.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(184,151,90,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.why-item-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.why-visual {
  position: relative;
}
.why-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.why-certifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.cert-badge {
  border: 1px solid rgba(184,151,90,0.3);
  padding: 20px;
  text-align: center;
}
.cert-icon {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}
.cert-text {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}
.why-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.why-quote-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}
.why-quote-author {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.clients-section {
  padding: 120px 0;
  background: var(--white);
}
.clients-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 70px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light);
}
.client-card {
  background: var(--white);
  padding: 50px 40px;
  text-align: center;
  transition: background 0.3s;
  cursor: pointer;
}
.client-card:hover { background: var(--ivory); }
.client-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.client-card:hover .client-icon {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.client-icon svg { width: 28px; height: 28px; stroke: var(--mid); fill: none; }
.client-card:hover .client-icon svg { stroke: var(--gold); }
.client-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.client-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,90,0.35);
  padding: 4px 12px;
}

.testimonials-section {
  padding: 120px 0;
  background: var(--ivory);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 30px;
  right: 36px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 14px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}
.author-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.author-title {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
}

.specs-section {
  padding: 120px 0;
  background: var(--charcoal);
}
.specs-header {
  text-align: center;
  margin-bottom: 70px;
}
.specs-header .section-title { color: var(--white); }
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table th {
  padding: 16px 28px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184,151,90,0.3);
  background: rgba(184,151,90,0.06);
}
.specs-table td {
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(184,151,90,0.04); }
.highlight-cell {
  color: var(--gold) !important;
  font-weight: 400 !important;
}
.specs-note {
  margin-top: 30px;
  padding: 24px 32px;
  background: rgba(184,151,90,0.08);
  border-left: 2px solid var(--gold);
}
.specs-note p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.specs-note strong { color: var(--gold); font-weight: 500; }

.contact-section {
  padding: 120px 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-tagline {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 32px;
}
.contact-tagline em {
  font-style: italic;
  color: var(--gold);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.contact-detail-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}
.contact-detail-text strong {
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 2px;
}
.contact-form-wrapper {
  background: var(--white);
  padding: 60px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--ivory);
  border: 1px solid var(--light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--gold); }
.form-privacy {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  text-align: center;
}

.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(184,151,90,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.social-icon:hover { border-color: var(--gold); background: rgba(184,151,90,0.1); }
.social-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 28px;
}
.footer-bottom-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 28px; height: 28px; fill: white; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  background: var(--black);
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(184,151,90,0.18), transparent 38%),
    radial-gradient(circle at 80% 25%, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(135deg, #140f0a 0%, #0a0a0a 58%, #17110b 100%);
}
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}
.page-hero-copy {
  max-width: 720px;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-desc {
  max-width: 620px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.68);
}
.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.page-hero-panel {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
}
.page-hero-media {
  margin: -32px -32px 24px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-panel h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-panel p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}
.page-hero-points {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-hero-points li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.page-hero-points li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.page-section {
  padding: 110px 0;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.editorial-card {
  background: var(--white);
  border: 1px solid var(--light);
  padding: 32px;
}
.editorial-card.dark {
  background: var(--charcoal);
  border-color: rgba(255,255,255,0.08);
}
.editorial-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 12px;
}
.editorial-card.dark h3 {
  color: var(--white);
}
.editorial-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}
.editorial-card.dark p {
  color: rgba(255,255,255,0.6);
}
.editorial-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.editorial-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: inherit;
}
.editorial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.metric-box {
  padding: 24px 0 0;
  border-top: 1px solid rgba(184,151,90,0.28);
}
.metric-box.dark {
  border-top-color: rgba(255,255,255,0.12);
}
.metric-box h4 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 4px;
}
.metric-box p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.metric-box.dark p {
  color: rgba(255,255,255,0.45);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.program-card {
  background: var(--white);
  padding: 32px;
  border-top: 2px solid var(--gold);
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 12px;
}
.program-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}
.note-box {
  margin-top: 30px;
  padding: 28px 32px;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
}
.note-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
}
.dark-section {
  background: var(--charcoal);
}
.dark-section .section-title,
.dark-section .section-label {
  color: var(--white);
}
.dark-section .section-label {
  color: var(--gold);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.timeline-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
}
.timeline-step {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.timeline-card h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.timeline-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}
.quote-panel {
  background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold);
  padding: 28px 30px;
}
.quote-panel p {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.84);
}
.quote-panel span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.home-intro {
  padding: 110px 0 0;
  background: var(--ivory);
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.home-copy p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}
.slogan-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slogan-card {
  background: var(--white);
  border-left: 2px solid var(--gold);
  padding: 24px 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}
.slogan-card .mini {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.slogan-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
}
.home-links-section {
  padding: 110px 0;
}
.home-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-link-card {
  background: var(--white);
  padding: 34px;
  border-top: 2px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}
.page-link-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 12px;
}
.page-link-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 18px;
}
.page-link-card .link-arrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.home-atelier {
  padding: 110px 0;
  background: var(--charcoal);
}
.home-atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.home-atelier .section-title {
  color: var(--white);
}
.home-atelier p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.62);
}
.atelier-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 34px;
}
.atelier-note h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.atelier-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.atelier-note li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.64);
}
.atelier-note li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-hero {
  background: var(--black);
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184,151,90,0.18), transparent 38%),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(135deg, #15100b 0%, #0a0a0a 56%, #18120d 100%);
}
.blog-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.blog-summary-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 34px;
}
.blog-summary-media {
  margin: -32px -32px 24px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-summary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-summary-box h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-summary-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}
.blog-list-section {
  padding: 110px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  padding: 250px 30px 30px;
  border-top: 2px solid var(--gold);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.02) 0%, rgba(10, 10, 10, 0.18) 100%),
    var(--card-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-card > * {
  position: relative;
  z-index: 1;
}
.blog-card .blog-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 18px;
}
.blog-card .meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.article-main {
  background: var(--ivory);
  padding: 150px 0 110px;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}
.article-content {
  background: var(--white);
  padding: 46px 54px;
}
.article-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 22px;
}
.article-dek {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 28px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light);
  margin-bottom: 34px;
}
.article-meta span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.article-feature {
  margin: 0 0 34px;
  background: var(--ivory);
}
.article-feature img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.2;
  margin: 44px 0 16px;
}
.article-body h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.article-body ul,
.article-body ol {
  margin: 8px 0 24px 18px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 8px;
}
.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 30px;
}
.article-body th,
.article-body td {
  border-bottom: 1px solid var(--light);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}
.article-body th {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-side {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.toc-card,
.insight-card {
  background: var(--white);
  padding: 24px;
  border-top: 2px solid var(--gold);
}
.toc-card h3,
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 12px;
}
.toc-card a,
.insight-card a,
.insight-card p {
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 8px;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.blog-pagination a {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light);
  background: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-pagination a.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; min-height: unset; }
  .hero-content { padding: 60px 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-image-stack { height: 400px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .process-timeline::before { display: none; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card-large { grid-row: span 1; }
  .cat-card-large .cat-image { height: 220px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-content { padding-right: 0; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .home-intro-grid { grid-template-columns: 1fr; }
  .home-atelier-grid { grid-template-columns: 1fr; }
  .home-links-grid { grid-template-columns: 1fr 1fr; }
  .blog-hero-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-shell { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .metric-band { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero-content { padding: 40px 24px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .process-header { grid-template-columns: 1fr; }
  .announcement-bar { padding: 10px 20px; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero-panel { padding: 26px; }
  .home-links-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-content { padding: 34px 28px; }
  .metric-band { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
}
