/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0c0806;
  --bg-card:   #15110d;
  --fg:        #f9f4ec;
  --muted:     #d2c9be;
  --border:    #3d3632;
  --gold:      #f8c153;
  --gold2:     #b6753b;
  --input-bg:  #241e1a;
  --radius:    2px;
  --font-disp: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,h2,h3,h4,.font-display {
  font-family: var(--font-disp);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

/* ===== UTILS ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hairline { border-color: var(--border); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: filter 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-gold--solid {
  background: linear-gradient(135deg, #f1ba4b, #b6753b);
  color: var(--bg);
  box-shadow: 0 10px 30px -10px rgba(241,186,75,0.4);
}
.btn-gold--solid:hover { filter: brightness(1.1); }
.btn-gold--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold--outline:hover { background: var(--gold); color: var(--bg); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(30,26,22,0.75);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-name { font-family: var(--font-disp); font-size: 1.5rem; color: var(--gold); }
.logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 0.75rem;
  margin-left: 0.25rem;
}
@media (max-width: 768px) { .logo-sub { display: none; } }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
@media (max-width: 1024px) { .main-nav { display: none; } }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.header-wa:hover { color: var(--gold); }
@media (max-width: 768px) { .header-wa { display: none; } }

.header-cta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.header-cta:hover { background: var(--gold); color: var(--bg); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
}
.lang-switcher__item {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0.3rem 0.55rem;
  border-radius: 2px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}
.lang-switcher__item:hover { color: var(--fg); background: rgba(248, 193, 83, 0.1); }
.lang-switcher__item.active { color: var(--bg); background: var(--gold); }
@media (max-width: 768px) { .lang-switcher { margin-left: 0; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(30,26,22,0.88) 50%, rgba(30,26,22,0.3) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%, rgba(30,26,22,0.4) 100%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
}

.hero-content { max-width: 640px; }
.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
  margin: 1.5rem 0;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-badge { display: flex; align-items: center; gap: 0.5rem; }
.hero-badge::before {
  content: 'вњ“';
  color: var(--gold);
  font-size: 0.75rem;
}

.hero-img-col .img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-img-col .img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-col .img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-img-col .img-caption .cap-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.hero-img-col .img-caption .cap-title {
  font-family: var(--font-disp);
  font-size: 1.5rem;
}

/* ===== SERVICES ===== */
.section { padding: 6rem 0; border-top: 1px solid var(--border); }

.section-header { max-width: 900px; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.75rem);
  line-height: 1.05;
  margin: 1.5rem 0;
}
.section-header p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.service-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, rgba(37,32,24,0.3) 60%, transparent 100%);
}
.service-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 1;
}
.service-card__icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,26,22,0.6);
  backdrop-filter: blur(4px);
}
.service-card__num {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.service-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.service-card__title { font-family: var(--font-disp); font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-card__list { flex: 1; margin-bottom: 2rem; }
.service-card__list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.service-card__list li::before {
  content: 'вЂ”';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1em;
}
.service-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--gold);
  background: transparent;
  border-bottom: none; border-left: none; border-right: none;
  cursor: pointer;
  transition: gap 0.2s;
}
.service-card__cta:hover { gap: 1rem; }

/* ===== DAMAGE GRID ===== */
.section--texture {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(55,45,35,0.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37,32,24,0.8) 0%, transparent 50%);
}
.damage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 1024px) { .damage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .damage-grid { grid-template-columns: repeat(2, 1fr); } }

.damage-cell {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
}
.damage-cell img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.6s, transform 0.6s;
}
.damage-cell:hover img { opacity: 0.8; transform: scale(1.05); }
.damage-cell__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(30,26,22,0.85) 50%, rgba(30,26,22,0.3) 100%);
  transition: all 0.5s;
}
.damage-cell:hover .damage-cell__overlay {
  background: linear-gradient(to top, rgba(30,26,22,0.95) 0%, rgba(30,26,22,0.6) 60%, rgba(30,26,22,0.3) 100%);
}
.damage-cell__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
}
@media (max-width: 768px) { .damage-cell__content { padding: 0.875rem; } }
.damage-cell__num { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.2em; }
.damage-cell__title {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  line-height: 1.2;
  transition: color 0.3s;
}
@media (max-width: 768px) { .damage-cell__title { font-size: 1.1rem; } }
.damage-cell:hover .damage-cell__title { color: var(--gold); }

/* ===== BEFORE/AFTER ===== */
.ba-carousel-wrap {
  position: relative;
  margin: 0 2rem;
}
.ba-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ba-carousel::-webkit-scrollbar { display: none; }

.ba-item {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 1024px) { .ba-item { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width: 640px)  { .ba-item { flex: 0 0 90%; } }

.ba-nav {
  display: none;
  position: absolute;
  top: calc(50% - 1.5rem); /* center on slider, above caption */
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(248,193,83,0.4);
  background: var(--bg-card);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
  font-size: 1rem;
}
.ba-nav:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.ba-nav--prev { left: -1.5rem; }
.ba-nav--next { right: -1.5rem; }
@media (min-width: 768px) { .ba-nav { display: flex; } }
.ba-slider {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.ba-slider img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-after { z-index: 1; }
.ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-before-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--gold);
  z-index: 3;
  pointer-events: none;
  will-change: left;
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
}
.ba-handle-btn::before,
.ba-handle-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.ba-handle-btn::before {
  border-right: 6px solid var(--bg);
  margin-right: 2px;
}
.ba-handle-btn::after {
  border-left: 6px solid var(--bg);
  margin-left: 2px;
}
.ba-label {
  position: absolute;
  top: 0.75rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.6rem;
  z-index: 4;
  pointer-events: none;
}
.ba-label--before { left: 0.75rem; background: rgba(30,26,22,0.9); color: var(--muted); }
.ba-label--after  { right: 0.75rem; background: var(--gold); color: var(--bg); }
.ba-caption { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); }

.section-cta { margin-top: 4rem; text-align: center; }

/* ===== PROCESS ===== */
.section--dark {
  background: linear-gradient(180deg, #121009, #1a160f);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.process-step__num {
  font-family: var(--font-disp);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.process-step__title {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.process-step__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ===== INCLUDED ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) { .included-grid { grid-template-columns: 1fr; } }

.included-text h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); margin: 1.5rem 0; }
.included-text p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .included-list { grid-template-columns: 1fr; } }
.included-item {
  background: var(--bg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.included-item__icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.included-item__text { font-size: 0.875rem; }

/* ===== CONTACT CTA ===== */
.section--cta { text-align: center; }
.section--cta h2 { font-size: clamp(2rem, 4vw, 3.75rem); margin: 1.5rem 0; }
.section--cta h2 em { font-style: italic; color: var(--gold); }
.section--cta p { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(37,32,24,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo-name { font-family: var(--font-disp); font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }
.footer-logo-sub { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); margin-bottom: 1.25rem; }
.footer-about { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.footer-heading {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-list .fi { color: var(--gold); flex-shrink: 0; margin-top: 0.1em; }

.footer-socials { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-social {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover { color: var(--gold); border-color: var(--gold); }
.footer-blog-link {
  font-size: 0.875rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-blog-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 0.75rem;
  background: rgba(30,26,22,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}
@media (max-width: 1024px) { .mobile-cta { display: flex; } }
.mobile-cta-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--bg);
  padding: 0.875rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
}
.mobile-cta-wa {
  width: 3rem; height: 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
}
.mobile-cta-spacer { height: 5rem; display: none; }
@media (max-width: 1024px) { .mobile-cta-spacer { display: block; } }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.modal-overlay.is-open { display: flex; }

.modal-box {
  position: relative;
  width: 100%;
  max-width: 40rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  margin: 2rem auto;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }
.modal-inner { padding: 2.5rem; }
@media (max-width: 640px) { .modal-inner { padding: 1.5rem; } }

.modal-inner h3 { font-family: var(--font-disp); font-size: 2rem; margin: 1rem 0 0.5rem; }
.modal-inner .modal-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }

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

.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-label span { color: var(--gold); }
.form-input, .form-textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: none; }

.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.cat-btn {
  padding: 0.625rem 0.75rem;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-btn.active, .cat-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,0.05); }

.file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px dashed var(--border);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.file-upload:hover { border-color: var(--gold); color: var(--gold); }

.form-disclaimer { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }

.modal-success { text-align: center; padding: 3rem 2rem; }
.modal-success__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--bg);
}
.modal-success h3 { font-family: var(--font-disp); font-size: 2rem; margin-bottom: 0.75rem; }
.modal-success p { color: var(--muted); }

/* ===== BLOG (archive + single) ===== */
.blog-hero {
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin: 1.5rem 0 1rem; }
.blog-hero p { font-size: 1.05rem; color: var(--muted); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4rem 0;
}
@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.post-card:hover { border-color: rgba(200,169,110,0.5); }
.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.75rem; }
.post-card__title { font-family: var(--font-disp); font-size: 1.5rem; margin-bottom: 0.75rem; line-height: 1.2; }
.post-card__title a { transition: color 0.2s; }
.post-card__title a:hover { color: var(--gold); }
.post-card__excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.post-card__link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.post-card__link:hover { gap: 0.7rem; }

.wp-pagenavi, .navigation { text-align: center; padding: 2rem 0 4rem; }
.wp-pagenavi a, .wp-pagenavi span,
.navigation a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0.2rem;
  transition: all 0.2s;
}
.wp-pagenavi a:hover, .navigation a:hover { border-color: var(--gold); color: var(--gold); }
.wp-pagenavi span.current { border-color: var(--gold); color: var(--gold); }

/* Single post */
.single-post { padding: 8rem 0 4rem; }
.single-post__inner { max-width: 780px; margin: 0 auto; }
.single-post__meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.single-post__title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 2rem; }
.single-post__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.single-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-post__content {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.9);
}
.single-post__content h2 { font-size: 2rem; margin: 2.5rem 0 1rem; color: var(--fg); }
.single-post__content h3 { font-size: 1.5rem; margin: 2rem 0 0.75rem; color: var(--fg); }
.single-post__content p { margin-bottom: 1.25rem; }
.single-post__content a { color: var(--gold); text-decoration: underline; }
.single-post__content ul, .single-post__content ol { margin: 1rem 0 1.25rem 1.5rem; }
.single-post__content li { margin-bottom: 0.5rem; }
.single-post__content img { border-radius: 2px; margin: 1.5rem 0; border: 1px solid var(--border); }
.single-post__content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-disp);
  font-size: 1.25rem;
}
.post-back { margin-top: 3rem; }