:root {
  --bg-dark: #0f0f0f;
  --brand-blue: #45677D;
  --panel: #161616;
  --light-bg: #f4f1eb;
  --cream: #f5f1ea;
  --text: #111111;
  --muted-dark: rgba(17, 17, 17, 0.68);
  --muted-light: rgba(245, 241, 234, 0.72);
  --accent: #b79a72;
  --accent-soft: rgba(183, 154, 114, 0.18);
  --border-light: rgba(255, 255, 255, 0.09);
  --border-dark: rgba(17, 17, 17, 0.07);
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  --transition: 0.45s cubic-bezier(.22,.61,.36,1);
}

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

html {
  scroll-behavior: smooth;
}

body {
    background: #F4F2EF   ;
  color: var(--text);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}


body, p, a, li, button, input, textarea {
    font-family: 'Manrope', sans-serif;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  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);
}

.preloader-brand .agora {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--cream);
}

.preloader-line {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  margin: 0 auto;
}

.preloader-line span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: loaderLine 1.4s ease-in-out infinite;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--brand-blue);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.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;
}

.header-logo a,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.logo-text,
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text .atelier,
.footer-logo-text .atelier {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,241,234,0.68);
}

.logo-text .agora,
.footer-logo-text .agora {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--cream);
}

.main-nav {
  justify-self: center;
}

.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(--cream);
  transition: color 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);
  transition: transform var(--transition);
}

.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;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}

.lang {
  position: relative;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color var(--transition);
}

.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,
.lang.active {
  color: var(--cream);
}

.lang:hover::after,
.lang.active::after {
  transform: scaleX(1);
}

.lang-divider {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.search-btn,
.menu-toggle,
.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  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);
}

.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);
}

.menu-toggle {
  display: none;
}

/* MOBILE MENU */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  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);
  color: var(--cream);
  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-light);
}

.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-light);
}

.mobile-brand .agora {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.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(--cream);
  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-light);
}

.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,
.footer-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(--cream);
  background: rgba(255,255,255,0.02);
}

.mobile-social a:hover,
.footer-social a:hover {
  color: var(--accent);
  border-color: rgba(183,154,114,0.35);
  background: rgba(183,154,114,0.1);
  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;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 1s ease, visibility 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.74), rgba(10,10,10,0.36)),
    linear-gradient(to top, rgba(10,10,10,0.35), rgba(10,10,10,0.12));
}

.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;
  color: var(--cream);
}

.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,
.section-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 600;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,241,234,0.84);
}

.hero-buttons,
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn,
.cta-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,
.cta-btn.primary {
  background: #45677D   ;
  border-color: #45677D   ;
  color: var(--cream);
}

.hero-btn.secondary{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
  color: var(--cream);
}
.cta-btn.secondary{
   background: rgba(255,255,255,0.04);
  border-color: #C8a93E;
  color: #C8a93E;
}
.hero-btn:hover,
.cta-btn:hover {
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(183,154,114,0.26);
}

.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.14);
  background: rgba(15,15,15,0.26);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-arrow:hover {
  background: rgba(183,154,114,0.18);
  color: var(--accent);
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  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: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

/* GENERAL SECTIONS */
.about-section,
.projects-section {
  padding: 45px 0;
  background: #F4F2EF;
}

.services-section,
.news-section {
  padding: 45px 0;
  background: #f8f5ef;
}

.about-container,
.services-container,
.projects-container,
.news-container,
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 38px;
}

.services-heading,
.projects-heading,
.news-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-heading h2,
.projects-heading h2,
.news-heading h2,
.about-content h2,
.cta-content h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  color: var(--text);
  font-weight: 600;
}

.services-heading p,
.projects-heading p,
.news-heading p,
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted-dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  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);
}

.about-content {
  max-width: 540px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 15px;
}

.about-btn,
.projects-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(183,154,114,0.4);
  color: var(--text);
  background: rgba(183,154,114,0.1);
  transition: all 0.4s ease;
}

.about-btn:hover,
.projects-btn:hover {
  background: #45677D;
  color: var(--accent);
  transform: translateY(-2px);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card,
.news-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border-dark);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-card {
  padding: 34px 28px;
}

.service-card:hover,
.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);
}

.service-number,
.project-meta,
.news-meta {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.service-card h3,
.project-content h3,
.news-content h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 500;
}

.service-card p,
.news-content p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(17,17,17,0.7);
}

.service-link,
.news-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.35s ease;
}

.service-link::after,
.news-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-link:hover,
.news-link:hover {
  color: var(--accent);
}

.service-link:hover::after,
.news-link:hover::after {
  transform: scaleX(1);
}

/* PROJECTS */
.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,
.news-card:hover .news-image img {
  transform: scale(1.05);
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-content {
  padding-top: 22px;
}

.projects-action {
  margin-top: 46px;
  text-align: center;
}

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

.news-card {
  overflow: hidden;
}

.news-image {
  overflow: hidden;
  height: 280px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.news-content {
  padding: 28px 26px 30px;
}

/* CTA */
.cta-section {
  padding: 45px 0;
  
  color: var(--cream);
  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 {
  color: #45677D;
}

.cta-content p {
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.9;
  color: #000;
}

.cta-buttons {
  justify-content: center;
}

/* FOOTER */
.site-footer {
  position: relative;
  background: var(--brand-blue);
  color: var(--cream);
  padding: 70px 0 26px;
  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;
}

.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 img {
  max-height: 54px;
}

.footer-logo-text .agora {
  font-size: 28px;
}

.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: var(--accent);
  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);
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 7px;
  font-size: 13px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.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: var(--cream);
  outline: none;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(245,241,234,0.42);
}

.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: var(--cream);
  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: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(245,241,234,0.6);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes loaderLine {
  0% { transform: translateX(-120%); }
  50% { transform: translateX(180%); }
  100% { transform: translateX(300%); }
}

@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;
  }

  .hero-slider {
    height: 88vh;
    min-height: 620px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-prev { left: 18px; }
  .hero-next { right: 18px; }

  .about-container,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 420px;
  }

  .services-grid,
  .projects-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-large,
  .news-card:last-child {
    grid-column: 1 / -1;
  }

  .project-large .project-image img,
  .project-image img {
    height: 520px;
  }
}

@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;
  }

  .lang-switch {
    display: none;
  }

  .mobile-menu {
    width: 330px;
  }

  .hero-slider {
    min-height: 620px;
    height: 84vh;
  }

  .hero-content {
    padding: 0 18px;
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-buttons,
  .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn,
  .cta-btn {
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }

  .about-section,
  .services-section,
  .projects-section,
  .news-section,
  .cta-section {
    padding: 35px 0;
  }

  .about-container,
  .services-container,
  .projects-container,
  .news-container,
  .footer-container,
  .cta-container {
    padding: 0 18px;
  }

  .services-heading,
  .projects-heading,
  .news-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .about-image img {
    height: 300px;
  }

  .about-content h2,
  .services-heading h2,
  .projects-heading h2,
  .news-heading h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .services-grid,
  .projects-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .project-large,
  .news-card:last-child {
    grid-column: auto;
  }

  .project-large .project-image img,
  .project-image img {
    height: 320px;
  }

  .news-image {
    height: 220px;
  }

  .news-content {
    padding: 22px 18px 24px;
  }

  .footer-top {
    justify-content: flex-start;
  }

  .footer-main {
    gap: 32px;
  }

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

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

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  
}

.expertise-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.expertise-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.expertise-card:hover img {
  transform: scale(1.08);
}

.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,15,15,0.85) 0%,
    rgba(15,15,15,0.45) 45%,
    rgba(15,15,15,0.05) 100%
  );
}

.expertise-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 35px;
  z-index: 2;
  color: #fff;
}

.expertise-overlay h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 500;
}

.expertise-overlay p {
  margin-bottom: 22px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.expertise-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a72;
  font-weight: 600;
  transition: 0.3s;
}

.expertise-link:hover {
  color: #fff;
}

@media (max-width:1024px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:767px) {

  .expertise-overlay {
    padding: 25px;
  }

  .expertise-overlay h3 {
    font-size: 28px;
  }

  .expertise-overlay p {
    font-size: 14px;
  }
}
.expertise-overlay h3 {
  position: relative;
  display: inline-block;

  margin-bottom: 18px;
  padding-bottom: 14px;

  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 500;
  color: #fff;
}

.expertise-overlay h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 25%;
  height: 2px;

  background: #C8A93E;
}
.expertise-overlay h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 25%;
  height: 3px;

  background: #C8A93E;
  border-radius: 20px;
}
.projects-section {
  padding: 110px 0 80px;
  background: #ffffff;
}

.projects-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

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

.project-card {
  background: #fff;
}

.project-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

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

.project-content {
  padding-top: 26px;
}

.project-category {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C8A93E;
  font-weight: 600;
}

.project-content h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.3;
  color: #111;
  font-weight: 500;
}

.project-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25%;
  height: 3px;
  background: #C8A93E;
  border-radius: 20px;
}

.project-content p {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(17,17,17,0.7);
}

.project-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #45677D;

  transition: all 0.4s ease;
}

.project-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 100%;
  height: 1px;

  background: #45677D;
  transition: all 0.4s ease;
}

.project-link:hover {
  color: #C8A93E;
}

.project-link:hover::after {
  background: #C8A93E;
}

.project-link i {
  transition: transform 0.4s ease;
}

.project-link:hover i {
  transform: translateX(8px);
}

.section-separator {
  width: calc(100% - 120px);
  margin: 90px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 30px;
}

.section-separator span {
  flex: 1;
  height: 1px;
  background: #C8A93E;
}

.section-separator img {
  width: 54px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(42%) sepia(17%) saturate(815%) hue-rotate(160deg);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .projects-container {
    padding: 0 50px;
  }

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

@media (max-width: 767px) {
  .projects-section {
    padding: 70px 0 55px;
  }

  .projects-container {
    padding: 0 20px;
  }

  .project-content h3 {
    font-size: 24px;
  }

  .section-separator {
    margin-top: 60px;
    gap: 16px;
  }

  .section-separator span {
    width: 80px;
  }

  .section-separator img {
    width: 44px;
  }
}


.projects-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 35px;

  margin-bottom: 60px;
}

.projects-filter a {
  position: relative;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #45677D;

  transition: all 0.4s ease;
}

.projects-filter a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -10px;

  width: 0;
  height: 2px;

  background: #C8A93E;

  transition: width 0.4s ease;
}

.projects-filter a:hover,
.projects-filter a.active {
  color: #C8A93E;
}

.projects-filter a:hover::after,
.projects-filter a.active::after {
  width: 100%;
}
@media (max-width: 767px) {

  .projects-filter {
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .projects-filter a {
    font-size: 11px;
  }

}

.section-subtitle {
  position: relative;
  display: inline-block;

  margin-bottom: 25px;

  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C8A93E;
  font-weight: 500;

  padding-bottom: 14px;
}

.section-subtitle::after {
  content: "";
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: 0;

  width: 20%;
  min-width: 40px;

  height: 2px;

  background: #C8A93E;
}

.single-project-hero img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
}

.single-project-section {
  padding: 90px 0;
  background: #F4F2EF;
}

.single-project-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.single-project-heading {
  max-width: 900px;
  margin-bottom: 50px;
}

.single-project-heading h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  color: #111;
}

.single-project-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 80px;
  margin-bottom: 70px;
}

.single-project-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(17,17,17,0.72);
}

.single-project-details{
  background:#fff;
  padding:35px;
  position:sticky;
  top:120px;
}

.single-project-details div {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.single-project-details strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C8A93E;
}

.single-project-details span {
  font-size: 15px;
  color: #111;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-gallery-item {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.06);
}

.project-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.project-lightbox.active {
  display: flex;
}

.project-lightbox img {
  max-width: 88%;
  max-height: 86%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 42px;
}

.lightbox-close {
  top: 25px;
  right: 35px;
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}

@media (max-width: 1024px) {
  .single-project-container {
    padding: 0 50px;
  }

  .single-project-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .single-project-hero img {
    height: 55vh;
  }

  .single-project-section {
    padding: 60px 0;
  }

  .single-project-container {
    padding: 0 20px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
.related-projects {
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px solid rgba(17,17,17,0.08);
}
.project-navigation{
  margin-top:80px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:40px;
  border-top:1px solid rgba(17,17,17,.08);
}

.project-navigation a{
  color:#45677D;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}
.single-project-details{
  position:sticky;
  top:120px;
}
.single-project-hero{
  position:relative;
  height:85vh;
  min-height:700px;
  overflow:hidden;
}

.single-project-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.single-project-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.72),
    rgba(0,0,0,.18)
  );
}

.single-project-hero-content{
  position:absolute;
  left:50%;
  bottom:80px;
  transform:translateX(-50%);
  width:100%;
  max-width:1440px;
  padding:0 80px;
  z-index:5;
}

.single-project-hero-content h1{
  max-width:900px;
  color:#fff;
  font-size:clamp(42px,6vw,78px);
  line-height:1.05;
}

.single-project-hero-content .project-category{
  margin-bottom:18px;
  display:inline-block;
}
.lightbox-counter{
  position:absolute;
  top:30px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  letter-spacing:2px;
  font-size:14px;
}
.search-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.search-modal.active{
    opacity:1;
    visibility:visible;
}

.search-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.85);
}

.search-modal-content{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.search-modal-inner{
    width:min(700px,90%);
    text-align:center;
    z-index:2;
}

.search-modal-inner h2{
    color:#fff;
    margin-bottom:30px;
    font-size:52px;
}

.project-search-form{
    display:flex;
    background:#fff;
}

.project-search-form input[type="search"]{
    flex:1;
    height:70px;
    border:0;
    padding:0 25px;
    font-size:18px;
}

.project-search-form button{
    width:80px;
    border:0;
    background:#45677D;
    color:#fff;
    cursor:pointer;
}

.search-close{
    position:absolute;
    top:40px;
    right:40px;
    width:55px;
    height:55px;
    border:0;
    background:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.contact-page-section {
  padding: 100px 0;
  background: #F4F2EF;
}

.contact-page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.contact-page-info {
  background: #fff;
  padding: 45px;
}

.contact-page-info h2 {
  margin-bottom: 30px;
}

.contact-page-info p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.contact-page-info i {
  color: #C8A93E;
  margin-right: 10px;
}

.contact-page-content {
  background: #fff;
  padding: 45px;
}

@media (max-width: 900px) {
  .contact-page-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}