:root {
  --black: #000;
  --white: #f4f0ec;
  --muted: rgba(244, 240, 236, 0.72);
  --soft: rgba(244, 240, 236, 0.55);
  --brown: #846b55;
  --brown-dark: #4e3828;
  --line: rgba(255, 255, 255, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
}
.brand img { width: 178px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 42px); }
.main-nav a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .18em;
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  transition: .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); }
.phone { font-size: 13px; letter-spacing: .08em; font-style: italic; }
.social-link { font-weight: 700; font-size: 17px; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; letter-spacing: .22em; }

.hero, .page-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.hero-bg, .page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .72; }
.hero-shade, .page-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.9)), rgba(0,0,0,.38);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.script-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4vw, 72px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.74);
  margin-bottom: 26px;
}
.hero h1, .page-hero h1 {
  text-transform: uppercase;
  font-size: clamp(58px, 8vw, 150px);
  font-style: italic;
  font-weight: 300;
  line-height: .95;
  letter-spacing: .14em;
  color: rgba(255,255,255,.56);
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-top: 34px;
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .11em;
  color: rgba(255,255,255,.78);
  transition: .3s ease;
}
.outline-btn:hover { background: #fff; color: #000; transform: translateY(-2px); }

.split-section {
  min-height: 92vh;
  display: grid;
  grid-template-columns: .95fr 1fr;
  align-items: center;
  gap: 7vw;
  padding: 70px 5vw;
  background: #000;
}
.split-image { height: min(700px, 70vh); overflow: hidden; background: #111; }
.split-image img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.split-text { max-width: 760px; text-align: center; justify-self: center; }
.split-text p {
  font-size: clamp(22px, 1.5vw, 30px);
  line-height: 1.45;
  letter-spacing: .07em;
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

.offer-strip {
  position: relative;
  width: calc(100% - 10vw);
  min-height: 300px;
  margin: 90px auto;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 55px 15vw;
}
.offer-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 3.8vw, 70px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.74);
  margin-bottom: 42px;
}
.offer-content p {
  font-size: clamp(18px, 1.35vw, 26px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  color: rgba(255,255,255,.75);
}
.offer-symbol { position: absolute; right: 4vw; top: 50%; transform: translateY(-50%); font-size: 125px; color: #000; }

.marquee-section { overflow: hidden; background: #000; padding: 45px 0 110px; }
.marquee-section.compact { padding: 38px 0 90px; }
.marquee-track { display: flex; width: max-content; gap: 46px; animation: marqueeMove 30s linear infinite; }
.marquee-track span { white-space: nowrap; font-size: clamp(20px, 2.3vw, 46px); font-style: italic; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.78); }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.products-preview, .product-catalog, .product-list-section {
  background: #000;
  padding: 40px 5vw 120px;
  text-align: center;
}
.products-preview h2, .product-catalog h2, .product-list-section h2 {
  text-transform: uppercase;
  font-size: clamp(34px, 3.7vw, 62px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .18em;
  color: rgba(255,255,255,.62);
  margin-bottom: 95px;
}
.catalog-head p { color: var(--muted); margin-top: -70px; margin-bottom: 70px; font-style: italic; letter-spacing: .06em; }
.category-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; }
.category-grid.large { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); max-width: 900px; margin: 0 auto; }
.category-card { width: 165px; transition: .28s ease; }
.category-card img { width: 165px; height: 165px; object-fit: cover; background: #111; margin-bottom: 18px; }
.category-card h3 { font-size: 24px; font-style: italic; letter-spacing: .12em; color: rgba(255,255,255,.76); }
.category-card:hover { transform: translateY(-9px); }
.product-btn { margin-top: 85px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; max-width: 1280px; margin: 0 auto; }
.product-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); overflow: hidden; text-align: left; }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card-body { padding: 22px; }
.product-card h3 { font-size: 20px; font-style: italic; color: #fff; margin-bottom: 12px; }
.product-card p { color: var(--muted); margin: 6px 0; }
.product-card .outline-btn { margin-top: 18px; min-width: auto; width: 100%; font-size: 11px; }

.blog-preview {
  min-height: 860px;
  background: #a78c76;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 90px 7vw;
  gap: 70px;
}
.blog-left h2 { text-align: center; font-size: clamp(34px, 3vw, 56px); line-height: 1.55; font-style: italic; letter-spacing: .12em; color: rgba(255,255,255,.82); }
.blog-feature { text-align: center; }
.pill-image { width: min(470px, 100%); height: 175px; overflow: hidden; border-radius: 999px; margin: 0 auto 42px; }
.pill-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature h3 { font-size: clamp(24px, 1.8vw, 33px); line-height: 1.55; font-style: italic; letter-spacing: .1em; color: rgba(255,255,255,.83); margin-bottom: 42px; }
.blog-feature p { font-size: 18px; font-style: italic; color: rgba(40,40,40,.75); line-height: 1.5; max-width: 560px; margin: 0 auto 40px; }
.light-btn { min-width: 300px; }

.testimonials-section {
  min-height: 900px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 7vw;
  padding: 90px 9vw;
  background: #000;
}
.testimonials-list { display: flex; flex-direction: column; gap: 105px; }
.testimonial-card { position: relative; width: 390px; max-width: 100%; background: #b2a79e; padding: 70px 26px 32px; text-align: center; }
.testimonial-card img { position: absolute; top: -58px; left: 50%; transform: translateX(-50%); width: 116px; height: 116px; border-radius: 50%; object-fit: cover; }
.stars { font-size: 34px; color: #ffc45c; letter-spacing: .08em; margin-bottom: 18px; }
.testimonial-card p { color: #fff; font-size: 15px; line-height: 1.35; font-weight: 700; }
.testimonial-card h4 { margin-top: 20px; font-family: Georgia, serif; font-style: italic; }
.testimonials-title { text-align: center; }
.testimonials-title h2 { text-transform: uppercase; font-size: clamp(34px, 3.4vw, 58px); line-height: 1.45; font-style: italic; font-weight: 400; letter-spacing: .08em; color: rgba(255,255,255,.74); }
.question-marks { margin-top: 20px; font-size: clamp(58px, 5vw, 98px); letter-spacing: .12em; color: #c9e2e0; transform: rotate(-10deg); }


.page-hero h1 { position: relative; z-index: 2; }
.bottom-caption { position: absolute; left: 13vw; bottom: 32px; z-index: 2; text-transform: uppercase; font-size: clamp(26px, 2.4vw, 40px); letter-spacing: .08em; font-style: italic; color: rgba(255,255,255,.72); }
.product-hero h1, .contact-hero h1, .gallery-hero h1, .blog-hero h1 { color: rgba(92,66,47,.86); }

.vision-section { min-height: 780px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 6vw; align-items: center; padding: 80px 5vw; }
.vision-copy { text-align: center; }
.vision-copy h2 { text-transform: uppercase; font-size: clamp(30px,2.4vw,44px); font-style: italic; color: rgba(255,255,255,.72); margin-bottom: 90px; }
.vision-copy p { font-size: 23px; line-height: 1.5; font-style: italic; font-weight: 700; color: var(--muted); }
.vision-image img { width: 100%; max-height: 560px; object-fit: cover; opacity: .82; }
.why-choose { min-height: 560px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 6vw; padding: 80px 8vw; }
.circle-text { width: 330px; height: 330px; border-radius: 50%; display: grid; place-items: center; font-size: 50px; letter-spacing: .12em; color: #d8edf0; transform: rotate(-24deg); }
.why-choose p { text-align: center; font-size: 25px; line-height: 1.4; font-weight: 700; font-style: italic; color: var(--muted); }

.gallery-hero { min-height: 82vh; display: flex; align-items: center; padding: 80px 6vw 20px; position: relative; background: #000; }
.gallery-hero img { width: min(650px, 42vw); opacity: .88; }
.gallery-hero h1 { position: absolute; left: 34vw; top: 42%; transform: translateY(-50%); text-transform: uppercase; font-size: clamp(70px, 8vw, 150px); font-style: italic; font-weight: 300; letter-spacing: .12em; color: rgba(92,66,47,.85); }
.gallery-grid-section { padding: 80px 5vw 140px; }
.gallery-grid { max-width: 930px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px 52px; }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #111; }

.blog-hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; gap: 8vw; padding-top: 80px; }
.blog-hero h1 { text-transform: uppercase; font-size: clamp(72px, 8vw, 150px); font-style: italic; font-weight: 300; letter-spacing: .12em; }
.blog-hero img { width: min(220px, 24vw); }
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7vw; padding: 60px 9vw 120px; }
.blog-card { text-align: center; }
.blog-card h2 { font-size: clamp(22px,1.6vw,30px); line-height: 1.5; font-style: italic; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 36px 0; }
.blog-card p { font-size: 16px; line-height: 1.5; font-style: italic; color: var(--muted); }
.blog-card .outline-btn { min-width: 230px; }
.blog-text-section { min-height: 620px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 6vw; padding: 90px 7vw; }
.blog-text-section h2 { font-size: clamp(40px,4vw,72px); line-height: 1.35; text-transform: uppercase; font-style: italic; font-weight: 300; color: rgba(92,66,47,.9); }
.blog-text-section p { text-align: center; color: var(--muted); font-size: 16px; font-style: italic; font-weight: 700; line-height: 1.65; }

.contact-section { min-height: 760px; padding: 110px 9vw; }
.contact-section h2 { text-align: center; text-transform: uppercase; font-size: clamp(34px,3.5vw,58px); font-style: italic; font-weight: 300; letter-spacing: .12em; color: rgba(255,255,255,.7); margin-bottom: 95px; }
.contact-section h2 span { color: rgba(92,66,47,.95); }
.contact-layout { display: grid; grid-template-columns: .8fr 1fr; gap: 8vw; align-items: center; }
.contact-info { display: flex; flex-direction: column; gap: 38px; font-style: italic; }
.contact-info a, .contact-info p { font-size: clamp(24px,2vw,36px); color: rgba(255,255,255,.78); letter-spacing: .08em; }
.contact-info span { display: inline-block; width: 70px; color: var(--brown); }
.contact-info svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  vertical-align: -4px;
}
.contact-form { position: relative; border: 5px solid #fff; padding: 90px 60px 42px; min-height: 430px; display: grid; gap: 16px; }
.form-label { position: absolute; inset: 43% auto auto 50%; transform: translate(-50%,-50%); font-size: clamp(34px,3vw,60px); font-style: italic; color: rgba(255,255,255,.72); pointer-events: none; white-space: nowrap; }
.contact-form input, .contact-form textarea { background: transparent; border: 1px solid rgba(255,255,255,.35); padding: 13px 16px; color: #fff; outline: 0; font-style: italic; }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form:focus-within .form-label { opacity: .15; }
.showroom-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; align-items: start; padding: 80px 8vw 130px; }
.showroom-maps h2 { font-size: clamp(36px,3vw,58px); text-transform: uppercase; font-style: italic; font-weight: 300; letter-spacing: .1em; color: rgba(92,66,47,.95); margin-bottom: 70px; }
.showroom-maps article { margin-bottom: 65px; }
.showroom-map-card { max-width: 430px; }
.showroom-maps img { width: 430px; max-width: 100%; height: 185px; object-fit: cover; margin-bottom: 34px; }
.showroom-maps iframe {
  width: 430px;
  max-width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  margin-bottom: 28px;
  filter: grayscale(.18) contrast(.96) brightness(.92);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.showroom-location-list { display: grid; gap: 18px; }
.showroom-map-visual {
  position: relative;
  width: 430px;
  max-width: 100%;
  height: 300px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(92,66,47,.18);
  border-radius: 8px;
  background: #e8e1d7;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.showroom-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  filter: saturate(.82) contrast(.96) brightness(1.02);
  box-shadow: none;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #15110d;
  font-style: normal;
}
.map-pin strong {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d4a96f;
  color: #15110d;
  font-size: 16px;
  border: 3px solid rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(92,66,47,.28);
}
.map-pin strong {
  line-height: 1;
}
.map-pin em {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: rgba(92,66,47,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(92,66,47,.14);
}
.map-pin-tirana { left: 54%; top: 21%; }
.map-pin-fier { left: 39%; top: 74%; }
.showroom-location-list a {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid rgba(183,154,125,.18);
  border-radius: 8px;
  background: rgba(244,240,236,.035);
}
.showroom-location-list span {
  display: block;
  color: rgba(183,154,125,.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.showroom-maps h3 { font-size: clamp(18px,1.55vw,24px); font-style: normal; font-weight: 650; letter-spacing: .02em; color: rgba(244,240,236,.82); }
.showroom-image img { width: 100%; min-height: 760px; object-fit: cover; opacity: .85; }

.footer { background: var(--brown); padding: 70px 8vw 80px; color: rgba(255,255,255,.82); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1.3fr 1fr 1.2fr; gap: 45px; }
.footer-logo img { width: 180px; }
.footer-menu { display: flex; flex-direction: column; gap: 20px; }
.footer-menu a, .footer-contact a { font-size: 18px; font-style: italic; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-socials { display: flex; gap: 18px; font-size: 28px; margin-top: 24px; }
.copyright { margin-top: 80px; text-align: center; font-size: 18px; font-weight: 700; font-style: italic; letter-spacing: .12em; }
.small-footer { padding-top: 40px; }

.reveal { opacity: 0; transform: translateY(24px); filter: blur(4px); transition: 1.1s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (max-width: 1200px) {
  .header-actions { display: none; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .brand img { width: 135px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; background: rgba(0,0,0,.94); padding: 18px 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 16px 28px; text-align: center; }
  .split-section, .blog-preview, .testimonials-section, .vision-section, .why-choose, .contact-layout, .showroom-section, .blog-text-section { grid-template-columns: 1fr; }
  .split-image { height: 460px; }
  .offer-strip { width: calc(100% - 40px); padding: 50px 28px; }
  .offer-symbol { opacity: .2; }
  .category-grid.large, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 42px; }
}
@media (max-width: 560px) {
  .hero h1, .page-hero h1 { letter-spacing: .08em; }
  .category-grid.large, .gallery-grid, .product-grid { grid-template-columns: 1fr; }
  .category-card { width: 135px; }
  .category-card img { width: 135px; height: 135px; }
  .contact-form { padding: 70px 22px 30px; }
  .footer { padding: 58px 28px 54px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-logo { margin: 0 auto; width: 210px; }
  .footer-contact { text-align: center; }
  .footer-socials { justify-content: center; }
  .copyright { margin-top: 52px; font-size: 13px; line-height: 1.8; }
}


.loading-message,
.error-message {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1.5px;
  text-align: center;
  width: 100%;
}

.error-message {
  color: #d7b5a2;
}

.product-card button.outline-btn {
  background: transparent;
  cursor: pointer;
}

.product-card button.outline-btn:disabled,
.order-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.order-modal.is-open {
  display: flex;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.order-modal-box {
  position: relative;
  width: min(620px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 42px;
  color: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.order-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 36px;
  cursor: pointer;
}

.order-modal-box h2 {
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.order-product-name {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-style: italic;
}

.order-form {
  display: grid;
  gap: 18px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.75);
}

.form-status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 620px) {
  .order-modal-box {
    padding: 34px 22px;
  }

  .order-modal-box h2 {
    font-size: 24px;
  }
}


.site-header { height: 74px; padding: 0 5.2vw; background: rgba(0,0,0,.46); }
.brand img { width: 158px; }
.hero-content { max-width: 980px; }
.script-title { font-size: clamp(28px, 2.8vw, 52px); margin-bottom: 12px; }
.hero h1, .page-hero h1 {
  font-size: clamp(44px, 5.4vw, 96px);
  letter-spacing: .08em;
  line-height: 1.02;
  max-width: 1100px;
  margin: 0 auto;
  text-shadow: 0 8px 35px rgba(0,0,0,.35);
}
.home-hero .hero-shade { background: linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.74)), rgba(0,0,0,.18); }
.home-hero .hero-bg { opacity: .84; }
.home-hero .outline-btn { margin-top: 24px; }

.lang-switch { display: inline-flex; align-items: center; gap: 5px; padding: 4px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.05); }
.lang-switch button { cursor: pointer; border: 0; border-radius: 999px; background: transparent; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 6px 8px; transition: .25s ease; }
.lang-switch button:hover, .lang-switch button.is-active { background: rgba(255,255,255,.92); color: #000; }
.header-actions { gap: 10px; }

.product-image-wrap { position: relative; overflow: hidden; }
.stock-badge { position: absolute; top: 14px; left: 14px; z-index: 2; border-radius: 999px; padding: 8px 12px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.stock-badge.in-stock { background: rgba(235,255,244,.92); color: #0b5031; }
.stock-badge.out-of-stock { background: rgba(255,238,238,.94); color: #8d1d1d; }
.product-card.is-out-of-stock img { filter: grayscale(.45); opacity: .62; }
.product-card.is-out-of-stock { border-color: rgba(255,120,120,.22); }
.out-stock-note { margin-top: 12px !important; color: rgba(255,210,210,.85) !important; font-size: 13px; line-height: 1.35; }
.product-description { font-size: 13px; line-height: 1.45; margin-top: 12px !important; color: rgba(244,240,236,.62) !important; }
.error-message, .loading-message { width: 100%; text-align: center; color: var(--muted); font-style: italic; }

.footer {
  background: #80664f;
  padding: 58px 7vw 38px;
  color: rgba(255,255,255,.86);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1fr .8fr;
  gap: 42px;
  align-items: start;
  max-width: 1380px;
  margin: 0 auto;
}
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { width: 170px; height: auto; object-fit: contain; }
.footer-brand-block p { max-width: 340px; color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.55; font-style: italic; }
.footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .22em; color: rgba(255,255,255,.52); margin-bottom: 18px; font-style: normal; }
.footer-menu { display: flex; flex-direction: column; gap: 12px; }
.footer-menu a, .footer-contact a, .footer-contact p {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: none;
  line-height: 1.45;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-socials { display: flex; gap: 12px; font-size: 22px; margin: 0 0 22px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.footer-lang { margin-top: 8px; }
.copyright { max-width: 1380px; margin: 42px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); text-align: center; font-size: 12px; letter-spacing: .16em; color: rgba(255,255,255,.58); }

@media (max-width: 1180px) {
  .header-actions .phone, .header-actions .social-link { display: none; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; letter-spacing: .12em; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .brand img { width: 135px; }
  .main-nav { display: none; position: fixed; inset: 74px 18px auto 18px; padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(0,0,0,.92); flex-direction: column; align-items: flex-start; z-index: 200; }
  .main-nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .header-actions { margin-left: auto; margin-right: 14px; }
  .header-actions .lang-switch { display: inline-flex; }
  .hero h1, .page-hero h1 { font-size: clamp(38px, 10vw, 68px); letter-spacing: .06em; }
  .script-title { font-size: clamp(26px, 8vw, 38px); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 620px) {
  .header-actions { display: none; }
  .hero-content { padding-inline: 18px; }
  .home-hero .outline-btn { margin-top: 20px; }
  .category-grid.large { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 34px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand-block p { margin: 0 auto; }
  .footer-socials, .footer-lang { justify-content: center; }
  .copyright { font-size: 10px; line-height: 1.6; }
}


:root {
  --glass: rgba(255,255,255,.065);
  --glass-strong: rgba(255,255,255,.115);
  --gold-soft: #b79a7d;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .045;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.8) 0 1px, transparent 1px),
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 30%, rgba(255,255,255,.045) 60%, transparent);
  background-size: 22px 22px, 100% 100%;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(183,154,125,.11), transparent 62%);
  opacity: .75;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, #f4f0ec, var(--gold-soft), #f4f0ec);
  box-shadow: 0 0 18px rgba(183,154,125,.55);
}

.site-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(0,0,0,.76);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 7px 0;
}
.brand img {
  width: 218px !important;
  max-height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.32));
  opacity: .96;
}
.site-header.is-scrolled .brand img { width: 188px !important; max-height: 46px; }

.main-nav a, .footer-menu a, .footer-contact a {
  position: relative;
}
.main-nav a::after, .footer-menu a::after, .footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .28s ease;
}
.main-nav a:hover::after, .main-nav a.active::after,
.footer-menu a:hover::after, .footer-contact a:hover::after { width: 100%; }

.hero, .page-hero { isolation: isolate; }
.hero-bg, .page-hero-bg {
  transform: scale(1.04);
  animation: slowKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes slowKenBurns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.11) translate3d(-1.5%, -1%, 0); }
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 54%, rgba(183,154,125,.16), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.72), transparent 38%, rgba(0,0,0,.72));
  z-index: 1;
}
.hero-content, .page-hero h1, .bottom-caption { z-index: 3; }
.hero-content {
  padding: 28px 42px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,0,0,.18), rgba(255,255,255,.025));
  backdrop-filter: blur(2px);
}
.hero h1, .page-hero h1 {
  color: rgba(255,255,255,.68);
  text-shadow: 0 12px 42px rgba(0,0,0,.55);
}
.script-title { color: rgba(244,240,236,.82); }

.outline-btn {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 12px 36px rgba(0,0,0,.22);
}
.outline-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: transform .55s ease;
}
.outline-btn:hover::before { transform: translateX(105%); }

.split-image, .vision-image, .showroom-image, .pill-image, .gallery-item, .product-card, .testimonial-card {
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.split-image, .vision-image, .showroom-image, .gallery-item, .product-card, .testimonial-card, .blog-card {
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease, background .38s ease;
}
.split-image img, .vision-image img, .showroom-image img, .gallery-item img, .product-card img, .pill-image img {
  transition: transform .8s ease, opacity .4s ease, filter .4s ease;
}
.split-image:hover img, .vision-image:hover img, .showroom-image:hover img, .gallery-item:hover img, .product-card:hover img, .pill-image:hover img {
  transform: scale(1.055);
}

.offer-strip {
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 30px 80px rgba(0,0,0,.32);
}
.offer-symbol { animation: starPulse 5s ease-in-out infinite; }
@keyframes starPulse { 0%,100%{ transform: translateY(-50%) rotate(0deg) scale(1); opacity: .82; } 50%{ transform: translateY(-50%) rotate(18deg) scale(1.08); opacity: .45; } }

.marquee-track { animation-duration: 22s; }
.marquee-track:hover { animation-play-state: paused; }

.category-card img {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.category-card:hover img {
  border-color: rgba(183,154,125,.55);
  box-shadow: 0 26px 70px rgba(183,154,125,.16);
}

.product-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.026));
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(183,154,125,.46);
  box-shadow: 0 32px 90px rgba(0,0,0,.44), 0 0 0 1px rgba(183,154,125,.10);
}
.product-card-body { position: relative; z-index: 2; }
.product-card h3 { color: rgba(255,255,255,.94); }
.stock-badge { box-shadow: 0 10px 28px rgba(0,0,0,.24); }

.blog-card {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  padding: 24px 22px 30px;
  background: rgba(255,255,255,.02);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183,154,125,.35);
  background: rgba(255,255,255,.045);
}

.contact-form, .order-modal-box {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  backdrop-filter: blur(12px);
}
.contact-form input, .contact-form textarea, .order-form input, .order-form textarea {
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.footer {
  background:
    radial-gradient(circle at 10% 30%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(135deg, #715840, #8a6f58 58%, #6b523d);
}
.footer-logo img {
  width: 240px !important;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255,255,255,.28));
}
.footer-socials a:hover { background: rgba(255,255,255,.9); color: #000; transform: translateY(-3px); }

.reveal { transform: translateY(38px) scale(.985); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1), filter .9s ease; }
.reveal.is-visible { transform: translateY(0) scale(1); }

@media (max-width: 900px) {
  .brand { min-width: 150px; }
  .brand img { width: 178px !important; max-height: 48px; }
  .hero-content { padding: 20px 22px; border-radius: 20px; }
  .footer-logo img { width: 210px !important; margin-inline: auto; }
}
@media (max-width: 620px) {
  body::after { display: none; }
  .brand { min-width: 132px; }
  .brand img { width: 150px !important; }
  .hero-content { background: rgba(0,0,0,.18); }
}


.products-to-shop {
  padding: 0 6vw 120px;
  background: #000;
}
.catalog-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  min-height: clamp(220px, 28vw, 310px);
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.48) 54%, rgba(0,0,0,.02)),
    url("../images/elite_person_blue_uniform_fixed_logo.webp") right bottom / auto 92% no-repeat,
    #000;
  border-radius: 28px;
  padding: 36px;
  text-align: left;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.catalog-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    radial-gradient(circle at center, rgba(255,255,255,.28) 0 1px, transparent 1.5px);
  background-size: 24px 24px;
}
.catalog-cta-card > * {
  position: relative;
  z-index: 1;
}
.catalog-cta-card p {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  width: 42%;
  color: rgba(255,255,255,.9);
  font-style: italic;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0,0,0,.55);
}
.catalog-cta-card .outline-btn {
  position: absolute;
  right: 28px;
  top: 28px;
  justify-self: auto;
  margin: 0;
  border-color: rgba(212,169,111,.95);
  background: linear-gradient(135deg, #f3d28f, #c99745);
  color: #14100a;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.34), 0 0 22px rgba(212,169,111,.22);
  transform: none;
}
@media (max-width: 760px) {
  .catalog-cta-card {
    min-height: 260px;
    background-size: auto 100%, auto 86%, auto;
    background-position: center bottom, right bottom, center;
    text-align: left;
  }
}
.shop-hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.shop-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 30px;
}
.shop-hero-content h1 {
  text-transform: uppercase;
  font-size: clamp(58px, 11vw, 150px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: .13em;
  color: rgba(132,107,85,.86);
}
.shop-hero-content p {
  max-width: 760px;
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic;
  line-height: 1.5;
}
.shop-shell {
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  gap: 34px;
  padding: 90px 6vw 130px;
  background:
    radial-gradient(circle at 20% 10%, rgba(132,107,85,.16), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(201,226,224,.08), transparent 24%),
    #000;
}
.shop-filters {
  position: sticky;
  top: 105px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.filter-block {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.filter-block label {
  color: rgba(255,255,255,.74);
  font-style: italic;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}
.shop-filters input,
.shop-filters select,
.shop-tools select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.42);
  color: rgba(255,255,255,.86);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  font: inherit;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.shop-filters input:focus,
.shop-filters select:focus,
.shop-tools select:focus {
  border-color: rgba(255,255,255,.42);
  background: rgba(0,0,0,.72);
  box-shadow: 0 0 0 4px rgba(255,255,255,.05);
}
.price-range-card {
  display: grid;
  gap: 14px;
}
.price-range {
  height: 28px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  accent-color: #b79a7d;
  cursor: pointer;
}

.price-range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.price-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border: 2px solid #f4f0ec;
  border-radius: 50%;
  background: #b79a7d;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  -webkit-appearance: none;
  appearance: none;
}

.price-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.price-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 2px solid #f4f0ec;
  border-radius: 50%;
  background: #b79a7d;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.price-range-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}
.price-range-label strong {
  color: rgba(255,250,242,.94);
  font-size: 16px;
  font-style: normal;
}
.price-quick-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.price-chip {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 9px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: .25s ease;
}
.price-chip:hover,
.price-chip.is-active {
  background: rgba(255,255,255,.88);
  color: #000;
  transform: translateY(-2px);
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-chip {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  cursor: pointer;
  transition: .25s ease;
}
.category-chip:hover,
.category-chip.is-active {
  background: rgba(255,255,255,.88);
  color: #000;
  transform: translateY(-2px);
}
.clear-filters {
  width: 100%;
  margin-top: 4px;
}
.request-list-panel {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 16px;
  background: rgba(0,0,0,.28);
}
.request-list-empty {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-style: italic;
}
.request-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.request-list-head strong {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244,240,236,.94);
  color: #111;
}
.request-list-mini {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}
.request-mini-row {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
.request-mini-main {
  display: grid;
  gap: 4px;
}
.request-mini-main span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
}
.request-mini-main small {
  color: rgba(255,255,255,.56);
  font-size: 11px;
}
.request-qty-controls {
  display: grid;
  grid-template-columns: 30px minmax(58px, 1fr) 30px 30px;
  gap: 6px;
}
.request-qty-controls button,
.request-qty-controls input {
  height: 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.88);
  text-align: center;
}
.request-qty-controls button {
  cursor: pointer;
  font-weight: 900;
}
.request-remove-btn {
  color: rgba(255,210,210,.92) !important;
}
.request-totals {
  display: grid;
  gap: 7px;
  margin: 12px 0 14px;
  padding: 11px 12px;
  border: 1px solid rgba(183,154,125,.26);
  border-radius: 14px;
  background: rgba(183,154,125,.08);
}
.request-totals p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.request-totals strong {
  color: rgba(244,224,194,.96);
}
.order-totals {
  margin-bottom: 0;
}
.request-list-mini p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.request-list-mini span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.request-list-send {
  width: 100%;
}
.order-items {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.order-item-row {
  display: grid;
  grid-template-columns: 1fr 110px 34px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255,255,255,.035);
}
.order-item-row strong,
.order-item-row span {
  display: block;
}
.order-item-row strong {
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.order-item-row span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.order-item-row label {
  gap: 5px;
  margin: 0;
}
.order-item-row input {
  padding: 9px 10px;
}
.order-item-row button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  cursor: pointer;
}
.shop-results-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(132,107,85,.88);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.shop-results-head h2 {
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.72);
}
.shop-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.modern-shop-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}
.product-category-name {
  color: rgba(132,107,85,.95) !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px !important;
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
}
.product-card {
  border-radius: 24px;
}
.product-card-body {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.product-card .outline-btn {
  margin-top: auto;
}
.category-card {
  text-align: center;
  display: block;
}
.category-card::after {
  content: "Shop →";
  display: block;
  margin-top: 10px;
  color: rgba(132,107,85,.92);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: .25s ease;
}
.category-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1150px) {
  .shop-shell { grid-template-columns: 1fr; }
  .shop-filters {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }
  .modern-shop-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 680px) {
  .shop-shell { padding: 60px 22px 90px; }
  .modern-shop-grid { grid-template-columns: 1fr; }
  .shop-results-head { align-items: stretch; flex-direction: column; }
  .shop-tools { align-items: stretch; flex-direction: column; }
  .price-quick-options { grid-template-columns: 1fr; }
  .order-item-row { grid-template-columns: 1fr; }
  .shop-hero-content h1 { letter-spacing: .08em; }
}


.site-header {
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) auto;
  gap: clamp(18px, 2.4vw, 42px);
  height: 82px;
  padding: 0 clamp(24px, 4.8vw, 76px);
  background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.46));
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(7,7,7,.86);
}

.brand {
  min-width: 168px;
  justify-content: flex-start;
}

.brand img {
  width: 188px !important;
  max-height: 58px;
}

.site-header.is-scrolled .brand img {
  width: 164px !important;
}

.main-nav {
  justify-content: center;
  gap: clamp(10px, 1vw, 16px);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: .12em;
  white-space: nowrap;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(244,240,236,.95);
  color: #111;
}

.header-actions {
  justify-content: flex-end;
  gap: 9px;
}

.phone {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.88);
  font-style: normal;
  font-weight: 700;
}

.social-link,
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.social-link svg,
.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-link:hover,
.footer-socials a:hover {
  border-color: rgba(244,240,236,.82);
  background: rgba(244,240,236,.96);
  color: #111;
  transform: translateY(-2px);
}

.social-link-instagram:hover {
  background: linear-gradient(135deg, #feda75, #d62976 48%, #4f5bd5);
  color: #fff;
}

.social-link-facebook:hover {
  background: #1877f2;
  color: #fff;
}

.social-link-whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.outline-btn,
.order-form button.outline-btn,
.product-card button.outline-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244,240,236,.95), rgba(183,154,125,.92));
  color: #111;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .13em;
  box-shadow: 0 16px 38px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.45);
}

.outline-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(0,0,0,.4);
}

.light-btn {
  background: rgba(0,0,0,.84);
  color: #fff;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .header-actions {
    display: flex;
  }

  .header-actions .social-link {
    display: inline-grid;
  }

  .main-nav {
    padding: 6px;
    gap: 6px;
  }

  .main-nav a {
    padding: 9px 10px;
    font-size: 10px;
  }

  .header-actions .phone {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    height: 74px;
    padding: 0 20px;
  }

  .header-actions {
    display: flex;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 152px !important;
  }

  .main-nav {
    inset: 86px 18px auto 18px;
    align-items: stretch;
    border-radius: 22px;
    padding: 14px;
    background: rgba(8,8,8,.96);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    text-align: left;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 16px;
  }

  .brand img {
    width: 138px !important;
  }

  .outline-btn {
    min-width: 0;
    width: min(100%, 280px);
    padding: 13px 22px;
    font-size: 12px;
  }
}


.footer {
  background: linear-gradient(135deg, rgba(244,240,236,.98), rgba(183,154,125,.94));
  padding: 34px 7vw 24px;
  color: #16120f;
}

.footer-inner {
  gap: 26px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  width: 150px !important;
  max-height: 46px;
  filter: none;
}

.footer-brand-block p {
  color: rgba(22,18,15,.72);
  font-size: 13px;
  line-height: 1.45;
}

.footer h3 {
  color: rgba(22,18,15,.62);
  margin-bottom: 10px;
  font-size: 11px;
}

.footer-menu {
  gap: 8px;
}

.footer-menu a,
.footer-contact a,
.footer-contact p {
  color: rgba(22,18,15,.82);
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact {
  gap: 7px;
}

.footer-socials {
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-color: rgba(22,18,15,.28);
}

.footer-socials a:hover {
  background: #16120f;
  color: #f4f0ec;
}

.footer-lang {
  margin-top: 4px;
}

.footer .lang-switch button {
  color: rgba(22,18,15,.68);
}

.footer .lang-switch button:hover,
.footer .lang-switch button.is-active {
  background: rgba(22,18,15,.9);
  color: #f4f0ec;
}

.copyright {
  margin-top: 22px;
  padding-top: 14px;
  border-top-color: rgba(22,18,15,.16);
  color: rgba(22,18,15,.6);
}

.offer-strip {
  background: linear-gradient(135deg, rgba(244,240,236,.98), rgba(183,154,125,.94));
  border-color: rgba(22,18,15,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 24px 58px rgba(0,0,0,.28);
}

.offer-content h2 {
  color: rgba(22,18,15,.72);
}

.offer-content p {
  color: rgba(22,18,15,.78);
}

.offer-symbol {
  color: rgba(22,18,15,.38);
}

.blog-preview {
  min-height: 520px;
  background: linear-gradient(135deg, rgba(244,240,236,.98), rgba(183,154,125,.94));
  padding: 48px 8vw;
  gap: 40px;
}

.blog-left h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.25vw, 42px);
  line-height: 1.24;
  font-weight: 300;
  letter-spacing: .045em;
  color: rgba(22,18,15,.72);
}

.pill-image {
  width: min(370px, 100%);
  height: 124px;
  margin-bottom: 24px;
  box-shadow: 0 16px 32px rgba(22,18,15,.16);
}

.blog-feature h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(19px, 1.35vw, 26px);
  line-height: 1.32;
  font-weight: 300;
  letter-spacing: .03em;
  color: rgba(22,18,15,.78);
  margin-bottom: 18px;
}

.blog-feature p {
  max-width: 440px;
  margin-bottom: 22px;
  color: rgba(22,18,15,.66);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.68;
  letter-spacing: .025em;
}

.blog-preview .light-btn {
  background: rgba(22,18,15,.88);
  color: #f4f0ec;
}

.testimonials-section {
  min-height: 560px;
  grid-template-columns: .9fr 1fr;
  gap: 44px;
  padding: 60px 9vw 68px;
}

.testimonials-list {
  gap: 58px;
}

.testimonial-card {
  width: 320px;
  padding: 52px 24px 24px;
  background: linear-gradient(135deg, rgba(244,240,236,.12), rgba(183,154,125,.24));
  border: 1px solid rgba(244,240,236,.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
}

.testimonial-card img {
  top: -38px;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(183,154,125,.9);
}

.stars {
  font-size: 20px;
  margin-bottom: 12px;
  color: #b79a7d;
}

.testimonial-card p {
  color: rgba(244,240,236,.76);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .025em;
}

.testimonial-card h4 {
  margin-top: 14px;
  color: rgba(244,240,236,.86);
  font-size: 15px;
  font-weight: 300;
}

.testimonials-title h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 2.65vw, 46px);
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: .055em;
  color: rgba(244,240,236,.76);
}

.question-marks {
  margin-top: 12px;
  font-size: clamp(34px, 3.2vw, 58px);
  color: rgba(183,154,125,.72);
}

.marquee-section {
  background: linear-gradient(135deg, rgba(244,240,236,.98), rgba(183,154,125,.94));
  padding: 10px 0 12px;
}

.marquee-track span {
  color: rgba(22,18,15,.78);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: .12em;
  font-size: clamp(14px, 1.3vw, 24px);
}

.gallery-section {
  padding: 80px 5vw 130px;
  background: #000;
}

.marquee-section.compact {
  padding: 8px 0 10px;
}

.who-intro {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.86)),
    #000;
}

.who-intro .split-image {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.who-intro .split-text h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.18;
  font-style: italic;
  font-weight: 300;
  letter-spacing: .035em;
  color: rgba(244,240,236,.86);
  margin-bottom: 24px;
}

.who-intro .split-text p {
  max-width: 620px;
  margin-inline: auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(244,240,236,.68);
}

body[data-page="who-we-are"] .who-intro {
  grid-template-columns: minmax(280px, .92fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(70px, 8vw, 118px) 7vw;
}

body[data-page="who-we-are"] .who-intro .split-image,
body[data-page="who-we-are"] .vision-image {
  width: min(560px, 100%);
  height: auto;
  aspect-ratio: 1;
  justify-self: center;
  border: 0;
  border-radius: 8px;
  outline: 1px solid rgba(244,224,194,.2);
  box-shadow:
    0 0 18px rgba(244,224,194,.14),
    0 0 36px rgba(183,154,125,.16),
    0 0 70px rgba(183,154,125,.09),
    0 26px 72px rgba(0,0,0,.36);
}

body[data-page="who-we-are"] .who-intro .split-image img,
body[data-page="who-we-are"] .vision-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

body[data-page="who-we-are"] .who-intro .split-image::after,
body[data-page="who-we-are"] .vision-image::after {
  content: "";
  position: absolute;
  inset: -10px;
  pointer-events: none;
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(244,224,194,.34), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(244,224,194,.26), transparent) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(244,224,194,.24), transparent) left / 1px 100% no-repeat,
    linear-gradient(180deg, transparent, rgba(244,224,194,.24), transparent) right / 1px 100% no-repeat;
  filter: blur(2px);
  opacity: .72;
}

body[data-page="who-we-are"] .who-intro .split-text,
body[data-page="who-we-are"] .vision-copy,
body[data-page="who-we-are"] .why-copy {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(183,154,125,.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244,240,236,.075), rgba(183,154,125,.12)),
    rgba(255,255,255,.018);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

body[data-page="who-we-are"] .who-intro .split-text {
  justify-self: center;
  text-align: left;
}

body[data-page="who-we-are"] .who-intro .split-text p {
  margin-inline: 0;
}

@media (max-width: 900px) {
  body[data-page="who-we-are"] .who-intro {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  body[data-page="who-we-are"] .who-intro .split-text,
  body[data-page="who-we-are"] .vision-copy,
  body[data-page="who-we-are"] .why-copy {
    text-align: center;
  }

  body[data-page="who-we-are"] .who-intro .split-text p,
  body[data-page="who-we-are"] .vision-copy p {
    margin-inline: auto;
  }
}

.why-choose {
  min-height: 460px;
  grid-template-columns: .8fr 1fr;
  gap: 54px;
  padding: 62px 9vw;
  background:
    radial-gradient(circle at 22% 48%, rgba(183,154,125,.22), transparent 32%),
    linear-gradient(135deg, #070605, #13100d 58%, #070605);
  overflow: hidden;
}

.why-visual {
  position: relative;
  width: min(320px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
}

.why-copy,
body[data-page="who-we-are"] .why-copy {
  max-width: 660px;
  text-align: left;
}

.why-copy h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3.6vw, 62px);
  line-height: 1.05;
  font-style: italic;
  font-weight: 300;
  letter-spacing: .035em;
  color: rgba(244,240,236,.9);
  margin-bottom: 22px;
}

.why-copy p {
  text-align: left;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.62;
  font-weight: 300;
  letter-spacing: .035em;
  color: rgba(244,240,236,.68);
}

@media (max-width: 900px) {
  .footer {
    padding: 32px 24px 22px;
  }

  .footer-inner {
    gap: 22px;
  }

  .footer-logo img {
    width: 150px !important;
  }

  .blog-preview {
    min-height: auto;
    padding: 40px 24px;
    gap: 28px;
  }

  .testimonials-section {
    min-height: auto;
    gap: 52px;
    padding: 58px 24px 54px;
  }

  .testimonials-list {
    align-items: center;
    gap: 54px;
  }

  .testimonial-card {
    width: min(100%, 320px);
  }

  .gallery-section {
    padding: 56px 24px 90px;
  }

  .who-intro {
    min-height: auto;
  }

  .why-choose {
    min-height: auto;
    gap: 34px;
    padding: 52px 24px;
  }

  .why-copy {
    text-align: center;
  }

  .why-copy p {
    text-align: center;
  }
}


.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 1.4vw, 24px);
  padding-inline: clamp(18px, 3vw, 48px);
}

.brand {
  min-width: 142px;
}

.brand img {
  width: 158px !important;
  max-height: 48px;
}

.main-nav {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  gap: 3px;
  padding: 6px;
}

.main-nav a {
  min-width: 0;
  padding: 9px 9px;
  font-size: 10px;
  letter-spacing: .08em;
}

.phone {
  min-width: 0;
  padding: 9px 12px;
  border-color: rgba(183,154,125,.45);
  background: linear-gradient(135deg, rgba(244,240,236,.96), rgba(183,154,125,.9));
  color: #16120f;
  font-size: 0;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.phone::before {
  content: "Call";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .site-header {
    gap: 10px;
    padding-inline: 18px;
  }

  .brand {
    min-width: 126px;
  }

  .brand img {
    width: 138px !important;
  }

  .main-nav a {
    padding: 8px 7px;
    font-size: 9px;
    letter-spacing: .055em;
  }

  .header-actions {
    gap: 6px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
  animation: whatsappFloat 3.2s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, .5);
  opacity: 0;
  animation: whatsappPulse 3.2s ease-out infinite;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 24px 52px rgba(0,0,0,.42);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-popup {
  display: none !important;
}

@keyframes whatsappFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  45% { transform: translate3d(0, -7px, 0) scale(1.02); }
  58% { transform: translate3d(0, -4px, 0) scale(1); }
}

@keyframes whatsappPulse {
  0% { opacity: 0; transform: scale(.72); }
  28% { opacity: .85; }
  70%, 100% { opacity: 0; transform: scale(1.34); }
}

@media (max-width: 620px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-popup { display: none !important; }
}


.home-hero .hero-bg {
  transform:
    translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0)
    scale(1.08);
  transition: transform .16s ease-out;
}


.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.992);
  filter: blur(2px);
  transition:
    opacity .82s ease,
    transform .82s cubic-bezier(.2, .72, .18, 1),
    filter .82s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.scroll-soft {
  transform: translate3d(0, 18px, 0) scale(.996);
}

.scroll-soft.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.category-card,
.blog-card,
.testimonial-card,
.gallery-item,
.split-image,
.pill-image {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.category-card.is-visible.is-interacting,
.blog-card.is-visible.is-interacting,
.testimonial-card.is-visible.is-interacting,
.gallery-item.is-visible.is-interacting,
.split-image.is-visible.is-interacting,
.pill-image.is-visible.is-interacting {
  transform:
    translate3d(0, -6px, 0)
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

.category-card::before,
.blog-card::before,
.testimonial-card::before,
.gallery-item::before,
.split-image::before,
.pill-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,.22), transparent 32%);
  transition: opacity .22s ease;
}

.category-card.is-interacting::before,
.blog-card.is-interacting::before,
.testimonial-card.is-interacting::before,
.gallery-item.is-interacting::before,
.split-image.is-interacting::before,
.pill-image.is-interacting::before {
  opacity: 1;
}

.category-card h3,
.blog-card > *,
.testimonial-card > *,
.pill-image img {
  position: relative;
  z-index: 3;
}

.category-card:focus-visible,
.blog-card:focus-within,
.testimonial-card:focus-within,
.gallery-item:focus-visible {
  outline: 2px solid rgba(244,240,236,.78);
  outline-offset: 8px;
}

.offer-strip {
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

.offer-strip:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 38px 96px rgba(0,0,0,.38);
}

.outline-btn:active {
  transform: translateY(0) scale(.98);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .scroll-soft {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .home-hero .hero-bg {
    transform: none !important;
  }
}


.main-nav a {
  text-transform: none;
  letter-spacing: .035em;
  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.products-preview h2,
.product-catalog h2,
.product-list-section h2,
.contact-section h2,
.showroom-maps h2,
.testimonials-title h2,
.blog-left h2 {
  text-transform: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .015em;
}

.hero h1,
.page-hero h1 {
  color: rgba(244,240,236,.88);
  text-wrap: balance;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading p {
  margin-bottom: 14px;
  color: rgba(183,154,125,.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-section {
  padding: clamp(72px, 8vw, 120px) 6vw;
  background:
    radial-gradient(circle at 14% 24%, rgba(183,154,125,.16), transparent 28%),
    linear-gradient(180deg, #050505, #0d0b09 54%, #050505);
}

.contact-section h2 {
  margin-bottom: 0;
  color: rgba(244,240,236,.92);
  font-size: clamp(38px, 5vw, 82px);
  line-height: 1.03;
}

.contact-section h2 span {
  color: rgba(183,154,125,.98);
}

.contact-layout {
  grid-template-columns: minmax(260px, .76fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-info {
  gap: 14px;
  justify-content: center;
}

.contact-info a,
.contact-info p {
  position: relative;
  display: block;
  padding: 22px 22px 22px 128px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: rgba(244,240,236,.9);
  font-size: clamp(17px, 1.35vw, 22px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.35;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.contact-info a::before,
.contact-info p::before {
  content: attr(data-contact-label);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 82px;
  color: rgba(183,154,125,.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-info a:hover {
  transform: translateX(6px);
  border-color: rgba(183,154,125,.4);
  background: rgba(255,255,255,.07);
}

.contact-form {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(183,154,125,.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244,240,236,.96), rgba(210,193,176,.9));
  color: #17120f;
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}

.contact-form .form-label {
  position: static;
  transform: none;
  color: #17120f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3vw, 46px);
  font-style: normal;
  line-height: 1;
  pointer-events: auto;
  white-space: normal;
}

.contact-form:focus-within .form-label {
  opacity: 1;
}

.form-intro {
  max-width: 520px;
  margin-top: -8px;
  color: rgba(23,18,15,.68);
  font-size: 15px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(23,18,15,.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.64);
  color: #17120f;
  font-size: 15px;
  font-style: normal;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.contact-form textarea {
  min-height: 138px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(23,18,15,.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(132,107,85,.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(132,107,85,.14);
}

.contact-form .outline-btn {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .main-nav a {
    font-size: 13px;
  }

  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info a,
  .contact-info p {
    padding: 20px 20px 20px 116px;
  }
}

@media (max-width: 560px) {
  .section-heading {
    margin-bottom: 38px;
  }

  .contact-info a,
  .contact-info p {
    padding: 18px;
  }

  .contact-info a::before,
  .contact-info p::before {
    position: static;
    display: block;
    width: auto;
    margin-bottom: 8px;
    transform: none;
  }
}


.footer {
  padding: 24px 7vw 18px;
}

.footer-inner {
  grid-template-columns: minmax(240px, 1.4fr) minmax(220px, .9fr) minmax(220px, .8fr);
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}

.footer-brand-block p {
  max-width: 420px;
}

.footer h3 {
  margin-bottom: 8px;
}

.footer-contact {
  gap: 6px;
}

.footer-socials {
  margin-bottom: 8px;
}

.copyright {
  margin-top: 22px;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer-brand-block p {
    margin: 0 auto;
  }

  .footer-socials,
  .footer-lang {
    justify-content: center;
  }
}


.offer-strip {
  overflow: hidden;
  width: min(1180px, calc(100% - 10vw));
  min-height: 260px;
  padding: clamp(42px, 5vw, 70px) clamp(28px, 8vw, 120px);
  background:
    linear-gradient(135deg, rgba(23,18,15,.94), rgba(72,56,43,.9) 48%, rgba(132,107,85,.86)),
    radial-gradient(circle at 12% 22%, rgba(244,240,236,.14), transparent 34%);
  border: 1px solid rgba(183,154,125,.28);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 34px 90px rgba(0,0,0,.34);
}

.offer-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.offer-content h2 {
  color: rgba(244,240,236,.94);
  margin-bottom: 26px;
}

.offer-content p,
.offer-content .offer-text {
  color: rgba(244,240,236,.76);
  letter-spacing: .045em;
}

.offer-content .offer-text {
  font-size: clamp(15px, 1.15vw, 20px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}

.offer-content .offer-text p {
  margin-top: 18px;
  color: rgba(244,240,236,.76);
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 18px auto 8px;
}

.offer-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(244,224,194,.24);
  border-radius: 999px;
  background: rgba(0,0,0,.16);
  color: rgba(244,240,236,.88);
  font-size: .86em;
}

@media (max-width: 760px) {
  .offer-strip {
    width: calc(100% - 32px);
    padding: 42px 24px;
  }
}


.hero-bg,
.page-hero-bg {
  filter: brightness(.86) contrast(1.08) saturate(1.02) !important;
}

.hero-shade,
.page-hero-shade,
.home-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42) 52%, rgba(0,0,0,.68)),
    radial-gradient(circle at 50% 45%, rgba(0,0,0,.12), rgba(0,0,0,.42) 70%) !important;
}

.hero::after,
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.46), rgba(0,0,0,.08) 48%, rgba(0,0,0,.46)),
    radial-gradient(circle at 50% 48%, rgba(183,154,125,.1), transparent 38%) !important;
}

.hero h1,
.page-hero h1,
.gallery-hero h1,
.blog-hero h1,
.product-hero h1,
.contact-hero h1 {
  max-width: min(980px, calc(100vw - 42px));
  color: rgba(255,250,242,.94) !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5.8vw, 96px);
  font-style: normal;
  font-weight: 500;
  line-height: .98;
  letter-spacing: .018em;
  text-transform: none;
  text-shadow:
    0 3px 14px rgba(0,0,0,.7),
    0 14px 42px rgba(0,0,0,.62);
  -webkit-text-stroke: 0;
}

.script-title {
  color: rgba(255,250,242,.92);
  text-shadow: 0 5px 22px rgba(0,0,0,.72);
}

.home-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(52px, 6.8vw, 118px);
  font-style: italic;
  font-weight: 200;
  letter-spacing: .045em;
  text-transform: none;
  color: rgba(255,250,242,.88) !important;
}

.page-hero h1.reveal,
.hero-content.reveal {
  filter: none;
}

.gallery-hero h1 {
  left: 50%;
  top: 50%;
  width: fit-content;
  max-width: min(980px, calc(100vw - 42px));
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-content,
.shop-hero-content,
.page-hero h1,
.gallery-hero h1,
.blog-hero h1,
.product-hero h1,
.contact-hero h1 {
  width: fit-content;
  max-width: min(980px, calc(100vw - 42px));
  padding: clamp(14px, 2vw, 26px) clamp(18px, 2.8vw, 38px);
  border: 1px solid rgba(244,224,194,.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0,0,0,.26), rgba(23,18,15,.18)),
    rgba(0,0,0,.08);
  box-shadow:
    0 0 18px rgba(244,224,194,.3),
    0 0 42px rgba(183,154,125,.24),
    0 0 72px rgba(244,224,194,.12),
    0 14px 38px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
}

.page-hero h1,
.gallery-hero h1,
.blog-hero h1,
.product-hero h1,
.contact-hero h1 {
  display: inline-block;
}

.shop-hero-content h1,
.shop-hero-content p {
  color: rgba(255,250,242,.94) !important;
  text-shadow:
    0 3px 14px rgba(0,0,0,.72),
    0 14px 42px rgba(0,0,0,.62);
}

body[data-page="shop"] .shop-hero-content h1 {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 620px) {
  .hero h1,
  .page-hero h1,
  .gallery-hero h1,
  .blog-hero h1,
  .product-hero h1,
  .contact-hero h1 {
    font-size: clamp(36px, 10.5vw, 58px);
    letter-spacing: .006em;
    -webkit-text-stroke: 0;
  }
}


.home-hero .hero-bg {
  opacity: 1 !important;
  filter: brightness(1.08) contrast(1.03) saturate(1.04) !important;
  animation: homeHeroImageWake 2.6s ease-out .15s forwards;
}

.home-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.1) 54%, rgba(0,0,0,.26)),
    radial-gradient(circle at 50% 48%, rgba(0,0,0,.01), rgba(0,0,0,.12) 72%) !important;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,.01) 48%, rgba(0,0,0,.16)),
    radial-gradient(circle at 50% 48%, rgba(183,154,125,.06), transparent 40%) !important;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0,0,0,.12);
  animation: homeHeroDarkFade 2.2s ease-out .2s forwards;
}

.home-hero .hero-shade {
  z-index: 1;
}

.home-panel-lights {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.home-panel-lights span {
  position: absolute;
  top: 6%;
  left: var(--light-x);
  width: clamp(145px, 17vw, 270px);
  height: clamp(105px, 15vw, 220px);
  transform: translateX(-50%);
  opacity: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(255,230,178,.12));
  background:
    radial-gradient(ellipse at 50% 9%, rgba(255,246,220,.5), rgba(255,230,176,.17) 30%, rgba(255,225,165,.055) 58%, transparent 84%),
    linear-gradient(180deg, rgba(255,246,220,.16), transparent 40%);
  animation: panelSpotOn 1.9s ease-out forwards;
  animation-delay: var(--light-delay);
}

.home-panel-lights span:nth-child(1) { --light-x: 7%; --light-delay: .35s; }
.home-panel-lights span:nth-child(2) { --light-x: 20%; --light-delay: .75s; }
.home-panel-lights span:nth-child(3) { --light-x: 36%; --light-delay: 1.15s; }
.home-panel-lights span:nth-child(4) { --light-x: 50%; --light-delay: 1.55s; }
.home-panel-lights span:nth-child(5) { --light-x: 64%; --light-delay: 1.95s; }
.home-panel-lights span:nth-child(6) { --light-x: 80%; --light-delay: 2.35s; }
.home-panel-lights span:nth-child(7) { --light-x: 93%; --light-delay: 2.75s; }

.home-panel-lights span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  width: 68%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent 4%, rgba(255,248,226,.16) 24%, rgba(255,248,226,.48) 50%, rgba(255,248,226,.16) 76%, transparent 96%);
  filter: blur(.6px);
}

@keyframes homeHeroImageWake {
  0% { filter: brightness(.9) contrast(1.05) saturate(1.02); }
  55% { filter: brightness(1.04) contrast(1.03) saturate(1.03); }
  100% { filter: brightness(1.18) contrast(1.02) saturate(1.05); }
}

@keyframes homeHeroDarkFade {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes panelSpotOn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px) scale(.96);
  }
  65% {
    opacity: .58;
  }
  100% {
    opacity: .5;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-bg,
  .home-hero::before,
  .home-panel-lights span {
    animation: none !important;
  }

  .home-hero::before {
    opacity: 0 !important;
  }

  .home-panel-lights span {
    opacity: .28 !important;
  }

  .home-hero .hero-bg {
    filter: brightness(1.18) contrast(1.02) saturate(1.05) !important;
  }
}

.home-hero .hero-content {
  --home-copy-offset: clamp(130px, 20vh, 230px);
  margin-top: 0;
  transform: translate3d(
    var(--hero-copy-x, 0),
    calc(var(--hero-copy-y, 0px) + var(--home-copy-offset)),
    0
  );
  animation: homeHeroTextIn 1.15s cubic-bezier(.18,.72,.2,1) .35s backwards;
}

@keyframes homeHeroTextIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(
      var(--hero-copy-x, 0),
      calc(var(--hero-copy-y, 0px) + var(--home-copy-offset) + 46px),
      0
    );
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(
      var(--hero-copy-x, 0),
      calc(var(--hero-copy-y, 0px) + var(--home-copy-offset)),
      0
    );
  }
}

@media (max-width: 620px) {
  .home-hero .hero-content {
    --home-copy-offset: clamp(96px, 15vh, 150px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-content {
    animation: none !important;
  }
}


.gallery-hero h1.reveal,
.gallery-hero h1.reveal.is-visible {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
}

.gallery-hero h1.reveal {
  transition: opacity .9s ease, filter .9s ease;
}


.about-preview .split-text {
  justify-self: start;
  text-align: left;
}

.about-preview .about-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(183,154,125,.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-preview .split-text h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  color: rgba(244,240,236,.96);
}

.about-preview .split-text p {
  max-width: 640px;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.7;
  letter-spacing: .025em;
  font-style: normal;
  font-weight: 400;
  color: rgba(244,240,236,.72);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  padding: 9px 13px;
  border: 1px solid rgba(183,154,125,.32);
  border-radius: 999px;
  background: rgba(183,154,125,.08);
  color: rgba(244,224,194,.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-preview .outline-btn {
  margin-top: 30px;
}

.about-preview .split-image {
  border: 0;
  outline: 0;
  box-shadow:
    0 0 18px rgba(244,224,194,.16),
    0 0 36px rgba(183,154,125,.18),
    0 0 70px rgba(183,154,125,.1),
    0 26px 72px rgba(0,0,0,.36);
}

.about-preview .split-image::after {
  content: "";
  position: absolute;
  inset: -10px;
  pointer-events: none;
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(244,224,194,.34), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(244,224,194,.26), transparent) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(244,224,194,.24), transparent) left / 1px 100% no-repeat,
    linear-gradient(180deg, transparent, rgba(244,224,194,.24), transparent) right / 1px 100% no-repeat;
  filter: blur(2px);
  opacity: .74;
}

@media (max-width: 900px) {
  .about-preview .split-text {
    justify-self: center;
    text-align: center;
  }

  .about-points {
    justify-content: center;
  }

  .about-preview .split-image {
    box-shadow:
      0 0 16px rgba(244,224,194,.14),
      0 0 30px rgba(183,154,125,.15),
      0 22px 58px rgba(0,0,0,.34);
  }
}


.blog-preview {
  background:
    linear-gradient(135deg, rgba(244,240,236,.94), rgba(211,194,176,.82)),
    radial-gradient(circle at 18% 24%, rgba(183,154,125,.12), transparent 34%);
}

.blog-left h2,
.blog-feature h3 {
  color: rgba(22,18,15,.68);
}

.blog-feature p {
  color: rgba(22,18,15,.58);
}


.offer-strip {
  min-height: auto;
  display: block;
  text-align: left;
  padding: clamp(38px, 5vw, 64px);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

.offer-content {
  max-width: 860px;
}

.offer-content h2 {
  margin-bottom: 18px;
}

.offer-content p {
  max-width: 780px;
}

.offer-symbol {
  display: none !important;
}

.products-preview {
  padding: clamp(64px, 8vw, 112px) 5vw;
}

.products-preview-head {
  max-width: 760px;
  margin: 0 auto 52px;
}

.products-preview-head span,
.testimonials-title span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(183,154,125,.95);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.products-preview h2 {
  margin-bottom: 18px;
  color: rgba(244,240,236,.92);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 78px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .015em;
  text-transform: none;
}

.products-preview-head p {
  color: rgba(244,240,236,.64);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.65;
}

.products-preview .category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.products-preview .category-card {
  width: auto;
  min-height: 260px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183,154,125,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 22px 58px rgba(0,0,0,.28);
}

.products-preview .category-card img,
.products-preview .category-card .photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  opacity: .72;
}

.products-preview .category-card::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(180deg, transparent 18%, rgba(0,0,0,.74)),
    radial-gradient(circle at 20% 20%, rgba(183,154,125,.18), transparent 34%);
}

.products-preview .category-card h3 {
  position: relative;
  z-index: 2;
  padding: 0 18px 20px;
  color: rgba(244,240,236,.92);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 1.6vw, 28px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .035em;
}

.products-preview .category-card::after {
  content: "";
  display: none;
}

.product-btn {
  margin-top: 42px;
}

.testimonials-section {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(70px, 8vw, 118px) 8vw;
  background:
    radial-gradient(circle at 14% 20%, rgba(183,154,125,.14), transparent 30%),
    #050505;
}

.testimonials-title {
  text-align: left;
}

.testimonials-title h2 {
  color: rgba(244,240,236,.9);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 4.2vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .015em;
  text-transform: none;
}

.testimonials-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  width: auto;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(183,154,125,.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244,240,236,.075), rgba(183,154,125,.12));
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.quote-mark {
  height: 34px;
  color: rgba(183,154,125,.92);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 58px;
  line-height: .7;
}

.testimonial-card p {
  margin: 24px 0;
  color: rgba(244,240,236,.78);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 300;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img,
.testimonial-card img {
  position: static;
  transform: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(183,154,125,.75);
  border-radius: 50%;
}

.testimonial-card h4 {
  margin: 0 0 5px;
  color: rgba(244,240,236,.9);
  font-size: 15px;
  font-style: normal;
}

.stars {
  margin: 0;
  color: rgba(183,154,125,.95);
  font-size: 13px;
  letter-spacing: .08em;
}

.question-marks {
  display: none;
}

@media (max-width: 980px) {
  .products-preview .category-grid,
  .testimonials-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .products-preview .category-grid,
  .testimonials-list {
    grid-template-columns: 1fr;
  }
}


.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(135deg, rgba(244,240,236,.96), rgba(183,154,125,.94));
  color: #16120f;
  box-shadow: 0 10px 24px rgba(183,154,125,.22);
}

.lang-switch {
  border-color: rgba(183,154,125,.38);
}

.lang-switch button:hover,
.lang-switch button.is-active,
.footer .lang-switch button:hover,
.footer .lang-switch button.is-active {
  background: linear-gradient(135deg, rgba(244,240,236,.96), rgba(183,154,125,.94));
  color: #16120f;
  box-shadow: 0 8px 18px rgba(183,154,125,.18);
}


.page-hero:not(.home-hero) .page-hero-bg {
  opacity: 1 !important;
  filter: brightness(1.16) contrast(1.02) saturate(1.05) !important;
}

.page-hero:not(.home-hero) .page-hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.16) 54%, rgba(0,0,0,.34)),
    radial-gradient(circle at 50% 45%, rgba(0,0,0,.02), rgba(0,0,0,.18) 72%) !important;
}

.page-hero:not(.home-hero)::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.02) 48%, rgba(0,0,0,.18)),
    radial-gradient(circle at 50% 48%, rgba(183,154,125,.05), transparent 42%) !important;
}


body[data-page="index"] .blog-preview {
  background:
    linear-gradient(135deg, rgba(23,18,15,.94), rgba(72,56,43,.9) 48%, rgba(132,107,85,.86)),
    radial-gradient(circle at 14% 22%, rgba(244,240,236,.14), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(183,154,125,.16), transparent 38%) !important;
  border-top: 1px solid rgba(183,154,125,.2);
  border-bottom: 1px solid rgba(183,154,125,.18);
}

body[data-page="index"] .blog-left h2,
body[data-page="index"] .blog-feature h3 {
  color: rgba(244,240,236,.9);
}

body[data-page="index"] .blog-feature p {
  color: rgba(244,240,236,.68);
}

body[data-page="index"] .blog-preview .light-btn {
  border-color: rgba(244,240,236,.72);
  background: transparent;
  color: rgba(244,240,236,.92);
}

body[data-page="index"] .blog-preview .light-btn:hover {
  background: rgba(244,240,236,.94);
  color: #16120f;
}


.vision-section {
  position: relative;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 24%, rgba(183,154,125,.16), transparent 34%),
    linear-gradient(135deg, #070605, #13100d 58%, #070605);
}

.vision-copy {
  align-self: center;
  justify-self: center;
  max-width: 620px;
  padding: clamp(34px, 4.5vw, 58px);
  text-align: left;
  border: 1px solid rgba(183,154,125,.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244,240,236,.075), rgba(183,154,125,.12)),
    rgba(255,255,255,.018);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.vision-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(183,154,125,.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vision-copy h2 {
  margin: 0 0 22px;
  color: rgba(244,240,236,.94);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 74px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .015em;
  text-transform: none;
}

.vision-copy p {
  max-width: 560px;
  color: rgba(244,240,236,.72);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.68;
  letter-spacing: .025em;
}

.vision-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.vision-points span {
  padding: 10px 13px;
  border: 1px solid rgba(183,154,125,.34);
  border-radius: 999px;
  background: rgba(183,154,125,.1);
  color: rgba(244,224,194,.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vision-image {
  align-self: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(183,154,125,.18);
}

.vision-image img {
  height: min(620px, 70vh);
  max-height: none;
  opacity: .9;
  filter: brightness(.98) contrast(1.04) saturate(1.03);
}

@media (max-width: 900px) {
  .vision-copy {
    text-align: center;
  }

  .vision-copy p {
    margin-inline: auto;
  }

  .vision-points {
    justify-content: center;
  }
}


.why-choose {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(54px, 6vw, 86px) 7vw;
  background:
    radial-gradient(circle at 22% 18%, rgba(183,154,125,.13), transparent 28%),
    linear-gradient(135deg, #050403, #11100e 55%, #050403);
}

.why-showcase {
  position: relative;
  width: min(100%, 1320px);
  min-height: clamp(620px, 58vw, 790px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(183,154,125,.2);
  border-radius: 8px;
  background: #080705;
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
}

.why-showcase img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  opacity: .92;
  filter: contrast(1.05) brightness(.86) saturate(1.04);
}

.why-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38) 44%, rgba(0,0,0,.08)),
    linear-gradient(0deg, rgba(0,0,0,.64), transparent 46%, rgba(0,0,0,.22));
  pointer-events: none;
}

.why-showcase-points {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 5vw, 72px);
  top: 30%;
  display: grid;
  gap: 34px;
  color: rgba(244,224,194,.9);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.22;
}

.why-showcase-points span {
  position: relative;
  display: block;
  padding-top: 34px;
}

.why-showcase-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 24px;
  border: 1px solid rgba(212,169,111,.72);
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px rgba(212,169,111,.08);
}

.why-showcase-points span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 72px;
  height: 1px;
  background: rgba(212,169,111,.42);
}

.circle-text,
.why-orbit,
.why-spark {
  display: none !important;
  animation: none !important;
}

.why-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(183,154,125,.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.why-copy,
body[data-page="who-we-are"] .why-copy {
  position: absolute;
  z-index: 2;
  right: clamp(8vw, 9vw, 140px);
  top: 50%;
  width: min(46vw, 580px);
  transform: translateY(-50%);
  padding: clamp(34px, 4.2vw, 58px);
  border: 1px solid rgba(183,154,125,.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(22,20,18,.88), rgba(13,12,11,.70)),
    radial-gradient(circle at 18% 12%, rgba(212,169,111,.12), transparent 35%);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
}

.why-copy h2 {
  font-style: normal;
  font-weight: 400;
  letter-spacing: .015em;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 4vw, 56px);
  padding-top: clamp(26px, 3vw, 42px);
  border-top: 1px solid rgba(183,154,125,.16);
}

.why-feature-grid article {
  padding: 0 clamp(14px, 2vw, 28px);
  border-left: 1px solid rgba(183,154,125,.2);
}

.why-feature-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.why-feature-grid h3 {
  margin: 14px 0 10px;
  color: rgba(244,224,194,.9);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.why-feature-grid p {
  margin: 0;
  color: rgba(244,240,236,.62);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  font-style: normal;
  text-align: left;
}

.why-feature-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(212,169,111,.72);
  border-radius: 8px;
  color: rgba(244,224,194,.94);
  font-size: 11px;
  font-weight: 850;
}

.why-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.why-points span {
  padding: 10px 13px;
  border: 1px solid rgba(183,154,125,.32);
  border-radius: 999px;
  background: rgba(183,154,125,.09);
  color: rgba(244,224,194,.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .why-choose {
    padding: 38px 20px 48px;
    text-align: center;
  }

  .why-showcase {
    min-height: 720px;
    width: 100%;
    max-width: 430px;
  }

  .why-showcase-points {
    left: 24px;
    top: 24%;
    gap: 24px;
    text-align: left;
  }

  .why-copy {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 28px;
    width: calc(100% - 52px);
    max-width: 360px;
    transform: translateX(-50%);
    padding: 24px 18px 22px;
  }

  .why-copy h2 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .why-copy p {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
  }

  .why-points {
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .why-points span {
    max-width: 100%;
    padding: 9px 11px;
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
  }

  .why-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
  }

  .why-feature-grid article,
  .why-feature-grid article:first-child {
    padding: 0 0 16px;
    border-left: 0;
    border-bottom: 1px solid rgba(183,154,125,.18);
    text-align: center;
  }

  .why-feature-grid p {
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
}

body[data-page="who-we-are"] .why-choose {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(340px, 520px);
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  padding: clamp(56px, 6vw, 84px) 7vw;
  background:
    radial-gradient(circle at 26% 48%, rgba(183,154,125,.16), transparent 30%),
    radial-gradient(circle at 78% 50%, rgba(183,154,125,.12), transparent 28%),
    linear-gradient(135deg, #050403, #11100e 55%, #050403);
}

body[data-page="who-we-are"] .why-choose::before,
body[data-page="who-we-are"] .why-choose::after {
  display: none;
}

body[data-page="who-we-are"] .why-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: clamp(250px, 26vw, 340px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(183,154,125,.22);
  border-radius: 8px;
  background: #080705;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

body[data-page="who-we-are"] .why-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    linear-gradient(0deg, rgba(0,0,0,.34), transparent 48%);
  pointer-events: none;
}

body[data-page="who-we-are"] .why-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: brightness(.86) contrast(1.06) saturate(1.04);
}

body[data-page="who-we-are"] .why-copy {
  position: relative;
  z-index: 1;
  inset: auto;
  width: 100%;
  max-width: 560px;
  transform: none;
  text-align: center;
  justify-self: start;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3.4vw, 44px);
  border: 1px solid rgba(183,154,125,.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244,240,236,.075), rgba(183,154,125,.12)),
    rgba(255,255,255,.018);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  backdrop-filter: none;
}

body[data-page="who-we-are"] .why-logo {
  display: block;
  width: clamp(132px, 12vw, 180px);
  height: auto;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.36));
}

body[data-page="who-we-are"] .why-copy h2 {
  background: linear-gradient(90deg, #f4f0ec 0%, #d4a96f 36%, #ffffff 50%, #d4a96f 64%, #f4f0ec 100%);
  background-size: 220% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 10px 34px rgba(212,169,111,.16);
  animation: whyTitleShimmer 5.8s ease-in-out infinite, whyTitleFloat 4.6s ease-in-out infinite;
  will-change: background-position, transform;
}

@keyframes whyTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  45%, 55% { background-position: 100% 50%; }
}

@keyframes whyTitleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="who-we-are"] .why-copy h2 {
    animation: none;
  }
}

body[data-page="who-we-are"] .why-copy p {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

body[data-page="who-we-are"] .why-points {
  justify-content: center;
}

@media (max-width: 900px) {
  body[data-page="who-we-are"] .why-choose {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 20px 44px;
  }

  body[data-page="who-we-are"] .why-photo {
    order: 2;
    display: block;
    width: min(100%, 360px);
    min-height: 210px;
    justify-self: center;
    margin: 0 auto;
  }

  body[data-page="who-we-are"] .why-copy {
    order: 1;
    width: min(100%, 360px);
    justify-self: center;
    padding: 26px 18px 22px;
  }

  body[data-page="who-we-are"] .why-logo {
    width: 170px;
    margin-bottom: 20px;
  }
}


body[data-page="products"] .product-catalog {
  padding: clamp(72px, 8vw, 118px) 5vw clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 16% 12%, rgba(183,154,125,.12), transparent 32%),
    linear-gradient(180deg, #050505, #0d0b09 54%, #050505);
  text-align: left;
}

body[data-page="products"] .catalog-head {
  max-width: 1180px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  text-align: center;
}

body[data-page="products"] .catalog-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(183,154,125,.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body[data-page="products"] .product-catalog h2 {
  margin: 0 auto;
  color: rgba(244,240,236,.94);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 6vw, 86px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .012em;
  text-transform: none;
  text-align: center;
}

body[data-page="products"] .catalog-head p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(244,240,236,.66);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(17px, 1.3vw, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .025em;
}

body[data-page="products"] .category-grid.large {
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="products"] .category-card {
  width: auto;
  min-height: 300px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183,154,125,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

body[data-page="products"] .category-card img,
body[data-page="products"] .category-card .photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  opacity: .78;
  filter: brightness(.88) contrast(1.05) saturate(1.02);
}

body[data-page="products"] .category-card::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(180deg, transparent 18%, rgba(0,0,0,.78)),
    radial-gradient(circle at 18% 18%, rgba(183,154,125,.18), transparent 34%);
}

body[data-page="products"] .category-card h3 {
  position: relative;
  z-index: 2;
  padding: 0 20px 22px;
  color: rgba(244,240,236,.94);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 2vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .02em;
}

body[data-page="products"] .category-card::after {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: -12px 20px 22px;
  color: rgba(244,224,194,.86);
}

body[data-page="products"] .products-to-shop {
  padding-top: 0;
  background: #050505;
}

@media (max-width: 980px) {
  body[data-page="products"] .catalog-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body[data-page="products"] .catalog-head p {
    margin-inline: auto;
  }

  body[data-page="products"] .category-grid.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body[data-page="products"] .product-catalog {
    padding-inline: 22px;
  }

  body[data-page="products"] .category-grid.large {
    grid-template-columns: 1fr;
  }
}


body[data-page="blog"] .blog-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(70px, 8vw, 118px) 6vw clamp(90px, 9vw, 140px);
  background:
    radial-gradient(circle at 14% 12%, rgba(183,154,125,.12), transparent 32%),
    linear-gradient(180deg, #050505, #0d0b09 56%, #050505);
}

body[data-page="blog"] .blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 22px 28px;
  border-radius: 8px;
  border-color: rgba(183,154,125,.22);
  background:
    linear-gradient(145deg, rgba(244,240,236,.055), rgba(183,154,125,.09)),
    rgba(255,255,255,.018);
}

body[data-page="blog"] .blog-card .pill-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.2 / .78;
  margin: 0 0 26px;
  border-radius: 8px;
}

body[data-page="blog"] .blog-card h2 {
  margin: 0 0 18px;
  color: rgba(244,240,236,.92);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 2vw, 34px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .012em;
  text-transform: none;
}

body[data-page="blog"] .blog-card p {
  margin-bottom: 28px;
  color: rgba(244,240,236,.66);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
}

body[data-page="blog"] .blog-card .outline-btn {
  margin-top: auto;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 24px;
}

.blog-modal.is-open {
  display: grid;
}

.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}

.blog-modal-box {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border: 1px solid rgba(183,154,125,.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23,18,15,.98), rgba(48,38,30,.98)),
    #16120f;
  box-shadow: 0 32px 110px rgba(0,0,0,.62);
}

.blog-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244,240,236,.34);
  border-radius: 50%;
  background: rgba(0,0,0,.48);
  color: rgba(244,240,236,.94);
  cursor: pointer;
  font-size: 18px;
}

.blog-modal-image {
  height: clamp(220px, 34vw, 360px);
  overflow: hidden;
}

.blog-modal-image img,
.blog-modal-image .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-content {
  padding: clamp(28px, 5vw, 58px);
}

.blog-modal-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(183,154,125,.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-modal-content h2 {
  max-width: 760px;
  color: rgba(244,240,236,.95);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
}

.blog-modal-excerpt {
  max-width: 760px;
  margin: 20px 0 28px;
  color: rgba(244,224,194,.76);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.blog-modal-body {
  max-width: 780px;
}

.blog-modal-body p {
  margin: 0 0 20px;
  color: rgba(244,240,236,.72);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

body[data-page="gallery"] .gallery-section {
  padding: clamp(72px, 8vw, 120px) 5vw clamp(90px, 9vw, 140px);
  background:
    radial-gradient(circle at 16% 14%, rgba(183,154,125,.12), transparent 34%),
    linear-gradient(180deg, #050505, #0d0b09 56%, #050505);
}

body[data-page="gallery"] .gallery-grid {
  max-width: 1220px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery-project {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183,154,125,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.gallery-project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.35 / .86;
}

.gallery-project-media::after {
  display: none;
}

.gallery-project-media img,
.gallery-project-media video,
.gallery-project-media .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

.gallery-counter {
  color: rgba(183,154,125,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gallery-project-title {
  max-width: 86%;
  margin: 18px auto 22px;
  color: rgba(244,240,236,.94);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244,240,236,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.46);
  color: rgba(244,240,236,.96);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .22s ease, transform .22s ease;
}

.gallery-arrow:hover {
  background: rgba(244,240,236,.94);
  color: #16120f;
}

.gallery-arrow-prev {
  left: 16px;
}

.gallery-arrow-next {
  right: 16px;
}

.gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 4;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.52);
}

@media (max-width: 980px) {
  body[data-page="blog"] .blog-cards,
  body[data-page="gallery"] .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body[data-page="blog"] .blog-cards,
  body[data-page="gallery"] .gallery-section {
    padding-inline: 22px;
  }
}


.photo-placeholder {
  display: block;
  min-height: 180px;
  background:
    linear-gradient(145deg, rgba(244,240,236,.08), rgba(183,154,125,.14)),
    radial-gradient(circle at 28% 22%, rgba(244,224,194,.18), transparent 34%),
    #17120f;
}

.product-card .photo-placeholder,
.category-card .photo-placeholder,
.pill-image .photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product-card-body {
  gap: 10px;
}

.product-category-name {
  width: fit-content;
  margin: 0 0 2px !important;
  padding: 4px 8px;
  border: 1px solid rgba(183,154,125,.22);
  border-radius: 999px;
  background: rgba(183,154,125,.08);
  color: rgba(221,198,174,.92) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 7px !important;
  color: rgba(255,250,242,.96) !important;
  font-size: clamp(17px, 1.2vw, 20px) !important;
  font-style: normal !important;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.18;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
}

.product-price-line {
  margin: 0 !important;
  color: rgba(244,224,194,.94);
  font-size: 14px !important;
  font-weight: 750;
  line-height: 1.2;
}

.product-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 !important;
}

.product-quick-info span {
  padding: 4px 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.56);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
}

.product-description {
  margin-top: 0 !important;
  padding-top: 0;
  color: rgba(244,240,236,.56) !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
  font-style: normal;
}

body[data-page="shop"] .modern-shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="shop"] .product-card {
  border-radius: 14px;
}

body[data-page="shop"] .product-card img,
body[data-page="shop"] .product-card .photo-placeholder {
  aspect-ratio: 1 / .86;
}

body[data-page="shop"] .stock-badge {
  top: 9px;
  left: 9px;
  padding: 6px 8px;
  font-size: 9px;
  letter-spacing: .04em;
}

body[data-page="shop"] .product-card-body {
  min-height: 0;
  padding: 14px;
  gap: 7px;
}

body[data-page="shop"] .product-category-name {
  max-width: 100%;
  padding: 3px 6px;
  font-size: 8px !important;
  letter-spacing: .06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-page="shop"] .product-card h3 {
  min-height: 2.35em;
  margin-bottom: 4px !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-page="shop"] .product-meta {
  gap: 5px;
  margin-bottom: 7px;
}

body[data-page="shop"] .product-price-line {
  font-size: 12px !important;
}

body[data-page="shop"] .product-quick-info {
  gap: 4px;
}

body[data-page="shop"] .product-quick-info span {
  padding: 3px 5px;
  font-size: 8px;
}

body[data-page="shop"] .product-description {
  display: none;
}

body[data-page="shop"] .product-card .outline-btn {
  min-height: 36px;
  padding: 9px 10px;
  font-size: 9px;
}

@media (max-width: 1150px) {
  body[data-page="shop"] .modern-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-page="shop"] .shop-shell {
    padding: 44px 14px 80px;
  }

  body[data-page="shop"] .modern-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="shop"] .product-card-body {
    padding: 11px;
  }

  body[data-page="shop"] .product-card h3 {
    font-size: 13px !important;
  }

  body[data-page="shop"] .product-quick-info span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 900px) {
  body[data-page="index"] .products-preview.reveal,
  body[data-page="products"] .product-catalog.reveal,
  body[data-page="products"] .products-to-shop.reveal,
  body[data-page="shop"] .shop-shell.reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body[data-page="index"] .products-preview .category-card,
  body[data-page="products"] .category-card,
  body[data-page="shop"] .product-card {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-grid !important;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(244,224,194,.32);
    border-radius: 999px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 12px 30px rgba(0,0,0,.24);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255,250,242,.96);
  }
}


.footer-menu a,
.footer-contact a {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}

.footer-menu a::after,
.footer-contact a::after {
  bottom: -4px;
  max-width: 100%;
}

@media (max-width: 900px) {
  .menu-toggle {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    overflow: visible;
    border-color: rgba(220, 186, 122, .62);
    background:
      linear-gradient(145deg, rgba(183,154,125,.22), rgba(244,224,194,.08)),
      rgba(12, 10, 8, .72);
    box-shadow:
      inset 0 0 0 1px rgba(244,224,194,.12),
      0 14px 34px rgba(0,0,0,.32);
  }

  .menu-toggle span {
    flex: 0 0 auto;
    display: block;
    width: 24px;
    min-width: 24px;
    max-width: none;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    transform: translateZ(0);
    background: linear-gradient(135deg, rgba(244,240,236,.96), rgba(183,154,125,.94));
    box-shadow:
      0 0 10px rgba(244,224,194,.45),
      0 1px 0 rgba(0,0,0,.22);
  }
}

@media (max-width: 620px) {
  .menu-toggle {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    max-width: 100vw;
    padding-inline: 14px;
    gap: 8px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand img {
    width: 112px !important;
  }

  .header-actions {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: auto;
    margin-right: 4px;
    gap: 4px;
  }

  .header-actions .social-link {
    display: inline-grid !important;
    width: 31px;
    height: 31px;
  }

  .header-actions .lang-switch {
    display: inline-flex !important;
    flex: 0 0 auto;
    gap: 2px;
    padding: 2px;
  }

  .header-actions .lang-switch button {
    padding: 5px 6px;
    font-size: 9px;
  }

  .menu-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .menu-toggle span {
    width: 21px;
    min-width: 21px;
  }
}

.footer {
  padding: clamp(34px, 5vw, 56px) 7vw 24px;
  background:
    linear-gradient(135deg, rgba(244,240,236,.98), rgba(183,154,125,.94));
  color: #16120f;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(260px, 1fr) minmax(160px, .65fr);
  align-items: start;
  gap: clamp(26px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}

.footer-logo img {
  width: 168px !important;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: left center;
}

.footer-brand-block p {
  display: none;
  max-width: 330px;
  color: rgba(22,18,15,.72);
  font-size: 14px;
  line-height: 1.65;
  font-style: normal;
}

.footer h3 {
  margin: 0 0 12px;
  color: rgba(22,18,15,.62);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact a,
.footer-contact p {
  width: fit-content;
  max-width: 100%;
  color: rgba(22,18,15,.82);
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}

.footer-contact p {
  max-width: 250px;
  color: rgba(22,18,15,.68);
  font-weight: 500;
}

.footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(22,18,15,.22);
  border-radius: 50%;
  background: rgba(22,18,15,.04);
  color: rgba(22,18,15,.86);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
}

.footer-lang {
  justify-content: flex-start;
  margin-top: 0;
}

.footer .lang-switch button {
  color: rgba(22,18,15,.68);
}

.footer .lang-switch button:hover,
.footer .lang-switch button.is-active {
  background: rgba(22,18,15,.9);
  color: #f4f0ec;
}

.copyright {
  max-width: 1240px;
  margin: 24px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(22,18,15,.14);
  color: rgba(22,18,15,.52);
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .16em;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 42px;
  }

  .footer-social-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .footer {
    padding: 34px 24px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .footer-brand-block p,
  .footer-contact p {
    max-width: none;
  }

  .footer-social-block,
  .footer-lang {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .copyright {
    margin-top: 30px;
    text-align: left;
  }
}

/* Final mobile cleanup for the footer and home offer area. */
.offer-strip {
  padding: clamp(42px, 5vw, 62px) 7vw;
}

.offer-content {
  max-width: 980px;
  margin: 0 auto;
}

.offer-content h2 {
  margin-bottom: 18px;
}

.offer-content .offer-text {
  max-width: 900px;
  color: rgba(244,240,236,.76);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .02em;
}

.offer-content .offer-text p {
  display: none;
}

.offer-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 20px 0 0;
}

.offer-tags span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(244,224,194,.22);
  border-radius: 8px;
  background: rgba(244,240,236,.08);
  color: rgba(244,240,236,.88);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 900px) {
  .offer-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .offer-strip {
    width: 100%;
    padding: 36px 20px;
  }

  .offer-content {
    max-width: 420px;
  }

  .offer-content h2 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.08;
    text-align: center;
  }

  .offer-content .offer-text {
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
  }

  .offer-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .offer-tags span {
    min-height: 44px;
    padding: 9px 8px;
    font-size: 11px;
    letter-spacing: .01em;
  }

  .footer {
    padding: 32px 20px 22px;
  }

  .footer-inner {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-logo img {
    width: 150px !important;
    margin-inline: auto;
    transform: scale(1.4);
    transform-origin: center;
  }

  .footer h3 {
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: .16em;
  }

  .footer-contact {
    align-items: center;
    gap: 6px;
  }

  .footer-contact a,
  .footer-contact p {
    width: auto;
    max-width: 300px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .footer-social-block,
  .footer-lang {
    align-items: center;
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
    margin-bottom: 10px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .copyright {
    max-width: 360px;
    margin-top: 22px;
    padding-top: 14px;
    text-align: center;
    font-size: 10px;
    letter-spacing: .08em;
  }

  body[data-page="index"] .products-preview {
    padding: 54px 18px 64px;
  }

  body[data-page="index"] .products-preview-head {
    max-width: 360px;
    margin-bottom: 28px;
  }

  body[data-page="index"] .products-preview h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  body[data-page="index"] .products-preview-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  body[data-page="index"] .products-preview .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 360px;
  }

  body[data-page="index"] .products-preview .category-card {
    min-height: 142px;
    border-radius: 8px;
  }

  body[data-page="index"] .products-preview .category-card h3 {
    padding: 0 10px 12px;
    font-size: 14px;
    line-height: 1.18;
    letter-spacing: .01em;
    overflow-wrap: anywhere;
  }

  body[data-page="index"] .product-btn {
    width: min(100%, 240px);
    margin-top: 28px;
  }
}

@media (max-width: 980px) {
  .footer {
    padding: 32px 20px 22px;
  }

  .footer-inner {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-logo img {
    width: 150px !important;
    margin-inline: auto;
    transform: scale(1.4);
    transform-origin: center;
  }

  .footer h3 {
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: .16em;
  }

  .footer-contact {
    align-items: center;
    gap: 6px;
  }

  .footer-contact a,
  .footer-contact p {
    width: auto;
    max-width: 300px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .footer-social-block,
  .footer-lang {
    align-items: center;
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
    margin-bottom: 10px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .copyright {
    max-width: 360px;
    margin-top: 22px;
    padding-top: 14px;
    text-align: center;
    font-size: 10px;
    letter-spacing: .08em;
  }
}

body[data-page="gallery"] .page-hero h1 {
  white-space: nowrap;
}

.testimonial-author a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1180px) {
  .testimonials-section {
    grid-template-columns: minmax(470px, .95fr) minmax(0, 1.05fr);
  }

  .testimonials-title h2 {
    font-size: clamp(34px, 3.25vw, 58px);
    white-space: nowrap;
  }
}

@media (max-width: 1179px) {
  .testimonials-title h2 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  body[data-page="gallery"] .page-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 380px) {
  body[data-page="gallery"] .page-hero h1 {
    font-size: 30px;
  }
}

.testimonials-section {
  grid-template-columns: 1fr;
  gap: 34px;
}

.testimonials-title {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title h2 {
  white-space: normal;
}

.testimonials-list {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 620px) {
  .testimonials-list {
    grid-template-columns: 1fr;
  }
}

body[data-page="index"] .blog-preview {
  min-height: auto;
  grid-template-columns: minmax(220px, 320px) minmax(0, 460px);
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(38px, 5vw, 58px) 24px;
}

body[data-page="index"] .blog-left {
  max-width: 320px;
}

body[data-page="index"] .blog-left h2 {
  text-align: left;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: .015em;
}

body[data-page="index"] .blog-feature {
  max-width: 460px;
  padding: 22px;
  border: 1px solid rgba(244,240,236,.14);
  border-radius: 8px;
  background: rgba(244,240,236,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  text-align: left;
}

body[data-page="index"] .blog-feature .pill-image {
  width: 100%;
  height: 170px;
  margin: 0 0 18px;
  border-radius: 8px;
}

body[data-page="index"] .blog-feature h3 {
  max-width: 390px;
  margin-bottom: 10px;
  line-height: 1.18;
}

body[data-page="index"] .blog-feature p {
  max-width: 400px;
  margin: 0 0 18px;
}

body[data-page="index"] .blog-preview .light-btn {
  min-width: 0;
  width: fit-content;
}

body[data-page="who-we-are"] .who-hero h1 {
  display: block;
}

body[data-page="index"] .products-preview .category-card,
body[data-page="products"] .category-card {
  display: block;
  min-height: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

body[data-page="index"] .products-preview .category-card img,
body[data-page="index"] .products-preview .category-card .photo-placeholder,
body[data-page="products"] .category-card img,
body[data-page="products"] .category-card .photo-placeholder {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 0 0 18px;
  border-radius: 8px;
}

body[data-page="index"] .products-preview .category-card::before,
body[data-page="products"] .category-card::before {
  display: none;
}

body[data-page="index"] .products-preview .category-card h3,
body[data-page="products"] .category-card h3 {
  position: static;
  width: 100%;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
}

body[data-page="index"] .products-preview .category-card::after,
body[data-page="products"] .category-card::after {
  content: none;
  display: none;
}

body[data-page="products"] .product-hero .page-hero-bg,
body[data-page="shop"] .shop-hero .page-hero-bg,
body[data-page="gallery"] .gallery-hero .page-hero-bg,
body[data-page="contact"] .contact-hero .page-hero-bg,
body[data-page="who-we-are"] .page-hero-bg,
body[data-page="blog"] .blog-hero .page-hero-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: none !important;
  animation: none !important;
}

@media (max-width: 760px) {
  body[data-page="products"] .product-hero .page-hero-bg,
  body[data-page="shop"] .shop-hero .page-hero-bg,
  body[data-page="gallery"] .gallery-hero .page-hero-bg,
  body[data-page="contact"] .contact-hero .page-hero-bg,
  body[data-page="who-we-are"] .page-hero-bg,
  body[data-page="blog"] .blog-hero .page-hero-bg {
    background-size: contain;
  }
}

.reveal {
  transition-duration: .45s !important;
  filter: none !important;
}

body[data-page="index"] .blog-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1px minmax(0, 1fr);
  align-items: center;
  max-width: none;
  min-height: auto;
  margin: 0;
  padding: clamp(76px, 8vw, 118px) clamp(28px, 7vw, 92px);
  gap: clamp(24px, 3.6vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(183,154,125,.16), transparent 34%),
    linear-gradient(110deg, #17100b 0%, #2a1d14 48%, #1b120d 100%);
}

body[data-page="index"] .blog-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

body[data-page="index"] .offer-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(86px, 9vw, 130px) clamp(28px, 7vw, 92px);
  gap: clamp(42px, 7vw, 86px);
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(183,154,125,.14), transparent 32%),
    linear-gradient(110deg, #100d0a 0%, #251a12 58%, #120d09 100%);
  box-shadow: none;
}

body[data-page="index"] .offer-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

body[data-page="index"] .offer-content,
body[data-page="index"] .offer-grid {
  position: relative;
  z-index: 1;
}

body[data-page="index"] .offer-content {
  max-width: 310px;
  text-align: left;
}

body[data-page="index"] .offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #d4a96f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body[data-page="index"] .offer-kicker::after,
body[data-page="index"] .offer-content h2::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(212,169,111,.72);
}

body[data-page="index"] .offer-kicker::after {
  width: 74px;
}

body[data-page="index"] .offer-content h2 {
  margin: 0 0 28px;
  color: rgba(244,240,236,.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
  text-align: left;
}

body[data-page="index"] .offer-content h2::after {
  width: 74px;
  margin-top: 28px;
}

body[data-page="index"] .offer-content p,
body[data-page="index"] .offer-content .offer-text {
  max-width: 285px;
  margin: 0 0 30px;
  color: rgba(244,240,236,.68);
  font-size: 16px;
  line-height: 1.7;
}

body[data-page="index"] .offer-strip .light-btn {
  width: fit-content;
  min-width: 0;
  padding: 13px 24px;
  border-color: rgba(212,169,111,.78);
  color: #d4a96f;
  font-size: 11px;
  letter-spacing: .16em;
}

body[data-page="index"] .offer-strip .light-btn::after {
  content: ">";
  margin-left: 16px;
}

body[data-page="index"] .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="index"] .offer-grid a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid rgba(212,169,111,.34);
  border-radius: 8px;
  background: rgba(15,12,10,.36);
  color: rgba(244,240,236,.9);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

body[data-page="index"] .offer-grid a::after {
  content: none;
  display: none;
}

body[data-page="index"] .offer-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(212,169,111,.72);
  background: rgba(70,48,33,.42);
}

body[data-page="index"] .offer-grid span {
  min-width: 30px;
  padding-right: 14px;
  border-right: 1px solid rgba(212,169,111,.48);
  color: #d4a96f;
  font-size: 14px;
  font-family: Georgia, "Times New Roman", serif;
}

body[data-page="index"] .offer-grid strong {
  padding: 0 16px;
  color: rgba(244,240,236,.88);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body[data-page="index"] .blog-left,
body[data-page="index"] .home-blog-cards,
body[data-page="index"] .blog-divider {
  position: relative;
  z-index: 1;
}

body[data-page="index"] .blog-left {
  max-width: 280px;
  text-align: left;
}

body[data-page="index"] .blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #d4a96f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body[data-page="index"] .blog-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(212,169,111,.72);
}

body[data-page="index"] .blog-left h2 {
  margin: 0 0 24px;
  color: rgba(244,240,236,.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
  text-align: left;
}

body[data-page="index"] .blog-left p {
  max-width: 235px;
  margin: 0 0 30px;
  color: rgba(244,240,236,.68);
  font-size: 15px;
  line-height: 1.7;
}

body[data-page="index"] .blog-preview .light-btn {
  width: fit-content;
  min-width: 0;
  padding: 13px 24px;
  border-color: rgba(212,169,111,.78);
  color: #d4a96f;
  font-size: 11px;
  letter-spacing: .16em;
}

body[data-page="index"] .blog-preview .light-btn::after {
  content: ">";
  margin-left: 16px;
}

body[data-page="index"] .blog-divider {
  width: 1px;
  height: min(320px, 44vw);
  background: linear-gradient(180deg, transparent, rgba(212,169,111,.82), transparent);
}

body[data-page="index"] .home-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

body[data-page="index"] .home-blog-card {
  overflow: hidden;
  border: 1px solid rgba(244,240,236,.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(63,44,31,.9), rgba(43,29,20,.96));
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}

body[data-page="index"] .home-blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

body[data-page="index"] .home-blog-card-body {
  min-height: 148px;
  padding: 24px 24px 22px;
}

body[data-page="index"] .home-blog-card-body span {
  display: block;
  margin-bottom: 14px;
  color: #d4a96f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body[data-page="index"] .home-blog-card-body h3 {
  margin: 0 0 28px;
  color: rgba(244,240,236,.95);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

body[data-page="index"] .home-blog-card-body a {
  color: #d4a96f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body[data-page="index"] .home-blog-card-body a::after {
  content: ">";
  margin-left: 14px;
}

@media (max-width: 760px) {
  body[data-page="index"] .blog-preview {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  body[data-page="index"] .blog-left,
  body[data-page="index"] .blog-left h2 {
    text-align: center;
  }

  body[data-page="index"] .blog-left {
    max-width: 420px;
    margin: 0 auto;
  }

  body[data-page="index"] .blog-kicker,
  body[data-page="index"] .blog-preview .light-btn {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="index"] .blog-left p {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="index"] .blog-divider {
    width: 100%;
    height: 1px;
  }

  body[data-page="index"] .home-blog-cards {
    grid-template-columns: 1fr;
  }

  body[data-page="index"] .offer-strip {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  body[data-page="index"] .offer-content,
  body[data-page="index"] .offer-content h2 {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body[data-page="index"] .offer-kicker,
  body[data-page="index"] .offer-strip .light-btn,
  body[data-page="index"] .offer-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="index"] .offer-content p {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="index"] .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* One consistent mobile/tablet structure across phones and small viewports. */
@media (max-width: 980px) {
  .split-section,
  .contact-layout,
  .showroom-section,
  .why-choose,
  .vision-section,
  .blog-text-section {
    grid-template-columns: 1fr !important;
  }

  body[data-page="index"] .offer-strip,
  body[data-page="index"] .blog-preview,
  body[data-page="index"] .testimonials-section {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body[data-page="index"] .offer-content,
  body[data-page="index"] .offer-content h2,
  body[data-page="index"] .blog-left,
  body[data-page="index"] .blog-left h2,
  body[data-page="index"] .testimonials-title,
  body[data-page="index"] .testimonials-title h2 {
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  body[data-page="index"] .offer-content p,
  body[data-page="index"] .blog-left p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body[data-page="index"] .offer-kicker,
  body[data-page="index"] .blog-kicker,
  body[data-page="index"] .offer-strip .light-btn,
  body[data-page="index"] .blog-preview .light-btn,
  body[data-page="index"] .offer-content h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body[data-page="index"] .offer-grid,
  body[data-page="index"] .home-blog-cards,
  body[data-page="index"] .testimonials-list {
    grid-template-columns: 1fr !important;
  }

  body[data-page="index"] .blog-divider {
    width: 100% !important;
    height: 1px !important;
  }

  body[data-page="index"] .products-preview .category-grid,
  body[data-page="products"] .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 420px !important;
  }

  .footer {
    padding: 32px 20px 22px !important;
  }

  .footer-inner {
    width: 100% !important;
    max-width: 360px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .footer-logo,
  .footer-social-block,
  .footer-lang,
  .footer-socials {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  .footer-contact {
    align-items: center !important;
    text-align: center !important;
  }
}

/* Single phone layout: keep all mobile widths on the same structure. */
@media (max-width: 760px) {
  .hero,
  .page-hero {
    min-height: 78svh !important;
  }

  .hero h1,
  .page-hero h1,
  .gallery-hero h1,
  .blog-hero h1,
  .product-hero h1,
  .contact-hero h1,
  .shop-hero-content h1 {
    max-width: min(390px, calc(100vw - 40px)) !important;
    font-size: 42px !important;
    line-height: 1.08 !important;
    letter-spacing: .06em !important;
    white-space: normal !important;
  }

  .split-section,
  .vision-section,
  .why-choose,
  .contact-layout,
  .showroom-section,
  .blog-text-section,
  body[data-page="index"] .offer-strip,
  body[data-page="index"] .blog-preview,
  body[data-page="index"] .testimonials-section,
  body[data-page="products"] .product-catalog,
  body[data-page="products"] .products-to-shop,
  body[data-page="gallery"] .gallery-section,
  body[data-page="blog"] .blog-section,
  body[data-page="shop"] .shop-shell {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .split-section,
  .vision-section,
  .why-choose,
  .contact-layout,
  .showroom-section,
  .blog-text-section,
  body[data-page="index"] .offer-strip,
  body[data-page="index"] .blog-preview,
  body[data-page="index"] .testimonials-section {
    grid-template-columns: 1fr !important;
  }

  .category-grid,
  .category-grid.large,
  .product-grid,
  .modern-shop-grid,
  .gallery-grid,
  .blog-cards,
  .home-blog-cards,
  .testimonials-list,
  body[data-page="index"] .offer-grid {
    width: 100% !important;
    max-width: 390px !important;
    grid-template-columns: 1fr !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .category-card,
  body[data-page="products"] .category-card,
  body[data-page="index"] .products-preview .category-card,
  body[data-page="shop"] .product-card {
    width: 100% !important;
    max-width: 390px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .catalog-cta-card {
    min-height: 260px !important;
    align-items: end !important;
    max-width: 390px !important;
    padding: 26px !important;
    background-size: auto 100%, auto 86%, auto !important;
    background-position: center bottom, right bottom, center !important;
  }

  .catalog-cta-card p {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 18px !important;
  }

  .catalog-cta-card .outline-btn {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    justify-self: end !important;
    transform: none !important;
  }

  .footer,
  .footer-inner {
    max-width: none !important;
    text-align: center !important;
  }
}

body[data-page="products"] .product-catalog h2 {
  white-space: nowrap;
}

@media (max-width: 760px) {
  body[data-page="products"] .product-catalog h2 {
    max-width: calc(100vw - 40px) !important;
    font-size: clamp(27px, 7.9vw, 34px) !important;
    letter-spacing: .02em !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}

/* Final phone polish: same composition for every mobile width. */
@media (max-width: 760px) {
  html,
  body {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header {
    height: 70px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .brand,
  .brand img {
    min-width: 0 !important;
  }

  .brand img {
    width: 132px !important;
    max-height: 46px !important;
  }

  .header-actions {
    margin-left: auto !important;
    gap: 6px !important;
  }

  .lang-switch {
    transform: scale(.9) !important;
    transform-origin: right center !important;
  }

  .menu-toggle {
    display: block !important;
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
  }

  .main-nav {
    position: fixed !important;
    inset: 72px 14px auto 14px !important;
    width: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 14px !important;
    border-radius: 14px !important;
    background: rgba(0,0,0,.94) !important;
    z-index: 220 !important;
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .main-nav a {
    width: 100% !important;
    padding: 13px 12px !important;
    text-align: center !important;
    font-size: 11px !important;
  }

  .hero,
  .page-hero {
    min-height: 76svh !important;
    padding: 86px 20px 36px !important;
  }

  .page-hero {
    min-height: 430px !important;
  }

  .page-hero-bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transform: none !important;
    animation: none !important;
  }

  .home-hero .hero-bg {
    background-size: cover !important;
    background-position: center !important;
    transform: none !important;
    animation: none !important;
  }

  body[data-page="products"] .product-hero .page-hero-bg,
  body[data-page="shop"] .shop-hero .page-hero-bg,
  body[data-page="gallery"] .gallery-hero .page-hero-bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  .hero-content,
  .shop-hero-content,
  .page-hero h1 {
    max-width: 360px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .script-title {
    font-size: 26px !important;
  }

  .hero h1,
  .page-hero h1,
  .shop-hero-content h1 {
    font-size: 37px !important;
    line-height: 1.08 !important;
    letter-spacing: .05em !important;
  }

  .split-section,
  .vision-section,
  .why-choose,
  .contact-layout,
  .showroom-section {
    gap: 28px !important;
    padding-top: 54px !important;
    padding-bottom: 64px !important;
  }

  .split-image,
  .vision-image,
  .showroom-image {
    width: 100% !important;
    max-width: 390px !important;
    height: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .split-text,
  .vision-copy,
  .why-copy,
  .contact-copy,
  .contact-form-panel,
  .showroom-maps {
    width: 100% !important;
    max-width: 390px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  body[data-page="index"] .offer-strip,
  body[data-page="index"] .blog-preview,
  body[data-page="index"] .testimonials-section,
  body[data-page="products"] .product-catalog,
  body[data-page="products"] .products-to-shop,
  body[data-page="gallery"] .gallery-section,
  body[data-page="shop"] .shop-shell {
    padding-top: 54px !important;
    padding-bottom: 64px !important;
  }

  body[data-page="index"] .offer-grid a {
    min-height: 64px !important;
    padding: 15px 16px !important;
  }

  .catalog-cta-card {
    width: 100% !important;
    max-width: 390px !important;
    min-height: 280px !important;
    padding: 24px !important;
    background-size: auto 100%, auto 82%, auto !important;
    background-position: center bottom, right bottom, center !important;
  }

  .catalog-cta-card p {
    position: absolute !important;
    left: 22px !important;
    top: 50% !important;
    width: 48% !important;
    max-width: 170px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  .catalog-cta-card .outline-btn {
    position: absolute !important;
    right: 18px !important;
    top: 18px !important;
    min-width: 0 !important;
    padding: 12px 18px !important;
    font-size: 10px !important;
    transform: none !important;
  }

  .footer {
    padding: 34px 20px 22px !important;
  }

  .footer-inner {
    width: 100% !important;
    max-width: 390px !important;
    gap: 20px !important;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: 1px solid rgba(220, 186, 122, .5) !important;
    border-radius: 50% !important;
    background: rgba(18, 14, 10, .72) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.24) !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 17px !important;
    min-width: 17px !important;
    height: 1.5px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: rgba(244,240,236,.9) !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  body[data-page="contact"] .showroom-section {
    padding-bottom: 72px !important;
    overflow: visible !important;
  }

  body[data-page="contact"] .showroom-image {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body[data-page="contact"] .showroom-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 360px !important;
    object-fit: contain !important;
    transform: none !important;
  }

  body[data-page="contact"] .footer {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 760px) {
  body[data-page="products"] .category-grid.large,
  body[data-page="shop"] .modern-shop-grid {
    width: 100% !important;
    max-width: 390px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body[data-page="products"] .category-card,
  body[data-page="shop"] .product-card {
    width: 100% !important;
    max-width: none !important;
  }

  body[data-page="products"] .category-card img,
  body[data-page="products"] .category-card .photo-placeholder {
    margin-bottom: 7px !important;
    border-radius: 6px !important;
  }

  body[data-page="products"] .category-card h3 {
    font-size: 14px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
  }

  body[data-page="shop"] .product-card {
    border-radius: 8px !important;
  }

  body[data-page="shop"] .product-card img,
  body[data-page="shop"] .product-card .photo-placeholder {
    aspect-ratio: 1 / 1 !important;
  }

  body[data-page="shop"] .stock-badge,
  body[data-page="shop"] .product-description {
    display: none !important;
  }

  body[data-page="shop"] .product-card-body {
    padding: 10px !important;
    gap: 6px !important;
  }

  body[data-page="shop"] .product-card h3 {
    min-height: 2.3em !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
  }

  body[data-page="shop"] .product-meta,
  body[data-page="shop"] .product-price-line {
    margin: 0 !important;
    gap: 4px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  body[data-page="shop"] .product-card .outline-btn {
    min-height: 32px !important;
    padding: 7px 6px !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    letter-spacing: .04em !important;
  }
}

body[data-page="blog"] .blog-hero .page-hero-bg {
  background-image: url("../images/blogs_formatPC.png") !important;
  background-size: cover !important;
  background-position: center !important;
}

@media (min-width: 761px) {
  body[data-page] .hero,
  body[data-page] .page-hero {
    min-height: calc(100vh - 82px) !important;
    margin-top: 82px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-page] .hero-bg,
  body[data-page] .page-hero-bg {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="blog"] .blog-hero {
    min-height: calc(100vh - 82px) !important;
    margin-top: 82px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-page="blog"] .blog-cards {
    padding-top: 32px !important;
  }
}

@media (max-width: 760px) {
  body[data-page] .hero-bg,
  body[data-page] .page-hero-bg {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="blog"] .blog-hero .page-hero-bg {
    background-image: url("../images/blogs_format tlf.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="gallery"] .gallery-hero .page-hero-bg {
    background-image: url("../images/galleryofprojects.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="contact"] .contact-hero .page-hero-bg {
    background-image: url("../images/kontakt_telefon.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="who-we-are"] .who-hero .page-hero-bg {
    background-image: url("../images/whoweare_tlf.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="products"] .product-hero .page-hero-bg {
    background-image: url("../images/products_tlf.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  body[data-page="index"] .home-hero .hero-bg {
    background-image: url("../images/home_telefon.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .hero h1,
  .page-hero h1,
  .gallery-hero h1,
  .blog-hero h1,
  .product-hero h1,
  .contact-hero h1,
  .shop-hero-content h1 {
    font-size: 37px !important;
  }

  .script-title {
    font-size: 26px !important;
  }
}

/* Final mobile polish: keep copy compact so imagery stays visible on phones. */
@media (max-width: 760px) {
  .hero,
  .page-hero {
    min-height: 66svh !important;
    padding: 82px 18px 34px !important;
  }

  body[data-page="index"] .home-hero {
    min-height: 72svh !important;
    align-items: flex-end !important;
  }

  .home-hero .hero-content {
    width: min(84vw, 310px) !important;
    max-width: 310px !important;
    margin: 0 auto 24px !important;
    padding: 14px 16px 16px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: rgba(0, 0, 0, .22) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .script-title {
    margin-bottom: 5px !important;
    font-size: 19px !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
  }

  .hero h1,
  .page-hero h1,
  .gallery-hero h1,
  .blog-hero h1,
  .product-hero h1,
  .contact-hero h1,
  .shop-hero-content h1 {
    max-width: calc(100vw - 44px) !important;
    font-size: 30px !important;
    line-height: 1.08 !important;
    letter-spacing: .035em !important;
    text-shadow: 0 8px 22px rgba(0,0,0,.58) !important;
  }

  .home-hero h1 {
    font-size: 34px !important;
  }

  .outline-btn,
  .home-hero .outline-btn,
  .blog-preview .light-btn,
  .offer-strip .outline-btn {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin-top: 14px !important;
    padding: 11px 18px !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    letter-spacing: .1em !important;
  }

  .split-text h2,
  .offer-content h2,
  .products-preview h2,
  .product-catalog h2,
  .product-list-section h2,
  .blog-left h2,
  .testimonials-title h2,
  .vision-copy h2,
  .contact-section h2,
  .showroom-maps h2,
  .blog-text-section h2,
  .shop-results-head h2 {
    font-size: clamp(24px, 7vw, 30px) !important;
    line-height: 1.18 !important;
    letter-spacing: .035em !important;
  }

  .split-text p,
  .offer-content p,
  .blog-left p,
  .blog-feature p,
  .vision-copy p,
  .why-choose p,
  .contact-info a,
  .contact-info p,
  .blog-text-section p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    letter-spacing: .025em !important;
  }

  body[data-page="who-we-are"] .why-choose {
    display: grid !important;
    align-content: start !important;
    align-items: start !important;
    min-height: 0 !important;
    padding-top: 34px !important;
    padding-bottom: 42px !important;
  }

  body[data-page="who-we-are"] .vision-section {
    min-height: 0 !important;
    padding-bottom: 22px !important;
  }

  body[data-page="who-we-are"] .why-copy {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    margin-top: 0 !important;
    padding: 24px 18px 22px !important;
    transform: none !important;
  }

  body[data-page="contact"] .showroom-map-card,
  body[data-page="contact"] .showroom-map-visual,
  body[data-page="contact"] .showroom-location-list {
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body[data-page="contact"] .showroom-map-visual {
    height: 300px !important;
  }

  body[data-page="contact"] .showroom-location-list {
    justify-items: center !important;
    gap: 10px !important;
  }

  body[data-page="contact"] .showroom-location-list a {
    width: 100% !important;
    padding: 14px 16px !important;
    text-align: center !important;
  }

  body[data-page="contact"] .showroom-maps h3 {
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: clamp(17px, 4.8vw, 21px) !important;
    font-style: normal !important;
    font-weight: 650 !important;
    line-height: 1.28 !important;
    letter-spacing: .01em !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body[data-page="contact"] .showroom-location-list span {
    font-size: 9px !important;
    letter-spacing: .11em !important;
  }

  body[data-page="products"] .product-catalog h2 {
    font-size: clamp(23px, 6.8vw, 29px) !important;
    letter-spacing: .015em !important;
  }

  body[data-page="products"] .products-to-shop {
    padding-top: 32px !important;
    padding-bottom: 54px !important;
  }

  .catalog-cta-card {
    min-height: 238px !important;
    padding: 18px !important;
    border-radius: 18px !important;
    background:
      linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.34) 52%, rgba(0,0,0,.04)),
      url("../images/elite_person_blue_uniform_fixed_logo.webp") right bottom / auto 88% no-repeat,
      #000 !important;
  }

  .catalog-cta-card p {
    position: absolute !important;
    left: 18px !important;
    right: auto !important;
    top: auto !important;
    bottom: 22px !important;
    width: 42% !important;
    max-width: 145px !important;
    transform: none !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.28 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
  }

  .catalog-cta-card .outline-btn {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: 166px !important;
    padding: 10px 15px !important;
    font-size: 9px !important;
    letter-spacing: .11em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  .home-hero .hero-content {
    width: min(86vw, 286px) !important;
    padding-inline: 14px !important;
  }

  .home-hero h1 {
    font-size: 31px !important;
  }

  .catalog-cta-card p {
    max-width: 130px !important;
    font-size: 12px !important;
  }

  .catalog-cta-card .outline-btn {
    max-width: 146px !important;
    padding-inline: 12px !important;
    font-size: 8.5px !important;
  }
}

/* Home mobile hero: keep the headline and CTA inside the first phone screen. */
@media (max-width: 760px) {
  body[data-page="index"] .home-hero {
    min-height: calc(100svh - 70px) !important;
    padding: 70px 18px 26px !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }

  body[data-page="index"] .home-hero .hero-bg {
    background-position: center top !important;
  }

  body[data-page="index"] .home-hero .hero-content {
    --home-copy-offset: 0px !important;
    transform: none !important;
    animation: none !important;
    width: min(82vw, 300px) !important;
    max-width: 300px !important;
    margin: 0 auto clamp(18px, 4svh, 34px) !important;
    padding: 12px 14px 14px !important;
    background: rgba(0,0,0,.2) !important;
  }

  body[data-page="index"] .home-hero .script-title {
    margin-bottom: 4px !important;
    font-size: 18px !important;
  }

  body[data-page="index"] .home-hero h1 {
    font-size: clamp(29px, 9vw, 34px) !important;
    line-height: 1.02 !important;
  }

  body[data-page="index"] .home-hero .outline-btn {
    margin-top: 12px !important;
    padding: 10px 17px !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 380px) {
  body[data-page="index"] .home-hero .hero-content {
    width: min(84vw, 280px) !important;
    margin-bottom: 18px !important;
  }

  body[data-page="index"] .home-hero h1 {
    font-size: 29px !important;
  }
}
