:root {
  --ink: #17211f;
  --ink-soft: #33413e;
  --muted: #687672;
  --white: #ffffff;
  --page: #f7fbfa;
  --panel: #ffffff;
  --teal-900: #0b3b37;
  --teal-800: #0f514b;
  --teal-600: #16766e;
  --teal-100: #dff1ed;
  --saffron: #efad35;
  --saffron-soft: #fff0c8;
  --coral: #d95f43;
  --line: #dce7e3;
  --line-strong: #c7d7d2;
  --shadow: 0 18px 44px rgba(11, 59, 55, 0.14);
  --soft-shadow: 0 10px 26px rgba(11, 59, 55, 0.1);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: normal;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 86px 0;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.section-reveal.is-visible {
  animation: revealUp 0.65s ease forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 231, 227, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 28px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-600));
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(11, 59, 55, 0.18);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-mark rect {
  fill: rgba(255, 255, 255, 0.12);
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand strong {
  display: block;
  color: var(--teal-900);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 12px 16px;
  color: var(--white);
  background: var(--teal-900);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 59, 55, 0.2);
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.nav-phone svg,
.btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-phone:hover {
  background: var(--teal-600);
  box-shadow: 0 16px 34px rgba(11, 59, 55, 0.24);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--teal-900);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(86vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 54px 0 44px;
  background:
    linear-gradient(90deg, rgba(11, 59, 55, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 62%, #fff7e4 100%);
  background-size: 44px 44px, auto;
}

.hero-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.service-intro h2,
.offer-copy h2 {
  margin: 0;
  color: var(--teal-900);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: 5.35rem;
}

.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--teal-900);
  box-shadow: 0 14px 30px rgba(11, 59, 55, 0.18);
}

.btn-primary:hover {
  background: var(--teal-600);
}

.btn-secondary {
  color: var(--teal-900);
  background: var(--white);
  border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-light:hover {
  border-color: var(--teal-600);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-light {
  color: var(--teal-900);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
  margin-top: 36px;
}

.hero-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--teal-900);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 26px;
  z-index: 0;
  background: var(--saffron);
  border-radius: var(--radius);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.basket-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  color: var(--white);
  background: rgba(11, 59, 55, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(11, 59, 55, 0.24);
}

.basket-panel strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
}

.basket-panel ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.basket-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.basket-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--saffron);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 54px;
}

.section-copy h2,
.section-heading h2,
.service-intro h2,
.offer-copy h2 {
  font-size: 3rem;
}

.section-copy p,
.section-heading p,
.service-intro p,
.offer-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.credential-grid div {
  padding: 18px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.credential-grid span,
.product-body span,
.detail-type {
  display: block;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--teal-900);
  font-size: 0.96rem;
  font-weight: 900;
}

.store-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.store-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.store-card div {
  padding: 24px;
}

.store-card h3,
.category-card h3,
.product-card h3,
.service-list h3,
.contact-row h3,
.contact-form h3,
.footer-grid h3 {
  margin: 0;
  color: var(--teal-900);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
}

.store-card p,
.category-card p,
.service-list p,
.contact-row p,
.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.muted-band {
  background: var(--page);
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.with-controls {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

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

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr 44px;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(11, 59, 55, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: var(--teal-600);
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
  outline: none;
}

.category-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius);
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-900);
  background: var(--page);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.category-card:hover .icon-btn,
.icon-btn:hover,
.icon-btn:focus-visible {
  color: var(--white);
  background: var(--teal-900);
  border-color: var(--teal-900);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.filter-group {
  display: inline-flex;
  padding: 4px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-btn {
  min-height: 40px;
  padding: 9px 13px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
}

.filter-btn.is-active {
  color: var(--white);
  background: var(--teal-900);
}

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

.product-card {
  overflow: hidden;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 59, 55, 0.07);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  background: var(--page);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.product-card h3 {
  min-height: 46px;
}

.price {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.view-btn {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--teal-900);
  border-radius: var(--radius);
  color: var(--teal-900);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.view-btn:hover,
.view-btn:focus-visible {
  color: var(--white);
  background: var(--teal-900);
  transform: translateY(-2px);
}

.service-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 173, 53, 0.12), transparent 42%),
    var(--teal-900);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.service-intro h2,
.service-intro p {
  color: var(--white);
}

.service-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.service-list svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--saffron);
  background: rgba(239, 173, 53, 0.12);
  border-radius: var(--radius);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-list h3 {
  color: var(--white);
}

.service-list p {
  color: rgba(255, 255, 255, 0.72);
}

.offer-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--saffron));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-copy {
  padding: 46px;
}

.offer-copy h2 {
  color: var(--white);
}

.offer-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.offer-image {
  min-height: 340px;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 16px;
}

.testimonial-track {
  position: relative;
  min-height: 224px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonial-card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.42;
}

.customer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.customer img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.customer strong,
.customer small {
  display: block;
}

.customer strong {
  color: var(--teal-900);
  font-size: 0.92rem;
  font-weight: 900;
}

.customer small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.slider-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-900);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  color: var(--white);
  background: var(--teal-900);
}

.slider-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line-strong);
}

.slider-dots button.is-active {
  background: var(--teal-900);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--page);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-row: span 2;
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.contact-section {
  background: var(--page);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card,
.contact-form,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-row svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--teal-900);
  background: var(--teal-100);
  border-radius: var(--radius);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-row a {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal-600);
  font-size: 0.9rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 434px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 434px;
  border: 0;
}

.map-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--teal-900);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
}

.contact-form h3 {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--teal-900);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form label:nth-of-type(3) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(22, 118, 110, 0.12);
}

.contact-form .btn {
  width: fit-content;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.8fr 1fr;
  gap: 36px;
}

.footer-brand strong,
.footer-grid h3 {
  color: var(--white);
}

.footer-brand small,
.footer-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-grid a:not(.brand):hover {
  color: var(--saffron);
}

.copyright {
  margin-top: 18px;
  font-size: 0.82rem;
}

.legal-hero {
  padding: 74px 0 42px;
  background:
    linear-gradient(90deg, rgba(11, 59, 55, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  background-size: 44px 44px, auto;
}

.legal-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--teal-900);
  font-family: "Fraunces", Georgia, serif;
  font-size: 4rem;
  line-height: 1.05;
}

.legal-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-content {
  padding: 28px 0 86px;
  background: var(--page);
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.legal-document h2 {
  margin: 34px 0 0;
  color: var(--teal-900);
  font-size: 1.35rem;
  line-height: 1.3;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.legal-document p {
  margin: 12px 0 0;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  padding: 18px;
  color: var(--teal-900);
  background: var(--saffron-soft);
  border: 1px solid rgba(239, 173, 53, 0.34);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.lightbox,
.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 20, 19, 0.78);
}

.lightbox[hidden],
.detail-modal[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1040px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.lightbox-close,
.detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(11, 59, 55, 0.94);
  font-size: 0.84rem;
  font-weight: 900;
}

.lightbox-close {
  padding: 11px 15px;
}

.detail-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.detail-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.detail-dialog {
  position: relative;
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.detail-image {
  min-height: 430px;
  background: var(--page);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  padding: 42px;
}

.detail-content h2 {
  margin: 8px 0 0;
  color: var(--teal-900);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1.12;
}

.detail-content p {
  margin: 16px 0 0;
  color: var(--muted);
}

.detail-price {
  color: var(--coral) !important;
  font-size: 1.2rem;
  font-weight: 900;
}

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

.detail-content li {
  padding: 12px 14px;
  color: var(--teal-900);
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-note {
  padding: 14px;
  color: var(--teal-900) !important;
  background: var(--saffron-soft);
  border: 1px solid rgba(239, 173, 53, 0.34);
  border-radius: var(--radius);
  font-weight: 800;
}

.detail-contact {
  width: fit-content;
  margin-top: 24px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 260;
  min-width: 250px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--teal-900);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(11, 59, 55, 0.24);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

@media (max-width: 1120px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .hero-shell {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: 4.4rem;
  }

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

  .category-card {
    grid-template-columns: 104px 1fr 42px;
  }

  .category-card img {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-phone {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 10px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 46px rgba(11, 59, 55, 0.16);
    transform: translateY(-120%);
    transition: transform 0.26s ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 58px;
  }

  .hero-shell,
  .about-grid,
  .service-grid,
  .offer-banner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 4.05rem;
  }

  .hero-media {
    max-width: 720px;
    margin: 0 auto;
  }

  .section-heading.with-controls {
    align-items: start;
    flex-direction: column;
  }

  .offer-image {
    min-height: 280px;
    order: -1;
  }

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

  .contact-form label:nth-of-type(3) {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .section-pad {
    padding: 64px 0;
  }

  .nav-shell {
    width: min(100% - 20px, 1240px);
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 3.15rem;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .offer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-facts,
  .credential-grid,
  .category-grid,
  .product-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 10px;
  }

  .hero-media::before {
    inset: 18px -8px -10px 14px;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.74;
  }

  .basket-panel {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .section-copy h2,
  .section-heading h2,
  .service-intro h2,
  .offer-copy h2 {
    font-size: 2.35rem;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .category-card {
    grid-template-columns: 90px 1fr 40px;
    gap: 12px;
    min-width: 0;
  }

  .category-card img {
    width: 90px;
    height: 90px;
  }

  .filter-group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    grid-template-columns: 112px 1fr;
    align-items: stretch;
    min-width: 0;
  }

  .product-image img {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-body {
    padding: 16px;
  }

  .product-card h3 {
    min-height: 0;
    font-size: 0.94rem;
  }

  .view-btn {
    width: 100%;
  }

  .service-list article {
    grid-template-columns: 42px 1fr;
    padding: 17px;
  }

  .offer-copy {
    padding: 28px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .testimonial-track {
    min-height: 300px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card p {
    font-size: 1.22rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 330px;
  }

  .map-link {
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .detail-dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .detail-image {
    min-height: 230px;
  }

  .detail-content {
    padding: 28px;
  }

  .detail-content h2 {
    font-size: 1.65rem;
  }

  .detail-contact {
    width: 100%;
  }

  .legal-hero {
    padding: 52px 0 30px;
  }

  .legal-hero h1 {
    font-size: 2.7rem;
  }

  .legal-content {
    padding: 18px 0 64px;
  }

  .legal-document {
    padding: 26px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 22px, 1180px);
  }

  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  .nav-shell {
    min-height: var(--header-height);
  }

  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .section-copy h2,
  .section-heading h2,
  .service-intro h2,
  .offer-copy h2,
  .legal-hero h1 {
    font-size: 2.05rem;
  }

  .category-card {
    grid-template-columns: 78px 1fr;
  }

  .category-card img {
    width: 78px;
    height: 78px;
  }

  .category-card .icon-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: auto;
    aspect-ratio: 1 / 0.62;
  }
}

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