:root {
  --red: #e21d2d;
  --red-dark: #b9111f;
  --red-soft: #fff1f2;
  --ink: #111316;
  --ink-2: #1c2025;
  --charcoal: #202328;
  --muted: #676d75;
  --line: #e6e7e9;
  --paper: #ffffff;
  --soft: #f5f6f7;
  --green: #1eaa59;
  --ozma-green: #43ff17;
  --container: 1200px;
  --shadow-sm: 0 10px 30px rgba(16, 19, 24, 0.07);
  --shadow-lg: 0 28px 80px rgba(16, 19, 24, 0.17);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

body > header,
body > main,
body > footer,
main > section {
  max-width: 100%;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(226, 29, 45, 0.38);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 44px 0 34px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 84px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 22, 25, 0.07);
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 74px;
  box-shadow: 0 12px 35px rgba(15, 17, 20, 0.08);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark b {
  position: relative;
  z-index: 2;
  margin-top: -3px;
  color: #0f1114;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.17em;
  transform: skewX(-7deg);
}

.brand-mark i {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 11px;
  left: 4px;
  height: 7px;
  background: var(--red);
  clip-path: polygon(4% 70%, 95% 0, 65% 100%, 0 100%);
  transform: rotate(-8deg);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 31px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 30px 0 26px;
  color: #31353a;
  font-size: 0.91rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-products,
.mobile-nav-quote {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  height: 35px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  padding: 3px 5px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch span {
  width: 1px;
  height: 14px;
  background: #d5d7da;
}

.language-switch button {
  min-width: 27px;
  height: 27px;
  padding: 0 5px;
  cursor: pointer;
  color: #777d84;
  background: transparent;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-switch button:hover {
  color: var(--red);
}

.language-switch button.is-active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 4px 12px rgba(226, 29, 45, 0.24);
}

.icon-button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  color: var(--red);
  background: var(--soft);
}

.icon-button svg,
.button svg,
.trust-item svg,
.service-icon svg,
.contact-icon svg,
.social-links svg,
.floating-whatsapp svg,
.search-field svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ed2637, var(--red));
  box-shadow: 0 12px 26px rgba(226, 29, 45, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 17px 33px rgba(226, 29, 45, 0.29);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-color: #d9dadd;
  box-shadow: 0 8px 20px rgba(18, 20, 23, 0.06);
}

.button-light:hover {
  color: var(--red);
  border-color: var(--red);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: var(--red);
}

.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: #cfd1d4;
}

.button-outline:hover {
  color: var(--red);
  border-color: var(--red);
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(30, 170, 89, 0.22);
}

.button-whatsapp:hover {
  background: #168c49;
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px 9px;
  cursor: pointer;
  background: transparent;
  border-radius: 7px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  height: 590px;
  overflow: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background: #fff;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  visibility: visible;
  z-index: 2;
  opacity: 1;
}

.hero-layout {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 46px 42px 65px max(24px, calc((100vw - var(--container)) / 2));
}

.eyebrow,
.section-kicker,
.modal-kicker {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 570px;
  margin: 0;
  color: #0e1012;
  font-size: clamp(2.8rem, 4.1vw, 4.55rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-copy h1 span,
.hero-copy h2 span,
.project-copy h2 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: #4e545b;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-visual {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #ddd;
  clip-path: polygon(5.5% 0, 100% 0, 100% 91%, 94% 100%, 0 100%, 0 9%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform 5.2s ease;
}

.hero-slide.is-active .hero-visual img {
  transform: scale(1.035);
}

.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.23), transparent 22%), linear-gradient(0deg, rgba(10, 11, 14, 0.12), transparent 34%);
}

.location-pill {
  position: absolute;
  z-index: 3;
  top: 54px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px 15px 17px;
  color: #fff;
  background: rgba(18, 20, 24, 0.9);
  border-left: 3px solid var(--red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.location-pill svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.location-pill .mini-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-sizing: content-box;
}

.hero-slide.is-active .hero-copy > * {
  animation: rise-in 0.65s both var(--ease);
}

.hero-slide.is-active .hero-copy > :nth-child(2) {
  animation-delay: 0.08s;
}

.hero-slide.is-active .hero-copy > :nth-child(3) {
  animation-delay: 0.15s;
}

.hero-slide.is-active .hero-copy > :nth-child(4) {
  animation-delay: 0.22s;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-controls {
  position: absolute;
  z-index: 10;
  right: max(24px, calc((100vw - var(--container)) / 2 + 25px));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 5px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: #c1c4c8;
  border-radius: 50%;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 24px;
  background: var(--red);
  border-radius: 99px;
}

.hero-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover {
  color: var(--red);
  background: var(--soft);
}

.hero-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-strip {
  position: relative;
  z-index: 11;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(20, 22, 26, 0.045);
}

.trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  justify-content: flex-start;
}

.trust-item:last-child {
  justify-content: flex-end;
  border-right: 0;
}

.trust-item svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--red);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  display: flex;
  gap: 17px;
  padding: 27px 28px;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
}

.service-icon svg {
  width: 41px;
  height: 41px;
  stroke-width: 1.45;
}

.service-card h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 31px;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading h2::after {
  position: absolute;
  top: 55%;
  left: calc(100% + 22px);
  width: 62px;
  height: 3px;
  content: "";
  background: var(--red);
}

.section-kicker {
  margin-bottom: 10px;
  letter-spacing: 0.18em;
}

.section-kicker.light {
  color: #ff6b77;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.87rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.categories {
  padding-top: 74px;
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-width: 0;
  height: 255px;
  display: block;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: var(--ink);
  border: 0;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(15, 18, 21, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.category-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.category-card:hover img {
  transform: scale(1.075);
}

.category-overlay,
.featured-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 10, 13, 0.9) 0%, rgba(9, 10, 13, 0.08) 67%, transparent 100%);
}

.category-label {
  position: absolute;
  z-index: 2;
  right: 53px;
  bottom: 17px;
  left: 17px;
  display: grid;
  color: #fff;
  line-height: 1.2;
}

.category-label b {
  font-size: 0.97rem;
}

.category-label small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.circle-arrow {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 17px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 1rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.category-card:hover .circle-arrow,
.featured-card:hover .circle-arrow {
  color: var(--red);
  background: #fff;
  transform: rotate(-35deg);
}

.featured {
  padding-top: 18px;
  background: #fff;
}

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

.featured-card {
  position: relative;
  height: 330px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.07);
}

.featured-shade {
  background: linear-gradient(0deg, rgba(7, 8, 10, 0.91) 0%, rgba(7, 8, 10, 0.08) 70%);
}

.featured-copy {
  position: absolute;
  z-index: 2;
  right: 70px;
  bottom: 24px;
  left: 24px;
  display: grid;
  color: #fff;
  line-height: 1.15;
}

.featured-copy small {
  margin-bottom: 4px;
  color: #ff7b85;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-copy b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.featured-copy em {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.82rem;
  font-style: normal;
}

.circle-arrow.large {
  right: 22px;
  bottom: 23px;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
}

.product-section {
  position: relative;
  background: var(--soft);
}

.product-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red));
}

.product-heading {
  align-items: center;
}

.product-heading > div:first-child > p:last-child {
  max-width: 590px;
  margin: 15px 0 0;
  color: var(--muted);
}

.product-count {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 17px 9px 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.product-count strong {
  color: var(--red);
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.product-count span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.catalog-section {
  border-top: 1px solid rgba(18, 20, 24, 0.07);
}

.seating-section {
  background: #fff;
}

.garden-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meeting-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.meeting-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red));
}

.meeting-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.68fr);
  overflow: hidden;
  background: #111316;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.meeting-feature-media {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #d9d5cf;
}

.meeting-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.meeting-feature:hover .meeting-feature-media img {
  transform: scale(1.025);
}

.meeting-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 29, 45, 0.2), transparent 38%),
    linear-gradient(145deg, #181b1f, #0f1114);
}

.meeting-feature-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.meeting-feature-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.meeting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}

.meeting-actions .button-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.meeting-actions .button-outline:hover {
  color: #fff;
  border-color: #fff;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e8ea;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(15, 17, 20, 0.045);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  border-color: rgba(226, 29, 45, 0.22);
  box-shadow: 0 24px 55px rgba(15, 17, 20, 0.12);
  transform: translateY(-8px);
}

.product-image-button {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  display: block;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #ececed;
}

.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-image-button img {
  transform: scale(1.045);
}

.product-tag {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(17, 19, 22, 0.84);
  border-radius: 4px;
  backdrop-filter: blur(7px);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-zoom {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.product-card:hover .product-zoom {
  color: #fff;
  background: var(--red);
}

.product-body {
  padding: 19px 18px 17px;
}

.product-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.77rem;
}

.product-meta span {
  width: 4px;
  height: 4px;
  display: inline-block;
  background: var(--red);
  border-radius: 50%;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.product-detail-button,
.product-wa-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #dcdde0;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-detail-button:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.product-wa-link {
  width: 43px;
  padding: 0;
  color: var(--green);
}

.product-wa-link:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.product-wa-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.noscript-note {
  padding: 20px;
  background: #fff3cd;
  border-radius: 8px;
}

.project-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(0, 43%);
  color: #fff;
  background: var(--ink);
}

.project-image {
  min-height: 650px;
  overflow: hidden;
}

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

.project-section:hover .project-image img {
  transform: scale(1.025);
}

.project-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px clamp(36px, 6vw, 92px);
  overflow: hidden;
}

.project-copy::before {
  position: absolute;
  top: -150px;
  right: -170px;
  width: 390px;
  height: 390px;
  content: "";
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.project-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 1;
}

.project-copy > p:not(.section-kicker) {
  max-width: 530px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.72;
}

.project-list {
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 29px 0 31px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 10px 13px 0;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.project-list li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.project-list li:nth-child(even) {
  padding-left: 15px;
}

.project-list span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
}

.project-copy .button {
  align-self: flex-start;
}

.brand-story {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.story-copy > p:not(.section-kicker) {
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.phone-link {
  display: grid;
  line-height: 1.2;
}

.phone-link small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-link strong {
  font-size: 1.02rem;
}

.story-visual {
  position: relative;
  min-height: 535px;
}

.story-visual::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: 58%;
  height: 62%;
  content: "";
  background: var(--red);
}

.story-visual img {
  position: absolute;
  z-index: 1;
  inset: 22px 0 0 24px;
  width: calc(100% - 24px);
  height: calc(100% - 22px);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.story-stat {
  position: absolute;
  z-index: 3;
  bottom: -22px;
  left: -35px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 27px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.story-stat strong {
  color: var(--red);
  font-size: 3.3rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.story-stat span {
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
}

.story-badge {
  position: absolute;
  z-index: 3;
  top: 52px;
  right: -25px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 800;
}

.story-badge span {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.contact-section {
  padding: 80px 0;
  color: #fff;
  background: linear-gradient(125deg, #15181c 0%, #252930 72%, #181b1f 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 840px);
  align-items: center;
  justify-content: start;
}

.contact-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 630px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.contact-copy {
  width: 100%;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.contact-card {
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-top: 4px solid var(--red);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.26);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
}

.contact-row div {
  display: grid;
  gap: 4px;
}

.contact-row small {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.55;
}

.contact-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 19px;
}

.contact-card-actions a,
.contact-card-actions button {
  padding: 0;
  cursor: pointer;
  color: var(--red);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #0f1114;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.85fr 1.05fr;
  gap: 52px;
  padding-top: 67px;
  padding-bottom: 58px;
}

.brand-inverse .brand-mark b,
.brand-inverse .brand-copy strong {
  color: #fff;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 0.89rem;
}

.footer-links a,
.footer-links button,
.footer-contact > a,
.footer-contact address {
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.5;
  text-align: left;
  transition: color 0.2s ease;
}

.footer-links button {
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-contact > a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  color: #ff6572 !important;
  font-weight: 800 !important;
}

.footer-map-link span {
  transition: transform 0.2s ease;
}

.footer-map-link:hover span {
  transform: translateX(4px);
}

.footer-social {
  margin-top: 14px;
}

.footer-social-title {
  position: relative;
  margin: 0;
  padding-bottom: 9px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-social-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--red);
}

.social-links a {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.71rem;
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal > span:last-child {
  text-transform: uppercase;
}

.ozma-credit {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.015em;
}

.ozma-credit a {
  color: var(--ozma-green);
  font-weight: 900;
  text-shadow: 0 0 15px rgba(67, 255, 23, 0.28);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ozma-credit a:hover {
  color: #8bff70;
  text-shadow: 0 0 20px rgba(67, 255, 23, 0.55);
}

.credit-en {
  display: none;
}

html[data-language="en"] .credit-tr {
  display: none;
}

html[data-language="en"] .credit-en {
  display: inline;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  height: 53px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 13px 35px rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
  font-weight: 850;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.floating-whatsapp:hover {
  background: #168c49;
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
}

.modal {
  width: min(1060px, calc(100% - 40px));
  max-height: min(850px, calc(100vh - 40px));
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 13px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
}

.modal::backdrop {
  background: rgba(9, 11, 14, 0.78);
  backdrop-filter: blur(8px);
}

.modal[open] {
  animation: modal-in 0.36s both var(--ease);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 22, 0.1);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 1.7rem;
  line-height: 1;
}

.product-dialog-layout {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
}

.product-dialog-media {
  min-height: 590px;
  overflow: hidden;
  background: #ececed;
}

.product-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 44px 42px;
}

.product-dialog-copy h2,
.quote-dialog-head h2,
.search-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.3vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.product-dialog-copy > p:not(.modal-kicker) {
  margin: 17px 0 0;
  color: var(--muted);
}

.detail-block {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.detail-block h3 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-block li {
  position: relative;
  padding-left: 20px;
  color: #444a51;
  font-size: 0.88rem;
  line-height: 1.35;
}

.detail-block li::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.modal-note {
  margin-top: 25px;
  padding: 12px 14px;
  color: #3e464d;
  background: var(--soft);
  border-radius: 6px;
  font-size: 0.73rem;
  font-weight: 700;
}

.modal-note span {
  margin-right: 5px;
  color: var(--green);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.quote-modal,
.search-modal {
  width: min(650px, calc(100% - 40px));
  padding: 47px;
}

.quote-dialog-head > p:not(.modal-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 28px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #34383d;
  font-size: 0.76rem;
  font-weight: 800;
}

.quote-form label:nth-child(3),
.quote-form label:nth-child(4),
.quote-form .button,
.quote-form > small {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.search-field input {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d9dadd;
  border-radius: 7px;
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.search-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(226, 29, 45, 0.08);
}

.quote-form > small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  text-align: center;
}

.search-modal {
  min-height: 410px;
}

.search-field {
  position: relative;
  display: block;
  margin-top: 25px;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-field input {
  height: 53px;
  padding-left: 46px;
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.search-result {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px;
  cursor: pointer;
  text-align: left;
  background: var(--soft);
  border-radius: 7px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-result:hover {
  background: var(--red-soft);
  transform: translateX(3px);
}

.search-result img {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 5px;
}

.search-result span {
  display: grid;
  line-height: 1.2;
}

.search-result b {
  font-size: 0.89rem;
}

.search-result small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.69rem;
}

.search-result > i {
  padding-right: 9px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.empty-results {
  padding: 28px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 3000;
  bottom: 25px;
  left: 50%;
  max-width: calc(100% - 40px);
  padding: 12px 18px;
  visibility: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (max-width: 1180px) {
  .nav-shell { gap: 18px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 0.84rem; }
  .brand-copy strong { font-size: 0.93rem; }
  .brand-copy small { font-size: 0.61rem; }
  .nav-actions .button { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card:nth-child(4), .category-card:nth-child(5) { height: 235px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .garden-product-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { padding-inline: 17px; }
  .project-section { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .site-header, .site-header.is-scrolled { height: 74px; }
  .nav-shell { justify-content: space-between; }
  .menu-toggle { display: block; order: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 1001;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 25px 30px 45px;
    visibility: hidden;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    box-shadow: -25px 30px 55px rgba(0, 0, 0, 0.14);
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: none;
    transition: clip-path 0.35s var(--ease), opacity 0.25s ease, visibility 0.35s ease;
  }
  .main-nav::before {
    display: block;
    margin-bottom: 17px;
    color: var(--red);
    content: "MENÜ";
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.2em;
  }
  html[data-language="en"] .main-nav::before { content: "MENU"; }
  .menu-open .main-nav { visibility: visible; opacity: 1; clip-path: inset(0); transform: none; }
  body:not(.menu-open) .main-nav { pointer-events: none; }
  .menu-open::before {
    position: fixed;
    z-index: 999;
    inset: 74px 0 0;
    content: "";
    background: rgba(8, 10, 13, 0.52);
    backdrop-filter: blur(3px);
  }
  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .main-nav a::after { right: auto; bottom: -1px; width: 38px; }
  .mobile-nav-products {
    display: grid;
    margin: 13px 0;
    padding: 16px 18px;
    background: #f5f6f7;
    border-left: 3px solid var(--red);
    border-radius: 0 8px 8px 0;
  }
  .mobile-nav-products p {
    margin: 0 0 6px;
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .mobile-nav-products a,
  .mobile-nav-products button {
    position: relative;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    color: #25292e;
    background: transparent;
    border-bottom: 1px solid #dedfe1;
    font-size: 0.89rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
  }
  .mobile-nav-products a:last-of-type,
  .mobile-nav-products button:last-child { border-bottom: 0; }
  .mobile-nav-products a::after { display: none; }
  .mobile-nav-quote {
    width: 100%;
    display: inline-flex;
    margin-top: 18px;
    color: #fff;
  }
  .nav-actions { margin-left: auto; }
  .hero { height: 610px; }
  .hero-layout { grid-template-columns: 48% 52%; }
  .hero-copy { padding-right: 30px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(2.5rem, 5vw, 3.7rem); }
  .hero-lead { font-size: 0.97rem; }
  .hero-actions .button { padding-inline: 16px; font-size: 0.82rem; }
  .location-pill { top: 30px; padding: 12px 15px; font-size: 0.66rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 11px 0; }
  .trust-item, .trust-item:first-child, .trust-item:last-child { min-height: 59px; justify-content: flex-start; border-right: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { height: 385px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .garden-product-grid { grid-template-columns: repeat(2, 1fr); }
  .meeting-feature { grid-template-columns: 1fr; }
  .meeting-feature-media { min-height: 540px; }
  .project-section { grid-template-columns: 1fr; }
  .project-image { min-height: 570px; }
  .project-copy { padding: 72px max(32px, calc((100vw - 760px) / 2)); }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { max-width: 760px; }
  .story-visual { min-height: 590px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { max-width: 640px; }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.8fr; }
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.7fr 1.2fr 1fr;
    align-items: start;
    gap: 12px 28px;
  }
  .footer-contact h3 { grid-column: 1 / -1; margin: 0; }
  .footer-contact > a:first-of-type { grid-column: 1; grid-row: 2; }
  .footer-contact address { grid-column: 2; grid-row: 2 / span 2; }
  .footer-map-link { grid-column: 1; grid-row: 3; }
  .footer-social { grid-column: 3; grid-row: 2 / span 2; margin: 0; }
  .product-dialog-layout { grid-template-columns: 1fr; }
  .product-dialog-media { min-height: 430px; max-height: 48vh; }
  .product-dialog-copy { padding: 42px 35px 35px; }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 72px 0; }
  .nav-actions .button { display: none; }
  .nav-shell { gap: 7px; }
  .nav-actions { gap: 5px; margin-left: 0; }
  .brand { margin-right: auto; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-mark b { font-size: 2.15rem; }
  .brand-copy strong { font-size: 0.9rem; }
  .hero { height: 650px; color: #fff; background: var(--ink); }
  .hero-layout { position: relative; display: block; width: 100%; }
  .hero-copy { position: relative; z-index: 4; min-height: 650px; display: flex; flex-direction: column; justify-content: flex-end; padding: 82px 24px 103px; color: #fff; }
  .hero-copy h1, .hero-copy h2 { color: #fff; font-size: clamp(2.45rem, 12vw, 4rem); text-shadow: 0 5px 25px rgba(0,0,0,.3); }
  .hero-lead { color: rgba(255,255,255,.78); font-size: 0.96rem; }
  .hero-visual { position: absolute; z-index: 0; inset: 0; clip-path: none; }
  .hero-shade { background: linear-gradient(0deg, rgba(6,7,9,.96) 0%, rgba(6,7,9,.72) 42%, rgba(6,7,9,.13) 88%); }
  .hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform-origin: center top;
  }
  .location-pill { display: none; }
  .hero-controls { right: 20px; bottom: 20px; }
  .hero-actions { gap: 9px; }
  .hero-actions .button { flex: 1 1 180px; min-height: 49px; }
  .trust-item { padding: 0 12px; }
  .trust-item span { font-size: 0.74rem; }
  .trust-item strong { font-size: 0.8rem; }
  .trust-item svg { width: 24px; height: 24px; }
  .service-card { padding: 22px 10px; }
  .service-card { flex-direction: column; gap: 8px; }
  .service-icon { justify-content: start; }
  .section-heading { align-items: flex-start; }
  .section-heading h2::after { display: none; }
  .section-heading .text-link { display: none; }
  .category-grid { width: 100%; max-width: 100%; display: flex; gap: 13px; margin: 0; padding: 8px 0 24px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card, .category-card:nth-child(4), .category-card:nth-child(5) { width: min(76vw, 310px); height: 250px; flex: 0 0 auto; scroll-snap-align: start; }
  .featured-card { height: 335px; }
  .product-heading { align-items: flex-end; }
  .product-count { flex: 0 0 auto; }
  .product-grid { gap: 14px; }
  .meeting-feature-media { min-height: 430px; }
  .project-image { min-height: 460px; }
  .project-copy { padding: 65px 24px; }
  .project-list { grid-template-columns: 1fr; }
  .project-list li:nth-child(odd) { border-right: 0; }
  .project-list li:nth-child(even) { padding-left: 0; }
  .story-visual { min-height: 460px; }
  .story-visual::before { right: 0; }
  .story-stat { left: 0; }
  .story-badge { right: 0; }
  .contact-section { padding: 66px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 10px 24px;
  }
  .footer-contact h3 { grid-column: 1 / -1; }
  .footer-contact address { grid-column: 2; grid-row: 2 / span 2; }
  .footer-map-link { grid-column: 1; grid-row: 3; }
  .footer-social { grid-column: 1 / -1; grid-row: auto; margin-top: 8px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; justify-content: center; gap: 9px; padding: 17px 0; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 3px; }
  .modal { width: calc(100% - 20px); max-height: calc(100vh - 20px); }
  .product-dialog-media { min-height: 360px; }
  .quote-modal, .search-modal { width: calc(100% - 20px); padding: 39px 24px 27px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form label, .quote-form label:nth-child(3), .quote-form label:nth-child(4), .quote-form .button, .quote-form > small { grid-column: 1; }
}

@media (max-width: 560px) {
  .brand { gap: 8px; }
  .brand-copy strong { font-size: 0.79rem; }
  .brand-copy small { font-size: 0.54rem; letter-spacing: 0.045em; }
  .language-switch { height: 32px; gap: 2px; padding: 2px 3px; }
  .language-switch button { min-width: 25px; height: 26px; padding: 0 3px; font-size: 0.61rem; }
  .icon-button { width: 40px; }
  .menu-toggle { width: 40px; padding-inline: 6px; }
  .hero { height: 640px; }
  .hero-copy { min-height: 640px; padding-right: 18px; padding-left: 18px; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.19em; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  html[data-language="en"] .hero-copy h1,
  html[data-language="en"] .hero-copy h2 { font-size: clamp(2.15rem, 10.4vw, 3rem); }
  .hero-actions .button { width: 100%; flex-basis: 100%; }
  .hero-actions .button-light { display: none; }
  .hero-controls { padding: 8px 10px; }
  .hero-arrow { width: 30px; height: 30px; }
  .trust-item { gap: 8px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.76rem; }
  .section-heading { margin-bottom: 24px; }
  .product-heading { display: block; }
  .product-heading > div:first-child > p:last-child { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: 1fr; }
  .garden-product-grid { grid-template-columns: 1fr; }
  .meeting-feature-media { min-height: 300px; }
  .meeting-feature-copy { padding: 31px 22px 34px; }
  .meeting-feature-copy h3 { font-size: 2rem; }
  .meeting-actions { display: grid; grid-template-columns: 1fr; }
  .featured-card { height: 295px; }
  .project-image { min-height: 350px; }
  .project-copy h2 { font-size: 2.65rem; }
  .story-copy h2 { font-size: 2.35rem; }
  .story-actions { align-items: flex-start; flex-direction: column; }
  .story-visual { min-height: 370px; }
  .story-visual img { inset: 14px 0 0 14px; width: calc(100% - 14px); height: calc(100% - 14px); }
  .story-stat { bottom: -28px; padding: 15px 20px; }
  .story-stat strong { font-size: 2.7rem; }
  .story-badge { top: 30px; font-size: 0.68rem; }
  .contact-card { padding: 24px 20px; }
  .contact-card-actions { align-items: flex-start; flex-direction: column; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
    padding-top: 50px;
    padding-bottom: 42px;
  }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
  .footer-links { min-width: 0; gap: 6px; }
  .footer-links h3 { font-size: 0.82rem; }
  .footer-links a,
  .footer-links button { font-size: 0.74rem; }
  .footer-contact { grid-template-columns: 0.9fr 1.1fr; gap: 9px 18px; }
  .footer-social-title { font-size: 0.65rem; letter-spacing: 0.1em; }
  .floating-whatsapp { width: 52px; height: 52px; right: 14px; bottom: 14px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
  .product-dialog-media { min-height: 285px; }
  .product-dialog-copy { padding: 32px 21px 24px; }
  .product-dialog-copy h2 { font-size: 2.25rem; }
  .modal-actions { grid-template-columns: 1fr; }
  .modal-close { top: 9px; right: 9px; }
  .quote-dialog-head h2, .search-head h2 { font-size: 2.2rem; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  .brand-copy strong { font-size: 0.72rem; }
  .brand-copy small { font-size: 0.48rem; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark b { font-size: 1.95rem; }
  .language-switch { gap: 1px; }
  .language-switch button { min-width: 23px; }
  .icon-button,
  .menu-toggle { width: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
