:root {
  --bg: rgba(15, 15, 15, 0.92);
  --bg-solid: #0f0f0f;
  --panel: #161616;
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.68);
  --accent: #b79a72;
  --accent-soft: rgba(183, 154, 114, 0.22);
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 35px rgba(0,0,0,0.18);
  --blur: blur(10px);
  --transition: 0.45s cubic-bezier(.22,.61,.36,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f4f1eb;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), min-height var(--transition);
  animation: headerReveal 1s ease forwards;
}

.site-header.scrolled {
  background: rgba(12, 12, 12, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: min-height var(--transition);
}

.site-header.scrolled .header-container {
  min-height: 78px;
}

.header-logo {
  justify-self: start;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.15s;
}

.header-logo a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-logo img {
  max-height: 50px;
  width: auto;
  display: block;
  transition: transform var(--transition), opacity var(--transition);
}

.header-logo a:hover img {
  transform: scale(1.02);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text .atelier {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.logo-text .agora {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text);
  font-weight: 500;
}

.main-nav {
  justify-self: center;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.3s;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

.main-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a:hover::before,
.main-nav a.active::before {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.45s;
}

.search-btn,
.menu-toggle,
.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.search-btn:hover,
.menu-toggle:hover,
.mobile-close:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
  border-color: rgba(183,154,114,0.35);
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

.menu-toggle {
  display: none;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1100;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 92%;
  height: 100vh;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  z-index: 1200;
  padding: 26px 26px 40px;
  transition: right 0.55s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
  box-shadow: -16px 0 40px rgba(0,0,0,0.28);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.mobile-brand .atelier {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--muted);
}

.mobile-brand .agora {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--text);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition), transform var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.mobile-info-block {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.mobile-info-block h4 {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.mobile-info-block p,
.mobile-info-block a {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245,241,234,0.8);
}

.mobile-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.mobile-social a:hover {
  color: var(--accent);
  border-color: rgba(183,154,114,0.32);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* HERO */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #111;
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 1s ease, visibility 1s ease, transform 6s ease;
  z-index: 1;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.42) 45%, rgba(10,10,10,0.28) 100%),
    linear-gradient(to top, rgba(10,10,10,0.35), rgba(10,10,10,0.15));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #f5f1ea;
  width: 100%;
}

.hero-slide.active .hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.9s ease forwards;
}

.hero-slide.active .hero-subtitle { animation-delay: 0.2s; }
.hero-slide.active h1 { animation-delay: 0.4s; }
.hero-slide.active p { animation-delay: 0.6s; }
.hero-slide.active .hero-buttons { animation-delay: 0.8s; }

.hero-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 500;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 600;
  color: #f5f1ea;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,241,234,0.82);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 170px;
  height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.hero-btn.primary {
  background: rgba(183,154,114,0.16);
  border-color: rgba(183,154,114,0.4);
  color: #f5f1ea;
}

.hero-btn.primary:hover {
  background: rgba(183,154,114,0.25);
  color: #b79a72;
  transform: translateY(-2px);
}

.hero-btn.secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: #f5f1ea;
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(183,154,114,0.32);
  color: #b79a72;
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(15,15,15,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-arrow:hover {
  background: rgba(183,154,114,0.16);
  border-color: rgba(183,154,114,0.35);
  color: #b79a72;
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-dot.active {
  background: #b79a72;
  border-color: #b79a72;
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-slider {
    height: 88vh;
    min-height: 620px;
  }

  .hero-content h1 {
    max-width: 680px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    min-height: 620px;
    height: 84vh;
  }

  .hero-content {
    padding: 0 18px;
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 100%;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 24px;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: #0f0f0f;
  color: #f5f1ea;
  padding: 70px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(183,154,114,0.08), transparent 35%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
}

.footer-top {
  display: flex;
  justify-content: center;
  padding-bottom: 34px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.footer-logo:hover {
  transform: translateY(-2px);
}

.footer-logo img {
  max-height: 54px;
  width: auto;
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-logo-text .atelier {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,241,234,0.65);
  font-weight: 400;
}

.footer-logo-text .agora {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: #f5f1ea;
  font-weight: 500;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 38px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-column h4 {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 500;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245,241,234,0.78);
  transition: color 0.35s ease, transform 0.35s ease;
}

.footer-column a:hover {
  color: #b79a72;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: #b79a72;
  margin-top: 7px;
  font-size: 13px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-links-grid ul li a {
  position: relative;
  display: inline-block;
}

.footer-links-grid ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: #b79a72;
  transition: width 0.35s ease;
}

.footer-links-grid ul li a:hover::after {
  width: 100%;
}

.newsletter-text {
  margin-bottom: 18px;
  max-width: 420px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  color: #f5f1ea;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.newsletter-form input::placeholder {
  color: rgba(245,241,234,0.42);
}

.newsletter-form input:focus {
  border-color: rgba(183,154,114,0.45);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(183,154,114,0.08);
}

.newsletter-form button {
  height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(183,154,114,0.35);
  background: rgba(183,154,114,0.12);
  color: #f5f1ea;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}

.newsletter-form button:hover {
  background: rgba(183,154,114,0.22);
  color: #b79a72;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(245,241,234,0.55);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5f1ea;
  background: rgba(255,255,255,0.02);
  transition: all 0.4s ease;
}

.footer-social a:hover {
  color: #b79a72;
  border-color: rgba(183,154,114,0.35);
  background: rgba(183,154,114,0.1);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes headerReveal {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .header-container {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .search-label {
    display: none;
  }

  .hero-slider {
    height: 88vh;
    min-height: 620px;
  }

  .hero-content h1 {
    max-width: 680px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .header-container {
    min-height: 78px;
    padding: 0 18px;
  }

  .site-header.scrolled .header-container {
    min-height: 72px;
  }

  .header-logo img {
    max-height: 42px;
  }

  .logo-text .atelier {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .logo-text .agora {
    font-size: 20px;
  }

  .search-btn,
  .menu-toggle {
    width: 41px;
    height: 41px;
  }

  .mobile-menu {
    width: 330px;
  }

  .hero-slider {
    min-height: 620px;
    height: 84vh;
  }

  .hero-content {
    padding: 0 18px;
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 100%;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 24px;
  }

  .site-footer {
    padding: 55px 0 24px;
  }

  .footer-container {
    padding: 0 18px;
  }

  .footer-top {
    justify-content: flex-start;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 30px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo img {
    max-height: 46px;
  }

  .footer-logo-text .atelier {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .footer-logo-text .agora {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
.news-section {
  padding: 110px 0;
  background: #f4f1eb;
}

.news-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
}

.news-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 500;
}

.news-heading h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  color: #111111;
  font-weight: 600;
}

.news-heading p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.68);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 17, 17, 0.06);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border-color: rgba(183, 154, 114, 0.24);
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 28px 26px 30px;
}

.news-meta {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 500;
}

.news-content h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.3;
  color: #111111;
  font-weight: 500;
}

.news-content p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.7);
}

.news-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  transition: color 0.35s ease;
}

.news-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #b79a72;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.news-link:hover {
  color: #b79a72;
}

.news-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .news-section {
    padding: 90px 0;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card:last-child {
    grid-column: 1 / -1;
  }

  .news-image {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 70px 0;
  }

  .news-container {
    padding: 0 18px;
  }

  .news-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-card:last-child {
    grid-column: auto;
  }

  .news-image {
    height: 220px;
  }

  .news-content {
    padding: 22px 18px 24px;
  }

  .news-content h3 {
    font-size: 22px;
  }

  .news-heading p {
    font-size: 14px;
  }
}
/* LANGUAGE SWITCH */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}

.lang {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition), opacity var(--transition);
  position: relative;
}

.lang:hover {
  color: var(--accent);
}

.lang.active {
  color: var(--text);
}

.lang-divider {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.lang::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.lang:hover::after,
.lang.active::after {
  transform: scaleX(1);
}
/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
  max-width: 1440px;
  margin: auto;
  padding: 0 38px;
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LOGO */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .atelier {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
}

.logo-text .agora {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #fff;
}

/* MENU */
.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.main-nav a:hover {
  color: #b79a72;
}

/* RIGHT SIDE */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* LANGUAGE */
.lang-switch {
  display: flex;
  gap: 6px;
}

.lang {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

.lang.active,
.lang:hover {
  color: #b79a72;
}

.lang-divider {
  color: rgba(255,255,255,0.3);
}

/* BUTTONS */
.search-btn,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-btn:hover,
.menu-toggle:hover {
  background: rgba(183,154,114,0.2);
}

/* MOBILE */
.menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 320px;
  height: 100%;
  background: #111;
  padding: 20px;
  transition: 0.4s;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}
.about-section {
  padding: 110px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}

/* CONTENT */
.about-content {
  max-width: 520px;
}

.about-content h2 {
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: #111;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(17,17,17,0.7);
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(183,154,114,0.4);
  color: #111;
  background: rgba(183,154,114,0.1);
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: rgba(183,154,114,0.2);
  color: #b79a72;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 420px;
  }

  .about-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 70px 0;
  }

  .about-container {
    padding: 0 18px;
  }

  .about-image img {
    height: 300px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 14px;
  }
}
.services-section {
  padding: 110px 0;
  background: #f8f5ef;
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
}

.services-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-heading h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  color: #111;
  font-weight: 600;
}

.services-heading p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17,17,17,0.68);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 34px 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(17,17,17,0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border-color: rgba(183,154,114,0.24);
}

.service-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.2;
  color: #111;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(17,17,17,0.7);
}

.service-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  transition: color 0.35s ease;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #b79a72;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-link:hover {
  color: #b79a72;
}

.service-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .services-section {
    padding: 90px 0;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 70px 0;
  }

  .services-container {
    padding: 0 18px;
  }

  .services-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-heading p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}
.projects-section {
  padding: 110px 0;
  background: #ffffff;
}

.projects-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
}

.projects-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.projects-heading h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  color: #111111;
  font-weight: 600;
}

.projects-heading p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.68);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.project-card {
  background: #fff;
}

.project-image {
  display: block;
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.project-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.project-large .project-image img {
  height: 700px;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-content {
  padding-top: 22px;
}

.project-meta {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 500;
}

.project-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #111111;
}

.project-content h3 a {
  color: inherit;
  transition: color 0.35s ease;
}

.project-content h3 a:hover {
  color: #b79a72;
}

.projects-action {
  margin-top: 46px;
  text-align: center;
}

.projects-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(183,154,114,0.4);
  background: rgba(183,154,114,0.08);
  color: #111111;
  transition: all 0.4s ease;
}

.projects-btn:hover {
  background: rgba(183,154,114,0.18);
  color: #b79a72;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .projects-section {
    padding: 90px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-large {
    grid-column: 1 / -1;
  }

  .project-large .project-image img,
  .project-image img {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .projects-section {
    padding: 70px 0;
  }

  .projects-container {
    padding: 0 18px;
  }

  .projects-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .projects-heading p {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-large {
    grid-column: auto;
  }

  .project-large .project-image img,
  .project-image img {
    height: 320px;
  }

  .project-content {
    padding-top: 16px;
  }

  .project-content h3 {
    font-size: 24px;
  }

  .projects-action {
    margin-top: 36px;
    text-align: left;
  }
}
.cta-section {
  padding: 110px 0;
  background: #0f0f0f;
  color: #f5f1ea;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(183,154,114,0.08), transparent 60%);
  pointer-events: none;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 38px;
  position: relative;
}

.cta-content h2 {
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.cta-content p {
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,241,234,0.75);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 180px;
  height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.cta-btn.primary {
  background: rgba(183,154,114,0.18);
  border-color: rgba(183,154,114,0.4);
  color: #f5f1ea;
}

.cta-btn.primary:hover {
  background: rgba(183,154,114,0.3);
  color: #b79a72;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: #f5f1ea;
}

.cta-btn.secondary:hover {
  border-color: rgba(183,154,114,0.35);
  color: #b79a72;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-container {
    padding: 0 18px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
  }
}
/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  padding: 20px;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  margin-bottom: 24px;
}

.preloader-brand .atelier {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
  font-weight: 400;
}

.preloader-brand .agora {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  letter-spacing: 2px;
  color: #f5f1ea;
  font-weight: 500;
}

.preloader-line {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.preloader-line span {
  display: block;
  width: 40%;
  height: 100%;
  background: #b79a72;
  animation: loaderLine 1.4s ease-in-out infinite;
}

@keyframes loaderLine {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(180%);
  }
  100% {
    transform: translateX(300%);
  }
}

@media (max-width: 767px) {
  .preloader-brand .atelier {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .preloader-brand .agora {
    font-size: 28px;
  }

  .preloader-line {
    width: 140px;
  }
}
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
  font-size: 13px;
}

.header-social a:hover {
  color: #b79a72;
  border-color: rgba(183,154,114,0.35);
  background: rgba(183,154,114,0.1);
  transform: translateY(-2px);
}
/* SINGLE POST */
.single-post {
  padding: 120px 0 80px;
  background: #f4f1eb;
}

.single-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 38px;
}

/* IMAGE */
.single-image {
  margin-bottom: 30px;
  overflow: hidden;
}

.single-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* META */
.single-meta {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a72;
  display: flex;
  gap: 10px;
}

/* TITLE */
.single-title {
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: #111;
}

/* CONTENT */
.single-content {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17,17,17,0.75);
}

.single-content p {
  margin-bottom: 20px;
}

/* SHARE */
.single-share {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-share span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}

.single-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: all 0.3s ease;
}

.single-share a:hover {
  background: rgba(183,154,114,0.15);
  color: #b79a72;
  transform: translateY(-2px);
}
/* SINGLE POST */
.single-post {
  padding: 120px 0 90px;
  background: #f4f1eb;
}

.single-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 38px;
}

.single-article {
  max-width: 900px;
  margin: 0 auto;
}

.single-image {
  margin-bottom: 34px;
  overflow: hidden;
}

.single-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-meta {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a72;
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-title {
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  color: #111111;
  font-weight: 600;
}

.single-content {
  font-size: 16px;
  line-height: 1.95;
  color: rgba(17,17,17,0.74);
}

.single-content p,
.single-content ul,
.single-content ol,
.single-content blockquote {
  margin-bottom: 22px;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  margin: 34px 0 16px;
  font-family: "Playfair Display", serif;
  color: #111111;
  line-height: 1.25;
}

.single-content h2 {
  font-size: 34px;
}

.single-content h3 {
  font-size: 28px;
}

.single-content h4 {
  font-size: 22px;
}

.single-content a {
  color: #b79a72;
}

.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 28px 0;
}

.single-content blockquote {
  padding: 22px 24px;
  border-left: 2px solid #b79a72;
  background: rgba(183,154,114,0.08);
  font-style: italic;
}

.single-share {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.single-share span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
}

.single-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  background: rgba(255,255,255,0.55);
  transition: all 0.35s ease;
}

.single-share a:hover {
  background: rgba(183,154,114,0.16);
  color: #b79a72;
  border-color: rgba(183,154,114,0.32);
  transform: translateY(-2px);
}

.single-post-nav {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(17,17,17,0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.single-post-nav-item a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  transition: color 0.35s ease;
}

.single-post-nav-item a:hover {
  color: #b79a72;
}

/* RELATED POSTS */
.related-posts {
  margin-top: 90px;
}

.related-posts-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.related-posts-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: #111111;
  font-weight: 600;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.related-post-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(17,17,17,0.06);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.related-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border-color: rgba(183,154,114,0.24);
}

.related-post-image {
  display: block;
  overflow: hidden;
  height: 260px;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 24px 22px 26px;
}

.related-post-meta {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 500;
}

.related-post-content h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.3;
  color: #111111;
  font-weight: 500;
}

.related-post-content h3 a {
  color: inherit;
  transition: color 0.35s ease;
}

.related-post-content h3 a:hover {
  color: #b79a72;
}

.related-post-content p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(17,17,17,0.7);
}

.related-post-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  transition: color 0.35s ease;
}

.related-post-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #b79a72;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.related-post-link:hover {
  color: #b79a72;
}

.related-post-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-post-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .single-post {
    padding: 100px 0 70px;
  }

  .single-container {
    padding: 0 18px;
  }

  .single-title {
    font-size: 30px;
  }

  .single-content {
    font-size: 15px;
  }

  .single-post-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-posts {
    margin-top: 70px;
  }

  .related-posts-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .related-post-card:last-child {
    grid-column: auto;
  }

  .related-post-image {
    height: 220px;
  }

  .related-post-content {
    padding: 22px 18px 24px;
  }

  .related-post-content h3 {
    font-size: 22px;
  }
}
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.header-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.02);
  transition: all 0.35s ease;
  font-size: 13px;
}

.header-social a:hover {
  color: #b79a72;
  border-color: rgba(183,154,114,0.35);
  background: rgba(183,154,114,0.1);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .header-social {
    display: none;
  }
}
/* ----------------------------------------
   404 Page
---------------------------------------- */
.error-404-page {
  min-height: 70vh;
  padding: 180px 24px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-container {
  width: min(100%, 760px);
  text-align: center;
  padding: 56px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
}

.error-404-kicker {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: #c9a96e;
}

.error-404-container h1 {
  margin-bottom: 18px;
}

.error-404-container p {
  max-width: 580px;
  margin: 0 auto 30px;
}

.error-404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.error-404-search {
  max-width: 520px;
  margin: 0 auto;
}

.error-404-search form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404-search input[type="search"] {
  flex: 1 1 280px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.error-404-search input[type="submit"] {
  padding: 14px 24px;
  border: 1px solid #c9a96e;
  background: #c9a96e;
  color: #111;
  cursor: pointer;
  transition: all 0.25s ease;
}

.error-404-search input[type="submit"]:hover {
  background: transparent;
  color: #c9a96e;
}

@media (max-width: 767px) {
  .error-404-page {
    padding: 150px 18px 90px;
  }

  .error-404-container {
    padding: 40px 22px;
  }
}

/* Project Search Overlay */
.project-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-search-panel {
  width: min(760px, 100%);
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.project-search-overlay.active .project-search-panel {
  transform: translateY(0);
}

.project-search-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #b79a72);
}

.project-search-panel h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.95;
  color: #fff;
}

.project-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.project-search-input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0 18px;
  outline: none;
  font-size: 15px;
}

.project-search-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.project-search-input:focus {
  border-color: var(--accent, #b79a72);
}

.project-search-submit {
  height: 58px;
  border: 0;
  background: var(--accent, #b79a72);
  color: #111;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.project-search-submit:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.project-search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-search-close:hover {
  color: var(--accent, #b79a72);
  border-color: rgba(183,154,114,0.45);
}

.project-search-hint {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

body.project-search-open {
  overflow: hidden;
}

.project-search-results {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 20px 70px;
}

.project-search-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.project-search-results h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.project-search-results-count {
  color: var(--muted, #777);
}

.project-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.project-search-card {
  background: #fff;
  overflow: hidden;
}

.project-search-card a {
  color: inherit;
  text-decoration: none;
}

.project-search-thumb {
  overflow: hidden;
  background: #eee;
  aspect-ratio: 4 / 3;
}

.project-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.project-search-card:hover .project-search-thumb img {
  transform: scale(1.06);
}

.project-search-card-content {
  padding: 16px 0 4px;
}

.project-search-card-content h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.project-search-card-category {
  color: var(--muted, #777);
  font-size: 13px;
}

.project-search-empty {
  padding: 50px 24px;
  background: #f7f7f7;
  text-align: center;
}

@media (max-width: 992px) {
  .project-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .project-search-overlay {
    padding: 16px;
  }

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

  .project-search-submit {
    justify-content: center;
  }

  .project-search-close {
    top: 14px;
    right: 14px;
  }

  .project-search-results {
    padding-top: 105px;
  }

  .project-search-results-header {
    display: block;
  }

  .project-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .project-search-card-content h2 {
    font-size: 14px;
  }

  .project-search-card-category {
    font-size: 12px;
  }
}
