/* =============================================
   OLYMPUSGATE.COM — Main Stylesheet
   Premium Automatic Sliding Gates | Turkey
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --clr-dark:    #0a0e17;
  --clr-navy:    #111827;
  --clr-gold:    #c9a84c;
  --clr-gold-lt: #e8c97a;
  --clr-silver:  #8a9ab5;
  --clr-white:   #ffffff;
  --clr-light:   #f5f6f8;
  --clr-border:  #1e2940;

  --ff-head: 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-card: 0 8px 40px rgba(0,0,0,.35);
  --shadow-btn:  0 4px 20px rgba(201,168,76,.35);

  --transition: all .3s cubic-bezier(.25,.46,.45,.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--clr-white);
  color: var(--clr-navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--clr-gold); }
.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #a07b2e 100%);
  color: var(--clr-white);
  box-shadow: var(--shadow-btn);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--clr-gold-lt) 0%, var(--clr-gold) 100%); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.5); }
.btn-outline {
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(201,168,76,.08); transform: translateY(-2px); }
.btn-white {
  background: var(--clr-white);
  color: var(--clr-navy);
  font-weight: 600;
}
.btn-white:hover { background: var(--clr-light); transform: translateY(-2px); }

/* ===================================================
   NAVIGATION
   =================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(10,14,23,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  height: 64px;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo .logo-text {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: .04em;
}
.nav-logo .logo-text span { color: var(--clr-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-gold);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--clr-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--clr-white);
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--clr-gold); }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--clr-dark);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,14,23,.88) 40%, rgba(10,14,23,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1.5px;
  background: var(--clr-gold);
}
.hero-eyebrow span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--clr-gold); }
.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .5; }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  background: var(--clr-dark);
  padding: 36px 0;
  border-bottom: 1px solid var(--clr-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--clr-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .78rem;
  font-weight: 400;
  color: var(--clr-silver);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ===================================================
   SECTION HEADINGS
   =================================================== */
.section-head {
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--clr-navy);
  margin-bottom: 16px;
}
.section-head h2.light { color: var(--clr-white); }
.section-head p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
  max-width: 560px;
}
.section-head p.light { color: rgba(255,255,255,.7); }
.divider-gold {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--clr-gold);
  margin: 16px 0;
}

/* ===================================================
   FEATURED PRODUCTS (HOME)
   =================================================== */
.featured-section {
  padding: 96px 0;
  background: var(--clr-white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-white);
  border: 1px solid #e8ecf0;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,.3);
}
.product-card-img {
  overflow: hidden;
  height: 240px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body {
  padding: 24px;
}
.product-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(201,168,76,.1);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.product-card-body h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 18px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.price-from { font-size: .78rem; color: #9ca3af; }
.price-value {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-navy);
}
.price-currency { font-size: .9rem; color: #6b7280; }

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-section {
  padding: 96px 0;
  background: var(--clr-dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 36px 28px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.04);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--clr-gold); fill: none; stroke-width: 1.8; }
.feature-card h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: .875rem;
  color: var(--clr-silver);
  line-height: 1.7;
}

/* ===================================================
   ABOUT SPLIT SECTION
   =================================================== */
.about-split {
  padding: 96px 0;
  background: var(--clr-light);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-img-wrap {
  position: relative;
}
.split-img-wrap img {
  border-radius: var(--radius-lg);
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.split-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--clr-gold);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-btn);
}
.split-badge .num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.split-badge .lbl { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.split-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--clr-navy);
  line-height: 1.18;
  margin-bottom: 20px;
}
.split-content p {
  font-size: .95rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 16px;
}
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: #374151;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.2'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

/* ===================================================
   GALLERY / IMAGE GRID
   =================================================== */
.gallery-section {
  padding: 96px 0;
  background: var(--clr-white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.85); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,23,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 36px; height: 36px; stroke: var(--clr-white); fill: none; stroke-width: 1.5; }

/* ===================================================
   PRICING SECTION
   =================================================== */
.pricing-section {
  padding: 96px 0;
  background: var(--clr-light);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e8ecf0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  border: 2px solid var(--clr-gold);
  position: relative;
}
.pricing-popular {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--clr-gold);
  color: var(--clr-white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 10px 10px;
}
.pricing-head {
  padding: 36px 32px 24px;
  border-bottom: 1px solid #f0f2f5;
}
.pricing-head h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 6px;
}
.pricing-head p { font-size: .85rem; color: #6b7280; line-height: 1.6; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0 0;
}
.price-cur { font-size: 1.1rem; color: var(--clr-gold); font-weight: 600; margin-top: 4px; }
.price-amt {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1;
}
.price-note { font-size: .78rem; color: #9ca3af; align-self: flex-end; margin-bottom: 4px; }
.pricing-body {
  padding: 24px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-feats { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.pricing-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: #374151;
}
.pricing-feats li .check { color: var(--clr-gold); font-size: 1rem; }
.pricing-feats li .cross { color: #d1d5db; font-size: 1rem; }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 96px 0;
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/aerial-view.jpg') center/cover no-repeat;
  opacity: .12;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--clr-gold);
}
.cta-phone svg { width: 22px; height: 22px; stroke: var(--clr-gold); fill: none; stroke-width: 1.8; }
.cta-phone a {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: .04em;
}
.cta-phone a:hover { color: var(--clr-gold-lt); }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo-text {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 14px;
}
.footer-brand .logo-text span { color: var(--clr-gold); }
.footer-brand p {
  font-size: .875rem;
  color: var(--clr-silver);
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: var(--clr-silver);
  transition: color .2s;
}
.footer-links a:hover { color: var(--clr-white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--clr-gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .875rem; color: var(--clr-silver); line-height: 1.55; }
.footer-contact-item a { color: var(--clr-silver); transition: color .2s; }
.footer-contact-item a:hover { color: var(--clr-gold); }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(138,154,181,.6); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(138,154,181,.6); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--clr-silver); }

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  padding: 20px 24px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: .85rem; color: var(--clr-silver); line-height: 1.6; flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--clr-gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,23,.95) 45%, rgba(10,14,23,.5));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { font-size: .8rem; color: var(--clr-silver); transition: color .2s; }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb span { font-size: .8rem; color: var(--clr-silver); }
.breadcrumb .sep { color: #3d4a60; font-size: .7rem; }

/* ===================================================
   CATALOG PAGE
   =================================================== */
.catalog-section {
  padding: 80px 0;
  background: var(--clr-white);
}
.catalog-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid #d1d5db;
  font-size: .82rem;
  font-weight: 500;
  color: #6b7280;
  transition: var(--transition);
  background: var(--clr-white);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(201,168,76,.06);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.catalog-item {
  background: var(--clr-white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,.25);
}
.catalog-item-img {
  height: 260px;
  overflow: hidden;
}
.catalog-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.catalog-item:hover .catalog-item-img img { transform: scale(1.07); }
.catalog-item-info {
  padding: 24px;
}
.catalog-item-info h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 8px;
}
.catalog-item-info p {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
}
.catalog-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.spec-tag {
  font-size: .72rem;
  font-weight: 500;
  color: #374151;
  background: var(--clr-light);
  padding: 4px 10px;
  border-radius: 4px;
}
.catalog-item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
}
.item-price-val {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-navy);
}
.item-price-val span { font-size: .8rem; color: #9ca3af; font-family: var(--ff-body); font-weight: 400; }

/* ===================================================
   CONTACTS PAGE
   =================================================== */
.contacts-section {
  padding: 80px 0 100px;
  background: var(--clr-white);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f2f5;
}
.contact-detail:first-of-type { border-top: 1px solid #f0f2f5; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--clr-gold); fill: none; stroke-width: 1.8; }
.contact-detail-body h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 4px;
}
.contact-detail-body p, .contact-detail-body a {
  font-size: .95rem;
  color: var(--clr-navy);
  line-height: 1.6;
}
.contact-detail-body a:hover { color: var(--clr-gold); }

.contact-form-wrap {
  background: var(--clr-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: .9rem;
  color: #6b7280;
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e4ea;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--clr-navy);
  background: var(--clr-white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #065f46;
  font-size: .9rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ===================================================
   LEGAL PAGES (Privacy, Terms, Cookies)
   =================================================== */
.legal-section {
  padding: 80px 0 100px;
  background: var(--clr-white);
}
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin: 36px 0 14px;
}
.legal-content h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.legal-content ul li {
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content .last-updated {
  display: inline-block;
  font-size: .8rem;
  color: #9ca3af;
  margin-bottom: 32px;
  padding: 6px 14px;
  background: var(--clr-light);
  border-radius: 4px;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-values {
  padding: 80px 0;
  background: var(--clr-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: var(--clr-light);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.value-num {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 8px;
}
.value-card p { font-size: .85rem; color: #6b7280; line-height: 1.65; }

.team-section {
  padding: 80px 0;
  background: var(--clr-dark);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:last-child { grid-column: span 2; max-width: 380px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: .95rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); padding: 18px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--clr-border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-badge { right: 0; }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: auto; max-width: none; }
  .contacts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-phone a { font-size: 1.4rem; }
  .section-head h2 { font-size: 1.8rem; }
}
