﻿:root {
  --stone-canvas: #f5f1ea;
  --stone-surface: #ffffff;
  --stone-ink: #1f2421;
  --stone-muted: #6e756f;
  --stone-border: rgba(31, 36, 33, 0.12);
  --stone-forest: #0f4b46;
  --stone-sage: #8d9b85;
  --stone-gold: #b08a3c;
  --stone-shadow: 0 24px 48px rgba(17, 35, 33, 0.08);
  /* --stone-radius: 24px; */
  --stone-radius: 0;
  --stone-shell: min(1240px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-ink);
  background: linear-gradient(180deg, #faf7f2 0%, #f4efe6 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

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

.shell-width,
.content-shell {
  width: var(--stone-shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--stone-border);
}
.site-header__logo {
  display: none;
}
@media (min-width: 1024px) {
  .site-header {
    display: flex;
    gap: 1rem;
  }
  .site-header__logo {
    display: block;
    fleX: 0 0 auto;
  }
  .site-header--proto .site-header__logo .site-branding .custom-logo-link img {
    height: 120px;
    max-height: unset;
  }
  .site-header__main {
    flex: 1 1 auto;
  }
  .site-header__top .site-branding {
    display: none;
  }
}
@media (min-width: 1366px) {
  .site-header--proto .site-header__logo .site-branding .custom-logo-link img {
    height: 160px;
  }
}

.topbar,
.main-nav,
.hero,
.advantage-strip,
.split-section,
.services-section,
.catalog-section,
.gallery-section,
.footer-grid,
.footer-meta,
.archive-shell,
.content-shell,
.content-shell--shop {
  padding-left: 0;
  padding-right: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-logo-link img,
.custom-logo-link img {
  width: auto;
  max-height: 60px;
}

.site-contact-links {
  display: flex;
  gap: 18px;
  color: var(--stone-muted);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stone-border);
  background: var(--stone-surface);
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-list a:hover,
.footer-list a:hover,
.site-contact-links a:hover {
  color: var(--stone-forest);
}

.site-main {
  padding-bottom: 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  padding-top: 24px;
}

.hero-media img,
.split-media img,
.featured-media img,
.gallery-item img,
.catalog-card img,
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--stone-radius);
}

.hero-media {
  min-height: 520px;
}

.hero-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--stone-radius);
  padding: 36px;
  box-shadow: var(--stone-shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--stone-forest);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
.woocommerce-products-header__title,
.woocommerce-loop-category__title,
.product_title {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 14px;
  line-height: 1.1;
}

h1,
.woocommerce-products-header__title,
.product_title {
  font-size: 1.25rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.hero-card p,
.content-article,
.post-card__body p,
.woocommerce-product-details__short-description,
.woocommerce-Tabs-panel {
  font-size: 1rem;
  line-height: 1.7;
}

.button-primary,
button,
input[type="submit"],
.wp-element-button,
.button,
.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--stone-forest), #1b6d66);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
}

.advantage-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.advantage-card,
.info-card,
.process-card,
.post-card,
.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce div.product div.images,
.content-article {
  background: var(--stone-surface);
  border: 1px solid var(--stone-border);
  border-radius: var(--stone-radius);
  box-shadow: var(--stone-shadow);
}

.advantage-card,
.info-card,
.process-card {
  padding: 24px;
}

.split-section,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  margin-top: 72px;
}

.split-media {
  min-height: 340px;
}

.services-section,
.catalog-section,
.gallery-section,
.process-section,
.archive-shell,
.content-shell,
.content-shell--shop {
  margin-top: 72px;
}

.grid-cards--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.catalog-grid,
.post-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.catalog-card a {
  display: block;
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.catalog-card span {
  display: block;
  padding: 14px 8px 4px;
  font-weight: 700;
}

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

.gallery-item {
  min-height: 250px;
}

.process-section {
  background: linear-gradient(rgba(15, 75, 70, 0.82), rgba(15, 75, 70, 0.92)), url('../images/how-we-work-bg.jpg') center/cover;
  color: #fff;
  padding: 72px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.process-step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(176, 138, 60, 0.2);
  color: #f5dab0;
  font-weight: 700;
  margin-bottom: 16px;
}

.archive-header,
.entry-header {
  margin-bottom: 28px;
}

.post-card__body,
.content-article {
  padding: 24px;
}

.post-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.post-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

.post-card__meta,
.post-card__terms,
.archive-description,
.woocommerce-result-count,
.woocommerce-breadcrumb {
  color: var(--stone-muted);
  font-size: 0.95rem;
}

.single-shell .featured-media,
.single-shell .entry-content,
.content-article {
  margin-top: 18px;
}

.site-footer {
  background: #15302d;
  color: #ebf0eb;
  padding: 54px 0 24px;
}

.footer-grid {
  align-items: start;
  margin-top: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.footer-meta {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(235, 240, 235, 0.76);
}

.content-shell,
.content-shell--shop {
  padding-top: 1rem;
}

.content-article {
  padding: 32px;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin-right: 10px;
}

.woocommerce span.onsale {
  background: var(--stone-gold);
  min-height: auto;
  min-width: auto;
  padding: 8px 12px;
  line-height: 1;
  border-radius: 999px;
}

.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce div.product div.images {
  margin: 0;
  padding: 20px;
  width: 100%;
}

.woocommerce ul.products li.product a img {
  margin: 0 0 16px;
  border-radius: 18px;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--stone-forest);
  font-weight: 700;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce-tabs ul.tabs li {
  border-radius: 999px 999px 0 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--stone-forest);
  background: #edf5f4;
}

@media (max-width: 1024px) {
  .hero,
  .split-section,
  .footer-grid,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .advantage-strip,
  .process-grid,
  .catalog-grid,
  .post-grid,
  .gallery-grid,
  .woocommerce ul.products,
  .grid-cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-contact-links {
    display: none;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    padding: 0 0 18px;
  }

  .menu-list.is-open {
    display: flex;
  }

  .hero-card,
  .post-card__body,
  .content-article,
  .advantage-card,
  .info-card,
  .process-card {
    padding: 20px;
  }

  .advantage-strip,
  .process-grid,
  .catalog-grid,
  .post-grid,
  .gallery-grid,
  .woocommerce ul.products,
  .grid-cards--two {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 320px;
  }

  .content-shell,
  .content-shell--shop,
  .process-section {
    margin-top: 0;
  }
}


/* STONE_HEADER_PARITY_START */
.site-header--proto {
  position: relative;
  top: auto;
  z-index: 70;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header--proto .site-header__top {
  border-bottom: 1px solid #1E6A6F;
}

.site-header--proto .site-header__top-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo meta meta"
    "search search toggle";
  align-items: center;
  column-gap: 12px;
  row-gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header--proto .site-branding {
  grid-area: logo;
  flex: 0 0 auto;
}

.site-header--proto .site-branding .site-logo-link img,
.site-header--proto .site-branding .custom-logo-link img,
.site-header--proto .site-branding img {
  width: auto;
  height: 56px;
  max-height: 64px;
  min-width: 106px;
}

@media (min-width: 768px) {
  .site-header--proto .site-branding .site-logo-link img,
  .site-header--proto .site-branding .custom-logo-link img,
  .site-header--proto .site-branding img {
    height: 64px;
  }
}

@media (max-width: 767px) {
  .site-header--proto .header-meta__link[href^="mailto"] {
    display: none;
  }
}

.site-header--proto .header-search {
  grid-area: search;
  position: relative;
  flex: 1 1 auto;
  max-width: none;
}

.site-header--proto .header-search__form {
  display: flex;
  border: 1px solid #073842;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.site-header--proto .header-search__form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 8px 12px;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #111827;
  background: #fff;
}

.site-header--proto .header-search__form input::placeholder {
  color: #9ca3af;
}

.site-header--proto .header-search__form button {
  margin: 4px;
  border: 0;
  border-radius: 0;
  min-width: 120px;
  padding: 8px 16px;
  background: #1f6a6f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color .2s ease;
}

.site-header--proto .header-search__form button:hover,
.site-header--proto .header-search__form button:focus-visible {
  background: #2f7f82;
}

.site-header--proto .header-search__form button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (min-width: 1024px) {
  .site-header--proto .header-search {
    margin-right: 1rem;
  }
}

@media (max-width: 639px) {
  .site-header--proto .header-search__form button {
    min-width: 48px;
    padding: 8px 16px;
  }

  .site-header--proto .header-search__form button span {
    display: none;
  }
}

.site-header--proto .header-search__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 90;
  display: none;
}

.site-header--proto .header-search.is-open .header-search__dropdown {
  display: block;
}

.site-header--proto .header-search__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.site-header--proto .header-search__chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 2px 8px;
  background: #f3f4f6;
  color: #6b7280;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header--proto .header-search__results {
  max-height: 256px;
  overflow-y: auto;
}

.site-header--proto .header-search__result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.site-header--proto .header-search__result:last-child {
  border-bottom: 0;
}

.site-header--proto .header-search__result:hover {
  background: #f3f4f6;
}

.site-header--proto .header-search__result img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 2px;
}

.site-header--proto .header-search__result-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  gap: 2px;
}

.site-header--proto .header-search__result-title {
  display: block;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header--proto .header-search__result-meta {
  display: block;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.3;
  color: #6b7280;
}

.site-header--proto .header-search__result svg {
  width: 16px;
  height: 16px;
  stroke: #6b7280;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.header-meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .site-header--proto .header-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-left: 0;
    color: #B18136;
    font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1;
  }
}

.site-header--proto .header-meta__link,
.site-header--proto .header-meta__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease, opacity .2s ease;
}

.site-header--proto .header-meta__link svg,
.site-header--proto .header-meta__phone svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.site-header--proto .header-meta__phone {
  color: #B18136;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.site-header--proto .header-meta__phone span span:first-of-type {
  color: #073842;
}
.site-header--proto .header-meta__phone span span:last-of-type {
  font-size: 1.25em;
}
.site-header--proto .header-meta__phone svg {
  color: #B18136;
}
@media (max-width: 767px) {
  .site-header--proto .header-meta__phone {
    font-size: .875rem;
  }
  .site-header--proto .header-meta__phone svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.site-header--proto .header-meta__link:hover,
.site-header--proto .header-meta__link:focus-visible,
.site-header--proto .header-meta__phone:hover,
.site-header--proto .header-meta__phone:focus-visible {
  opacity: 0.86;
}

.site-header--proto .header-meta__sep {
  width: 1px;
  height: 24px;
  background: #e5e7eb;
}

.site-header--proto .header-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header--proto .header-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  transition: opacity .2s ease, transform .2s ease;
}

.site-header--proto .header-socials a:nth-child(1) { background: #22c55e; }
.site-header--proto .header-socials a:nth-child(2) { background: #3b82f6; }
.site-header--proto .header-socials a:nth-child(3) { background: #2563eb; }

.site-header--proto .menu-toggle {
  grid-area: toggle;
  justify-self: end;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: 0;
}

.header__social-links {
  display: flex;
  gap: .5rem;
}
.header__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #073842;
}
.header__social-links a img {
  width: 1.75rem;
  height: 1.75rem;
}
.header__social-links a span {
  display: none;
}
@media (max-width: 768px) {
  .header-meta__sep {
    display: none;
  }
  .header__social-links a {
    width: 1.75rem;
    height: 1.75rem;
  }
  .header__social-links a img {
    width: 1.125rem;
    height: 1.125rem;
  }
}
@media (max-width: 480px) {
  .header-meta {
    flex-direction: column;
    align-items: end;
    gap: .25rem
  }
}

.site-header--proto .menu-toggle span {
  width: 28px;
  height: 2px;
  background: #111827;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header--proto .menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--proto .menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header--proto .menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .site-header--proto .site-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }


  .site-header--proto .menu-toggle {
    display: none;
  }
}

.site-header--proto .main-nav {
  border-bottom: 1px solid #1E6A6F;
}

.site-header--proto .menu-list {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header--proto .menu-list.is-open {
  display: flex;
}

@media (min-width: 1024px) {
  .site-header--proto .shell-width {
    width: 100%;
    padding-right: 1rem;
  }
  .site-header--proto .main-nav {
    margin-bottom: 1.5rem;
  }
  .site-header--proto .menu-list {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.site-header--proto .menu-list > .menu-item {
  position: relative;
}

.site-header--proto .menu-list > .menu-item > a {
  display: block;
  padding: 10px 16px;
  color: #073842;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-header--proto .menu-list > .menu-item > a:hover,
.site-header--proto .menu-list > .menu-item > a:focus-visible {
  color: #B18136;
}

.site-header--proto .menu-item--has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: static;
  padding-right: 16px;
}

.site-header--proto .menu-item--has-children > a::after {  content: "";
  display: inline-block;
  width: .375rem;
  height: .5rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotateZ(45deg) scaleY(.75) translate(.4rem, -.2rem);
}

.site-header--proto .menu-divider {
  display: none;
}

@media (min-width: 1024px) {
  .site-header--proto .menu-divider {
    display: inline-flex;
    color: #d1d5db;
    line-height: 1;
  }

  .site-header--proto .menu-list > .menu-item > a {
    font-size: 1rem;
  }
  .site-header--proto .menu-list > .menu-item > a:hover::after,
  .site-header--proto .menu-list > .menu-item > a:focus-visible::after {
    color: #B18136;
  }
}

.site-header--proto .submenu-toggle {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.site-header--proto .submenu-toggle::before {
  content: "+";
  line-height: 1;
}

.site-header--proto .submenu-toggle {
  display: none;
}

.site-header--proto .sub-menu {
  display: none;
  position: static;
  width: 100%;
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
  border-left: 2px solid #e5e7eb;
}

@media (min-width: 1024px) {
  .site-header--proto .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    width: auto;
    padding: 0;
    border-left: 0;
    border: 1px solid #28384C;
    background: #28384Cdd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 80;
  }
}

.site-header--proto .menu-item--has-children.submenu-open > .sub-menu,
.site-header--proto .menu-item--has-children:hover > .sub-menu,
.site-header--proto .menu-item--has-children:focus-within > .sub-menu {
  display: block;
}

.site-header--proto .menu-item--has-children.submenu-open > .submenu-toggle::before {
  content: "−";
}

.site-header--proto .sub-menu li a {
  display: block;
  padding: 10px 14px;
  color: #111827;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  transition: background-color .2s ease, color .2s ease;
}

.site-header--proto .sub-menu li a:hover,
.site-header--proto .sub-menu li a:focus-visible {
  background: #f3f4f6;
  color: #1f6a6f;
}
/* STONE_HEADER_PARITY_END */


/* STONE_FOOTER_PARITY_START */
.site-footer {
  background: #0f4b46;
  color: #ebf0eb;
  padding: 40px 0 24px;
}

.footer-grid--proto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-logo--inverted img {
  filter: brightness(0) invert(1);
}

.footer-copy {
  max-width: 320px;
  color: rgba(235, 240, 235, 0.84);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-socials {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.94;
  transition: opacity .2s ease, background-color .2s ease;
}

.footer-socials a:nth-child(1) { background: #30b45a; }
.footer-socials a:nth-child(2) { background: #2f9fe8; }
.footer-socials a:nth-child(3) { background: #2a77d0; }

.footer-col h2 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.footer-list {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li,
.footer-list a {
  color: rgba(235, 240, 235, 0.84);
}

.footer-list a,
.footer-list__address {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  transition: opacity .2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 1;
}

.footer-list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer-legal {
  margin-top: 20px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(235, 240, 235, 0.66);
  max-width: 260px;
}

.footer-meta {
  display: none;
}

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

@media (min-width: 1024px) {
  .site-header--proto .sub-menu li a {
    color: #fff;
  }
}
/* STONE_FOOTER_PARITY_END */

/* STONE_BLOG_PARITY_START */
.archive-description-text {
  margin: 0;
  color: var(--stone-muted);
  font-size: 0.98rem;
}

.archive-banner {
  position: relative;
  overflow: hidden;
  min-height: 192px;
}

.archive-banner__media,
.archive-banner__overlay {
  position: absolute;
  inset: 0;
}

.archive-banner__media {
  width: 100%;
  height: 100%;
  background-image: var(--stone-banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img.archive-banner__media {
  object-fit: cover;
}

.archive-banner__overlay {
  background: rgba(15, 75, 70, 0.7);
}

.archive-banner__inner {
  position: relative;
  z-index: 1;
  min-height: 192px;
  display: flex;
  align-items: center;
}

.archive-banner__inner h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
}

.archive-banner--category .archive-banner__inner {
  align-items: center;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.blog-layout--with-sidebar {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.blog-main {
  min-width: 0;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-category-card {
  background: var(--stone-surface);
  border: 1px solid var(--stone-border);
  border-radius: var(--stone-radius);
  overflow: hidden;
  box-shadow: var(--stone-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 36, 33, 0.12);
}

.blog-category-card__image {
  display: block;
  aspect-ratio: 4 / 3;
}

.blog-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-category-card:hover .blog-category-card__image img {
  transform: scale(1.04);
}

.blog-category-card__body {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-category-card__body h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.blog-category-card__body p {
  margin: 0;
  color: var(--stone-muted);
  font-size: 0.88rem;
}

.blog-category-card__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  background: rgba(15, 75, 70, 0.08);
  color: var(--stone-forest);
  font-size: 1.1rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.blog-category-card:hover .blog-category-card__arrow {
  background: var(--stone-forest);
  color: #fff;
  transform: translateX(2px);
}

.blog-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.blog-sidebar__section {
  padding: 22px;
  background: var(--stone-surface);
  border: 1px solid var(--stone-border);
  border-radius: var(--stone-radius);
  box-shadow: var(--stone-shadow);
}

.blog-sidebar__section p {
  margin: 0;
  color: var(--stone-muted);
}

.blog-sidebar__section--cta {
  background: linear-gradient(180deg, rgba(15, 75, 70, 0.08), rgba(15, 75, 70, 0.02)), var(--stone-surface);
}

.blog-sidebar__title {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.blog-sidebar__list,
.blog-sidebar__posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.blog-sidebar__list a,
.blog-sidebar__posts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-sidebar__count {
  color: var(--stone-muted);
  font-size: 0.84rem;
}

.blog-sidebar__posts a {
  align-items: flex-start;
  justify-content: flex-start;
}

.blog-sidebar__posts img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
  flex: 0 0 76px;
}

.blog-sidebar__posts span {
  display: grid;
  gap: 6px;
}

.blog-sidebar__posts strong {
  color: var(--stone-ink);
  font-size: 0.96rem;
  line-height: 1.35;
}

.blog-sidebar__posts time {
  color: var(--stone-muted);
  font-size: 0.82rem;
}

.blog-sidebar__button {
  margin-top: 18px;
  width: 100%;
}

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

  .blog-sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  .archive-banner,
  .archive-banner__inner {
    min-height: 148px;
  }

  .archive-banner__inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .blog-category-grid {
    grid-template-columns: 1fr;
  }

  .blog-category-card__body {
    align-items: flex-start;
  }

  .blog-sidebar__section {
    padding: 18px;
  }
}
/* STONE_BLOG_PARITY_END */

/* STONE_ARCHIVE_PARITY_START */
.archive-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--stone-muted);
  font-size: 0.88rem;
}

.archive-breadcrumbs a:hover {
  color: var(--stone-forest);
}
/* STONE_ARCHIVE_PARITY_END */

/* STONE_HOME_PROTO_START */
.site-main--proto [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--stone-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.site-main--proto [data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-main--proto [data-scroll-reveal].is-immediate {
  opacity: 1;
  transform: none;
  transition: none;
}

.site-main--proto {
  background: #ffffff;
  padding-bottom: 0;
}

.site-main--proto .about-section--proto,
.site-main--proto .services-section--proto,
.site-main--proto .catalog-section--proto,
.site-main--proto .gallery-section--proto,
.site-main--proto .process-section--proto {
  margin-top: 0;
}

.site-main--proto .about-section--proto h2,
.site-main--proto .services-section--proto h2,
.site-main--proto .catalog-section--proto h2,
.site-main--proto .gallery-section--proto h2,
.site-main--proto .process-section--proto h2 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #24363b;
  margin-bottom: 32px;
}
.site-main--proto .process-section--proto h2 {
  color: #fff;
}

@media (min-width: 768px) {
  .site-main--proto .about-section--proto h2,
  .site-main--proto .services-section--proto h2,
  .site-main--proto .catalog-section--proto h2,
  .site-main--proto .gallery-section--proto h2,
  .site-main--proto .process-section--proto h2 {
    font-size: 1.875rem;
  }
}

.site-main--proto .hero--proto {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 0;
}

@media (min-width: 768px) {
  .site-main--proto .hero--proto {
    height: 600px;
  }
}

.site-main--proto .hero__bg,
.main-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-slider {
  --swiper-theme-color: #1E6A6F;
}
.main-slider .swiper-slide {
  position: relative;
}

.site-main--proto .hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 36, 33, 0.2);
}

.site-main--proto .hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.site-main--proto .hero-card--proto {
  width: min(100%, 448px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  border: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: none;
  padding: 24px;
}
.site-main--proto .hero-card--proto a,
.site-main--proto .hero-card--proto button {
  pointer-events: all;
}

@media (min-width: 768px) {
  .site-main--proto .hero-card--proto {
    padding: 32px;
  }
}

.site-main--proto .hero-card--proto .eyebrow {
  display: none;
}

.site-main--proto .hero-card--proto h1 {
  margin: 0 0 12px;
  color: #1f2421;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 768px) {
  .site-main--proto .hero-card--proto h1 {
    font-size: 24px;
  }
}

.site-main--proto .hero-card--proto p {
  margin: 0 0 8px;
  color: #6e756f;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.site-main--proto .hero-card--proto p:last-of-type {
  margin-bottom: 20px;
}

.site-main--proto .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f6a6f;
  color: #fff;
  padding: 10px 24px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.site-main--proto .hero-cta:hover,
.site-main--proto .hero-cta:focus-visible {
  background: #2f7f82;
}

.site-main--proto .advantage-strip--proto {
  margin-top: 0;
  padding: 20px 0;
  background: linear-gradient(90deg, #163f40 0%, #1f5c59 40%, #748055 72%, #b08a3c 100%);
  color: #f1f6f4;
}

.site-main--proto .advantage-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .site-main--proto .advantage-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-main--proto .advantage-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-main--proto .advantage-card--proto {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f1f6f4;
  padding: 8px 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-right: 0;
}

@media (min-width: 1024px) {
  .site-main--proto .advantage-card--proto {
    border-right: 1px solid rgba(241, 246, 244, 0.2);
  }

  .site-main--proto .advantage-card--proto:last-child {
    border-right: 0;
  }
}

.site-main--proto .advantage-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(241, 246, 244, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-main--proto .advantage-icon svg,
.site-main--proto .advantage-icon img {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-main--proto .advantage-card__copy {
  min-width: 0;
}

.site-main--proto .advantage-card--proto h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.site-main--proto .advantage-card--proto p {
  margin: 2px 0 0;
  color: rgba(241, 246, 244, 0.8);
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .site-main--proto .hero__inner {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 16px;
  }

  .site-main--proto .hero-card--proto {
    width: calc(100% - 24px);
    padding: 20px 16px;
  }

  .site-main--proto .advantage-strip__grid {
    grid-template-columns: 1fr;
  }
}

.about-section--proto {
  padding: 48px 0 28px;
}

.about-section__inner {
  max-width: 900px;
  text-align: center;
}

.about-section__inner p {
  color: var(--stone-muted);
  line-height: 1.78;
}

.services-section--proto {
  padding: 48px 0 64px;
  background: #f5f5f5;
}

.services-section--proto h2 {
  text-align: center;
  margin-bottom: 32px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.services-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
}

.services-intro {
  margin: 0 0 12px;
  color: var(--stone-muted);
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.services-list li {
  position: relative;
  padding-left: 16px;
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #b08a3c;
}

.catalog-section--proto {
  padding: 48px 0 16px;
  margin-top: 0;
}

.catalog-grid--proto {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.catalog-section__cta {
  margin-top: 22px;
  text-align: center;
}

.catalog-card--proto {
  border: 1px solid #e2e5e7;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.catalog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .45s ease;
}

.catalog-card--proto:hover .catalog-card__media img {
  transform: scale(1.05);
}

.catalog-card__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid #e2e5e7;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(2px);
}

.catalog-card__label-row span {
  display: inline;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.catalog-card__arrow {
  color: var(--stone-forest);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .25s ease;
}

.catalog-card--proto:hover .catalog-card__arrow {
  transform: translateX(4px);
}

.gallery-section--proto {
  padding: 48px 0 20px;
}

.gallery-section--proto h2 {
  text-align: center;
}

.gallery-grid--proto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item--proto {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 4px;
}

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

.gallery-item--proto figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(17, 35, 33, 0.58), transparent);
  color: #fff;
  font-size: 0.82rem;
  transform: translateY(100%);
  transition: transform .28s ease;
}

.gallery-item--proto:hover img {
  transform: scale(1.04);
}

.gallery-item--proto:hover figcaption {
  transform: translateY(0);
}

.gallery-item--portfolio-category {
  display: block;
  text-decoration: none;
}

.gallery-item--portfolio-category figcaption {
  font-weight: 700;
}

.gallery-item--portfolio-category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 35, 33, 0);
  transition: background-color .3s ease;
}

.gallery-item--portfolio-category:hover::after,
.gallery-item--portfolio-category:focus-visible::after {
  background: rgba(17, 35, 33, 0.38);
}

.gallery-cta {
  text-align: center;
  margin-top: 22px;
}

.process-section--proto {
  position: relative;
  margin-top: 0;
  padding: 62px 0;
  overflow: hidden;
  background-image: var(--stone-process-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.process-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 35, 33, 0.76);
}

.process-section__inner {
  position: relative;
  z-index: 1;
}

.process-section--proto h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.process-grid--proto {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.process-card--proto {
  text-align: center;
  color: #fff;
}

.process-card--proto .process-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 2px solid #b08a3c;
  background: rgba(176, 138, 60, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.process-card--proto .process-icon svg,
.process-card--proto .process-icon img {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #b08a3c;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card--proto .process-step {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  margin-bottom: 10px;
  color: #f5dab0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card--proto h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
}

.process-card--proto p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .advantage-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-layout,
  .gallery-grid--proto,
  .process-grid--proto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-main--proto .hero--proto {
    height: 560px;
  }

  .hero__inner {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 16px;
  }

  .hero-card--proto {
    max-width: none;
  }

  .advantage-strip__grid,
  .services-layout,
  .gallery-grid--proto,
  .process-grid--proto {
    grid-template-columns: 1fr;
  }

  .catalog-grid--proto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-main--proto .about-section--proto,
  .site-main--proto .services-section--proto,
  .site-main--proto .catalog-section--proto,
  .site-main--proto .gallery-section--proto,
  .site-main--proto .process-section--proto {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .process-section--proto {
    background-attachment: scroll;
  }

  .services-media img {
    height: 280px;
  }
}

@media (max-width: 540px) {
  .catalog-grid--proto {
    grid-template-columns: 1fr;
  }
}
/* STONE_HOME_PROTO_END */

/* STONE_CONTACTS_PAGE_START */
.page-banner {
  position: relative;
  height: 192px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-banner {
    height: 224px;
  }
}

.page-banner__bg,
.page-banner__overlay {
  position: absolute;
  inset: 0;
}

.page-banner__bg {
  width: 100%;
  height: 100%;
  background-image: var(--stone-banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img.page-banner__bg {
  object-fit: cover;
}

.page-banner__overlay {
  background: rgba(15, 75, 70, 0.72);
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.page-banner__inner h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
}

.page-banner--portfolio .page-banner__inner {
  justify-content: flex-start;
}

.page-banner--shop-taxonomy {
  height: 180px;
  margin: 0 0 32px;
}

@media (min-width: 1024px) {
  .page-banner--shop-taxonomy {
    /* width: min(1400px, calc(100% - 32px)); */
    width: 100%;
    margin: 0 auto 32px;
  }
}

.page-banner--shop-taxonomy .page-banner__bg {
  background-attachment: fixed;
}

.page-banner--shop-taxonomy .page-banner__overlay {
  background: rgba(17, 35, 33, 0.5);
}

.page-banner--shop-taxonomy .page-banner__inner {
  justify-content: center;
  text-align: center;
}

.page-banner--shop-taxonomy .page-banner__inner h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.contacts-shell {
  padding-top: 18px;
}

.content-article--page-editor {
  max-width: none;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.entry-content--page-editor {
  padding: 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
}

.contacts-info h2,
.contacts-form-wrap h2 {
  margin-bottom: 24px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.contacts-cards {
  display: grid;
  gap: 18px;
}

.contacts-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacts-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(31, 106, 111, 0.1);
  color: #1f6a6f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-card h3 {
  margin: 0 0 6px;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.contacts-card p {
  margin: 0 0 4px;
  color: var(--stone-muted);
  line-height: 1.6;
}

.contacts-card a:hover {
  color: var(--stone-forest);
}

.contacts-map {
  margin-top: 28px;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--stone-border);
  border-radius: 10px;
}

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

.contacts-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--stone-surface);
  border: 1px solid var(--stone-border);
  border-radius: 10px;
  box-shadow: var(--stone-shadow);
}

.contacts-form label {
  display: grid;
  gap: 8px;
}

.contacts-form label span {
  font-size: 0.95rem;
  font-weight: 600;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  border: 1px solid #d7ddd8;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--stone-ink);
  background: #fff;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  outline: 2px solid rgba(31, 106, 111, 0.18);
  border-color: #1f6a6f;
}

.contacts-form .button-primary {
  width: 100%;
  border-radius: 6px;
}

.contacts-form__note {
  margin: -4px 0 0;
  color: var(--stone-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
/* STONE_CONTACTS_PAGE_END */

/* STONE_PORTFOLIO_PAGE_START */
.portfolio-shell {
  padding-top: 18px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.portfolio-filter {
  padding: 10px 16px;
  border: 1px solid var(--stone-border);
  border-radius: 4px;
  background: #fff;
  color: var(--stone-ink);
  font: inherit;
  font-weight: 600;
}

.portfolio-filter.is-active,
.portfolio-filter:hover,
.portfolio-filter:focus-visible,
.portfolio-tab.is-active,
.portfolio-tab:hover,
.portfolio-tab:focus-visible {
  background: #1f6a6f;
  border-color: #1f6a6f;
  color: #fff;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.portfolio-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--stone-border);
  border-radius: 4px;
  background: #fff;
  color: var(--stone-ink);
  font-weight: 600;
  text-decoration: none;
}

.portfolio-count {
  margin: 0 0 20px;
  color: var(--stone-muted);
  font-size: 0.95rem;
}

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

.portfolio-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--stone-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--stone-shadow);
  text-align: left;
  text-decoration: none;
}

.portfolio-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.portfolio-card:hover .portfolio-card__media img {
  transform: scale(1.05);
}

.portfolio-card__body {
  display: block;
  padding: 16px;
}

.portfolio-card--category .portfolio-card__body {
  min-height: 132px;
}

.portfolio-card--project .portfolio-card__body {
  min-height: 118px;
}

.portfolio-card__title {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.portfolio-card__stone,
.portfolio-card__count {
  display: block;
  color: var(--stone-muted);
  font-size: 0.92rem;
}

.portfolio-card__count {
  margin-top: 8px;
  color: #1f6a6f;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 35, 33, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox__figure {
  margin: 0;
  max-width: min(100%, 980px);
  max-height: 85vh;
}

.portfolio-lightbox__figure img {
  max-width: 100%;
  max-height: calc(85vh - 36px);
  object-fit: contain;
}

.portfolio-lightbox__figure figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.portfolio-lightbox__close,
.portfolio-lightbox__nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  box-shadow: none;
  padding: 8px;
}

.portfolio-lightbox__close {
  top: 16px;
  right: 20px;
}

.portfolio-lightbox__nav--prev {
  left: 20px;
}

.portfolio-lightbox__nav--next {
  right: 20px;
}

.portfolio-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .portfolio-tabs {
    gap: 8px;
  }

  .portfolio-tab {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

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

  .portfolio-lightbox {
    padding: 16px;
  }
}
/* STONE_PORTFOLIO_PAGE_END */

/* STONE_SINGLE_POST_START */
.post-banner {
  position: relative;
  height: 256px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-banner {
    height: 320px;
  }
}

.post-banner__bg,
.post-banner__overlay {
  position: absolute;
  inset: 0;
}

.post-banner__bg {
  width: 100%;
  height: 100%;
  background-image: var(--stone-banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img.post-banner__bg {
  object-fit: cover;
}

.post-banner__overlay {
  background: rgba(15, 75, 70, 0.62);
}

.post-banner--fixed .post-banner__bg {
  background-attachment: fixed;
}

.post-banner__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 32px;
}

.post-banner__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.post-banner__inner h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.single-shell--proto {
  padding-top: 18px;
}

.entry-content--single {
  padding: 0;
}

.entry-lead {
  margin: 0 0 24px;
  color: var(--stone-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.entry-content--single p,
.entry-content--single ul,
.entry-content--single ol {
  line-height: 1.8;
}

.entry-content--single .wp-block-gallery,
.entry-content--single .gallery {
  margin: 28px 0;
}

.entry-content--single .wp-block-gallery.has-nested-images {
  gap: 16px;
}

.entry-content--single .wp-block-image img,
.entry-content--single .wp-block-gallery img,
.entry-content--single .gallery img {
  border-radius: 18px;
}

.entry-content--single h2,
.entry-content--single h3 {
  margin-top: 32px;
}

.single-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-border);
}

.single-post-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--stone-muted);
  font-size: 0.95rem;
}

.single-post-nav__link:hover {
  color: var(--stone-forest);
}

.single-post-nav__link--next {
  text-align: right;
}

.single-post-nav__arrow {
  color: var(--stone-forest);
}

.related-posts {
  margin-top: 48px;
  padding: 48px 0;
  background: #efe9de;
}

.related-posts h2 {
  margin-bottom: 24px;
}

.post-grid--archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.post-card--archive {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.post-card--archive .post-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post-card--archive .post-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

.post-card__title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.post-card__excerpt {
  margin: 0;
  flex: 1 1 auto;
}

.post-card__cta {
  margin-top: 18px;
  color: var(--stone-forest);
  font-size: 0.96rem;
  font-weight: 700;
}

.post-card__cta:hover {
  color: #174f4a;
}

.pagination {
  margin-top: 28px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--stone-border);
  border-radius: 999px;
  background: var(--stone-surface);
  text-align: center;
  box-shadow: var(--stone-shadow);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--stone-forest);
  border-color: var(--stone-forest);
  color: #fff;
}

.shop-archive-shell {
  padding-bottom: 24px;
}

.shop-archive--proto,
.shop-taxonomy--proto {
  background: #f5f5f5;
}

.archive-breadcrumbs--shop {
  margin-top: 1rem;
  padding-top: 2px;
  padding-bottom: 0;
  margin-bottom: 6px;
}

.shop-archive-shell .archive-breadcrumbs {
  margin-bottom: 0;
}

.shop-archive-shell .page-banner {
  margin-bottom: 24px;
}

.shop-archive-categories {
  padding-top: 0;
}

.shop-archive-intro {
  padding: 0 0 12px;
}

.shop-archive-latest {
  padding: 10px 0 24px;
}

.shop-archive-latest h2 {
  margin: 0 0 18px;
}

.shop-archive-latest ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shop-archive-latest ul.products > li {
  margin: 0;
}

.showcase-page__shell {
  padding-top: 8px;
  padding-bottom: 32px;
}

.showcase-page__content {
  max-width: 920px;
  margin: 0 auto 28px;
}

.showcase-page__content--blocks {
  max-width: none;
  margin: 0 0 28px;
}

.entry-content--showcase-blocks > * {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content--showcase-blocks > .wp-block-stone-showcase-section {
  max-width: none;
}

.showcase-page__section {
  padding-top: 0;
}

.entry-content--showcase-blocks .wp-block-stone-showcase-section,
.entry-content .wp-block-stone-showcase-section {
  margin-top: 28px;
  margin-bottom: 28px;
}

.stone-showcase-block__section {
  padding-top: 0;
}

.showcase-page__empty {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.showcase-products {
  padding-top: 4px;
}

.showcase-products__grid {
  margin-top: 0;
}

.shop-taxonomy-shell {
  padding-top: 0;
  padding-bottom: 24px;
}

.shop-taxonomy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.shop-filters__card {
  background: var(--stone-surface);
  border: 1px solid var(--stone-border);
  border-radius: 18px;
  box-shadow: var(--stone-shadow);
  padding: 20px;
}

.shop-filters__card h2,
.shop-filters__group h3,
.shop-product-card__copy h2 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.shop-filters__card h2 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-filters__group + .shop-filters__group {
  margin-top: 20px;
}

.shop-filters__group h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-filters__swatches,
.shop-filters__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filters__swatch-label,
.shop-filter-pill,
.shop-filter-option {
  position: relative;
}

.shop-filters__swatch-label,
.shop-filter-pill {
  cursor: pointer;
}

.shop-filters__swatch-label input,
.shop-filter-pill input,
.shop-filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shop-filters__swatch {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 36, 33, 0.14);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-filters__swatch-label.is-active .shop-filters__swatch,
.shop-filters__swatch-label input:checked + .shop-filters__swatch {
  border-color: var(--stone-accent);
  box-shadow: 0 0 0 3px rgba(32, 92, 88, 0.18);
  transform: scale(1.04);
}

.shop-filters__sizes span,
.shop-taxonomy-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 36px;
  padding: 0 10px;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background: #fff;
  color: var(--stone-ink);
  font-size: 0.82rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-filter-pill.is-active span,
.shop-filter-pill input:checked + span,
.shop-taxonomy-chip.is-active {
  background: var(--stone-accent);
  border-color: var(--stone-accent);
  color: #fff;
}

.shop-filter-pill {
  display: inline-flex;
}

.shop-filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.shop-filters__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--stone-ink);
  font-size: 0.9rem;
}

.shop-filter-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.shop-filter-option.is-active {
  font-weight: 600;
}

.shop-filter-option.is-active span:last-child,
.shop-filter-option input:checked ~ span:last-child {
  color: var(--stone-accent);
  font-weight: 600;
}

.shop-filters__check {
  width: 16px;
  height: 16px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  flex: 0 0 auto;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: transparent;
}

.shop-filter-option input:checked + .shop-filters__check {
  background: var(--stone-accent);
  border-color: var(--stone-accent);
  color: #fff;
}

.shop-filter-option.is-active .shop-filters__check {
  background: var(--stone-accent);
  border-color: var(--stone-accent);
  color: #fff;
}

.shop-filters__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.shop-filters__actions .button-primary,
.shop-filters__reset {
  min-width: 0;
  padding: 11px 18px;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 600;
}

.shop-filters__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  color: #a0a9b2;
  text-decoration: none;
  background: #fff;
}

.shop-filters__actions .button-primary {
  min-width: 116px;
}

.shop-filters__group--sale {
  margin-top: 26px;
}

.shop-filter-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.shop-filter-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shop-filter-switch__track {
  position: relative;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: #e6e6e6;
  transition: background-color 0.2s ease;
}

.shop-filter-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

.shop-filter-switch.is-active .shop-filter-switch__track,
.shop-filter-switch input:checked + .shop-filter-switch__track {
  background: var(--stone-accent);
}

.shop-filter-switch.is-active .shop-filter-switch__thumb,
.shop-filter-switch input:checked + .shop-filter-switch__track .shop-filter-switch__thumb {
  transform: translateX(20px);
}

.shop-taxonomy-main {
  min-width: 0;
}

.shop-taxonomy-intro {
  display: block;
}

.shop-taxonomy-intro .archive-description {
  max-width: 720px;
  margin-bottom: 10px;
}

.shop-taxonomy-count {
  margin: 0;
  color: var(--stone-muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.shop-taxonomy-count[hidden] {
  display: none !important;
}

.shop-taxonomy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.shop-taxonomy-chips:empty {
  display: none;
  margin: 0;
}

.shop-taxonomy-chip {
  background: #f6f6f3;
}

.shop-taxonomy-chip.is-disabled {
  color: #9aa3aa;
  background: #f6f6f3;
  border-color: #e1e3e6;
  cursor: default;
}

.shop-taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pagination--shop {
  margin-top: 24px;
}

.shop-product-card {
  background: var(--stone-surface);
  border: 1px solid rgba(31, 36, 33, 0.08);
  box-shadow: 0 16px 32px rgba(17, 35, 33, 0.08);
}

.shop-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.shop-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.shop-product-card:hover .shop-product-card__image img {
  transform: scale(1.04);
}

.shop-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--stone-gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
}

.shop-product-card__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 18px;
}

.shop-product-card__copy p {
  margin: 0 0 6px;
  color: var(--stone-muted);
  font-size: 0.82rem;
}

.shop-product-card__copy h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.shop-product-card__copy h2 a {
  color: var(--stone-ink);
}

.shop-product-card__price {
  margin-top: 8px;
  color: var(--stone-forest);
  font-weight: 700;
  font-size: 0.92rem;
}

.shop-product-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef2f2;
  color: var(--stone-muted);
  flex: 0 0 auto;
  font-size: 1rem;
}

.shop-product-card:hover .shop-product-card__arrow {
  background: var(--stone-forest);
  color: #fff;
}

.single-product-shell {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 28px;
}

.single-product-shell__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

.product-gallery-shell,
.product-summary-shell,
.single-product-details .woocommerce-tabs,
.single-product-related .related.products {
  background: var(--stone-surface);
  border: 1px solid var(--stone-border);
  box-shadow: var(--stone-shadow);
}

.product-gallery-shell,
.woocommerce div.product div.images {
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.product-gallery-shell {
  position: relative;
}
.woocommerce-product-gallery__trigger {
  position: absolute;
  inset: 0;
  font-size: 0;
  cursor: pointer;
  z-index: 1;
}

.flex-control-nav.flex-control-thumbs

.product-gallery-main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f0ea;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-control-nav.flex-control-thumbs,
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  list-style-type: none;
}

.flex-control-nav.flex-control-thumbs img,
.product-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--stone-border);
  cursor: pointer;
}

.product-summary-shell {
  padding: 28px;
}

.term-meta {
  margin-bottom: 6px;
  color: var(--stone-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-price-shell {
  margin: 0 0 16px;
  color: var(--stone-forest);
  font-weight: 700;
}

.product-price-shell .price,
.product-price-shell .amount {
  color: inherit;
  font-size: 1.3rem;
}

.product-stock {
  margin-bottom: 18px;
  color: var(--stone-forest);
  font-size: 0.95rem;
  font-weight: 600;
}

.product-short-description {
  margin-bottom: 20px;
  color: var(--stone-ink);
  line-height: 1.75;
}

.product-short-description p:last-child {
  margin-bottom: 0;
}

.product-specs {
  margin-bottom: 18px;
  border-top: 1px solid var(--stone-border);
}

.product-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone-border);
  font-size: 0.95rem;
}

.product-spec-row span {
  color: var(--stone-muted);
}

.product-tags-shell {
  margin-bottom: 18px;
}

.application-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f6f6f3;
  border: 1px solid var(--stone-border);
  font-size: 0.9rem;
}

.product-actions {
  display: grid;
  gap: 12px;
}

.product-actions form.cart {
  margin: 0;
}

.product-actions .single_add_to_cart_button,
.product-actions .button.alt {
  width: 100%;
}

.product-actions .variations {
  margin-bottom: 16px;
}

.product-actions .variations th,
.product-actions .variations td {
  text-align: left;
  vertical-align: top;
  padding: 0 0 12px;
}

.product-actions .variations label {
  color: var(--stone-muted);
  font-size: 0.9rem;
}

.product-actions .variations select,
.product-actions .qty {
  width: 100%;
  border: 1px solid var(--stone-border);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
}

.product-actions .quantity {
  margin-bottom: 12px;
}

.product-actions .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--stone-muted);
  font-size: 0.85rem;
}

.product-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--stone-border);
  border-radius: 999px;
  color: var(--stone-ink);
  font-weight: 600;
}

.single-product-details .woocommerce-tabs,
.single-product-related .related.products {
  padding: 24px;
}

.single-product-details .woocommerce-tabs {
  margin-bottom: 28px;
}

.single-product-details .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
}

.single-product-details .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.single-product-details .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--stone-border);
  border-radius: 999px;
  background: #f6f6f3;
  color: var(--stone-ink);
}

.single-product-details .woocommerce-tabs ul.tabs li.active a {
  background: var(--stone-forest);
  color: #fff;
  border-color: var(--stone-forest);
}

.single-product-details .woocommerce-product-attributes th,
.single-product-details .woocommerce-product-attributes td {
  padding: 10px 12px;
}

.single-product-related .related.products > h2 {
  margin-bottom: 20px;
}

.single-product-related .products {
  margin-top: 0;
}

@media (max-width: 760px) {
  .single-post-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .page-banner--shop-taxonomy .page-banner__bg,
  .post-banner--fixed .post-banner__bg {
    background-attachment: scroll;
  }

  .shop-filters__card {
    padding: 20px;
  }

  .shop-taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .shop-filters__actions {
    flex-direction: column;
  }

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

  .product-summary-shell,
  .single-product-details .woocommerce-tabs,
  .single-product-related .related.products {
    padding: 20px;
  }

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

  .product-spec-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-archive-latest ul.products {
    grid-template-columns: 1fr;
  }

  .showcase-page__content {
    margin-bottom: 20px;
  }

  .entry-content .wp-block-stone-showcase-section {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* STONE_SINGLE_POST_END */

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

  .post-grid--archive {
    grid-template-columns: 1fr;
  }

  .shop-taxonomy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-taxonomy-intro {
    flex-direction: column;
  }

  .shop-archive-latest ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-page__shell {
    padding-bottom: 24px;
  }
}

.single-product-page .archive-breadcrumbs {
  margin-top: 32px;
}
.single-product-page .product-descr {
  padding: 0 1rem;
}

.search-result img {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  width: 220px;
  height: auto;
}
.search-result::after {
  content: '';
  display: block;
  clear: both;
}
@media (max-width: 767px) {
  .search-result img {
    width: 100%;
  }
}













