:root {
  --c-forest: #272f06;
  --c-stone: #807974;
  --c-ink: #030408;
  --c-sand: #c7ab9f;
  --c-blue: #1c75a2;
  --c-sky: #91d2f0;
  --c-mauve: #a68a87;
  --c-azure: #2597d0;
  --c-white: #ffffff;
  --c-soft: #f4f6f8;
  --c-line: #dde3e8;

  --shadow-sm: 0 6px 20px rgba(3, 4, 8, 0.08);
  --shadow-md: 0 12px 30px rgba(3, 4, 8, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;

  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--c-ink);
  line-height: 1.65;
  background: var(--c-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section {
  padding: var(--space-8) 0;
}

.section-soft {
  background: linear-gradient(180deg, #fafbfd 0%, #f1f5f8 100%);
  color: var(--c-ink);
}

.section-dark {
  background: linear-gradient(135deg, #162133 0%, #1c75a2 45%, #2597d0 100%);
  color: var(--c-white);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.section-intro {
  color: #4d5560;
  max-width: 760px;
  margin-bottom: var(--space-5);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

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

.btn-primary {
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-blue), var(--c-azure));
  box-shadow: 0 10px 24px rgba(28, 117, 162, 0.26);
}

.btn-secondary {
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-forest), #3a4512);
  box-shadow: 0 10px 24px rgba(39, 47, 6, 0.24);
}

.btn-outline {
  color: var(--c-blue);
  background: transparent;
  border: 1px solid var(--c-blue);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--c-line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-title {
  font-size: 1.1rem;
  color: var(--c-forest);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.76rem;
  color: var(--c-stone);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.main-nav a {
  text-decoration: none;
  color: #2e3741;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
}

/* Hero */
.hero {
  position: relative;
  color: var(--c-white);
  padding: 7rem 0 6.4rem;
  background: linear-gradient(135deg, rgba(3, 4, 8, 0.66), rgba(28, 117, 162, 0.72));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-nursery.jpg") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 22%, rgba(145, 210, 240, 0.26), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(199, 171, 159, 0.22), transparent 45%);
}

.hero-inner {
  display: grid;
  gap: var(--space-5);
}

.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 980px;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 780px;
}

.hero .note-box {
  color: #233b50;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background: rgba(3, 4, 8, 0.24);
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.9rem, 4.3vw, 3rem);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stats.hero-stats-light .hero-stat span {
  color: #334152;
  font-weight: 600;
}

/* Cards and grids */
.grid {
  display: grid;
  gap: var(--space-5);
}

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

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

.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 117, 162, 0.38);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.card p {
  color: #47505c;
  margin: 0;
}

.section-dark .card h3,
.section-dark .card p {
  color: var(--c-ink);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ebf6fb, #deeff8);
  color: var(--c-blue);
  margin-bottom: var(--space-3);
}

.card-icon .icon {
  width: 24px;
  height: 24px;
}

/* Offers cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: var(--space-5);
}

.offer-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card-wide {
  grid-column: 1 / -1;
}

.offer-card-wide .offer-image-wrap {
  aspect-ratio: auto;
  padding: 0.45rem;
}

.offer-card-wide .offer-image {
  display: none;
}

.offer-card-wide .offer-thumbs {
  display: none;
}

.offer-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.offer-image-strip img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d3dfe9;
  display: block;
  cursor: zoom-in;
}

.found-grid {
  display: grid;
  gap: var(--space-5);
}

.found-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
}

.found-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 160px;
  gap: 2px;
  background: #dbe7f1;
}

.found-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.found-body {
  padding: var(--space-4);
  display: grid;
  gap: 0.7rem;
}

.found-body h3 {
  margin-bottom: 0.1rem;
}

.found-note {
  color: #4a5b6d;
}

.found-price {
  font-weight: 700;
  color: #244b69;
}

.found-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.found-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: #eef5fb;
  color: #2a5779;
  border: 1px solid #d5e3ef;
}

.offer-image-wrap {
  background: #eff3f7;
  aspect-ratio: 4 / 3;
  position: relative;
}

.offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.offer-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem 0;
}

.offer-thumb {
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  background: #f2f5f8;
  cursor: pointer;
}

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

.offer-thumb.active {
  border-color: var(--c-blue);
}

.offer-body {
  padding: var(--space-4);
  display: grid;
  gap: 0.85rem;
  align-content: start;
  flex: 1 1 auto;
}

.offer-name {
  font-size: 1.15rem;
  line-height: 1.35;
}

.offer-latin {
  color: #66717f;
  font-size: 0.9rem;
  font-style: italic;
}

.offer-meta {
  color: #5c6672;
  font-size: 0.9rem;
  min-height: 2.8em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.price-regular {
  color: #8a95a3;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.price-sale {
  color: var(--c-forest);
  font-size: 1.45rem;
  font-weight: 800;
}

.volume-note {
  margin-top: 0.25rem;
  font-size: 0.84rem;
  color: #6a7482;
}

.select,
.input {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--c-ink);
  background: var(--c-white);
}

.select:focus,
.input:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(28, 117, 162, 0.68);
  box-shadow: 0 0 0 3px rgba(37, 151, 208, 0.13);
}

/* Catalog table */
.table-wrap {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  padding: 0.8rem;
  background: #f1f5f9;
  color: #3d4856;
  font-weight: 700;
  font-size: 0.83rem;
  border-bottom: 1px solid var(--c-line);
}

tbody td {
  padding: 0.78rem;
  border-bottom: 1px solid #edf2f6;
  font-size: 0.9rem;
  vertical-align: top;
}

.catalog-section th:nth-child(4),
.catalog-section td:nth-child(4) {
  min-width: 132px;
}

.catalog-section th:nth-child(6),
.catalog-section td:nth-child(6) {
  min-width: 110px;
}

tbody tr:hover {
  background: #f7fbff;
}

.catalog-price {
  font-weight: 700;
  white-space: nowrap;
}

.table-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.catalog-sections {
  display: grid;
  gap: var(--space-4);
}

.catalog-section {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-section > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.86rem 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 999px;
  color: var(--c-white);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, var(--c-blue), var(--c-azure));
  box-shadow: 0 10px 24px rgba(28, 117, 162, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  margin: 0 auto;
}

.catalog-section > summary::-webkit-details-marker {
  display: none;
}

.catalog-section > summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 0.6rem;
  color: rgba(255, 255, 255, 0.95);
}

.catalog-section[open] > summary::after {
  content: "−";
}

.catalog-section > summary:hover {
  transform: translateY(-2px);
}

.catalog-section .table-wrap {
  margin-top: var(--space-3);
}

.qty-input {
  width: 58px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  text-align: center;
  padding: 0.3rem 0.4rem;
}

.btn-small {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
}

.btn-print-small {
  padding: 0.48rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 12px;
  background: #12324a;
  color: #fff;
  border: 1px solid #0e2a3f;
  box-shadow: 0 8px 18px rgba(9, 33, 55, 0.28);
}

.btn-print-small:hover {
  transform: translateY(-1px);
}

/* Forms */
.form-grid {
  display: grid;
  gap: var(--space-4);
}

.form-box {
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  background: var(--c-white);
}

.form-box .section-title {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.field-help {
  margin-top: 0.45rem;
  color: #677687;
  font-size: 0.84rem;
}

label {
  font-weight: 600;
  color: #2f3a47;
  margin-bottom: 0.4rem;
  display: block;
}

textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
}

/* Cart */
.cart-floating {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: min(360px, calc(100vw - 2rem));
  background: linear-gradient(160deg, #0f2c44, #1c75a2);
  color: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 45px rgba(3, 4, 8, 0.3);
  z-index: 1200;
  border: 1px solid rgba(145, 210, 240, 0.32);
  display: none;
}

.cart-floating.active {
  display: block;
}

.cart-header {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-close {
  background: transparent;
  border: 0;
  color: var(--c-white);
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-items {
  max-height: 250px;
  overflow-y: auto;
  padding: 0.75rem 1rem;
}

.cart-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.86rem;
}

.cart-total {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.cart-actions {
  padding: 0 1rem 1rem;
  display: grid;
  gap: 0.6rem;
}

.btn-light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--c-white);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2597d0 0%, #1c75a2 45%, #162133 100%);
  color: #d6dee8;
  padding: var(--space-7) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-5);
}

.footer-title {
  color: #f4f8fc;
  margin-bottom: var(--space-3);
}

.footer-col p,
.footer-col a {
  font-size: 0.93rem;
  color: #c6d0db;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: var(--space-2);
  margin-top: 0.2rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link.fb {
  background: #1877f2;
}

.social-link.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 40%, #8134af 75%, #515bd4);
}

.footer-bottom {
  margin-top: var(--space-6);
  border-top: 1px solid rgba(198, 208, 219, 0.22);
  padding-top: var(--space-4);
  font-size: 0.85rem;
  color: #aeb9c5;
}

.footer-logo-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 0.45rem;
  background: #fff;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.story-grid {
  align-items: start;
}

.story-text {
  text-align: right;
}

.story-text p + p {
  margin-top: 1.15rem;
}

.growth-grid {
  align-items: start;
}

.growth-text {
  text-align: right;
}

.growth-text .section-title,
.growth-text .section-intro {
  text-align: right;
  margin-left: auto;
}

.about-intro {
  margin-bottom: var(--space-5);
}

.about-intro .section-title {
  margin-bottom: var(--space-2);
}

.about-intro p {
  color: #465567;
  max-width: 920px;
}

.about-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: var(--space-6);
  align-items: start;
}

.about-flow-reverse {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.about-flow-text {
  max-width: 920px;
}

.about-flow-text p {
  color: #3f4f60;
  line-height: 1.82;
}

.about-flow-text p + p {
  margin-top: 1rem;
}

.about-flow-text-right,
.about-flow-text-right .section-title {
  margin-left: auto;
}

.about-flow-media {
  display: grid;
  gap: var(--space-4);
  position: sticky;
  top: 120px;
}

.about-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  background: #fff;
}

.about-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: var(--space-5);
  align-items: start;
}

.about-layout-reverse {
  grid-template-columns: 0.9fr 1.3fr;
}

.about-stack {
  display: grid;
  gap: var(--space-4);
}

.about-text-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
}

.about-text-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
}

.about-text-card p {
  color: #425061;
}

.about-text-card p + p {
  margin-top: 0.85rem;
}

.about-signoff {
  border-left: 4px solid #1c75a2;
}

.about-photo-column {
  display: grid;
  gap: var(--space-4);
  position: sticky;
  top: 120px;
}

.about-photo-panel {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.about-photo-panel img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.about-photo-panel figcaption {
  font-size: 0.83rem;
  color: #5b6878;
  padding: 0.7rem 0.85rem;
  background: #f7fafc;
}

.about-photo-placeholder figcaption {
  font-style: italic;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: var(--space-4);
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.before-after-wrap {
  margin-top: var(--space-7);
}

.before-after-wrap h3 {
  font-size: 1.28rem;
  margin-bottom: var(--space-4);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.before-after-pair {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #d5e1eb;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.before-after-pair img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.note-box {
  border: 1px solid #d5e4ef;
  background: #f5fbff;
  color: #294056;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
}

.note-box-compact {
  max-width: 680px;
  display: inline-block;
  padding: 0.72rem 0.9rem;
  font-size: 0.82rem;
  font-style: italic;
  color: #56708a;
  border-color: #dce8f3;
  background: rgba(245, 251, 255, 0.9);
}

.mobile-menu-toggle {
  display: none;
}

.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1.35rem;
  z-index: 1200;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1c75a2, #2597d0);
  color: #fff;
  padding: 0.56rem 0.85rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8, 31, 53, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  background: #fff;
}

.faq-item h3 {
  font-size: 1.04rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin: 0;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(6, 16, 25, 0.86);
  display: grid;
  place-items: center;
  padding: 2.2rem 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-img {
  width: min(95vw, 1300px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  background: #0d141b;
}

.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.page-offset {
  scroll-margin-top: 110px;
}

@media (max-width: 1050px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-layout,
  .about-layout-reverse {
    grid-template-columns: 1fr;
  }
  .about-flow,
  .about-flow-reverse {
    grid-template-columns: 1fr;
  }
  .about-photo-column {
    position: static;
  }
  .about-flow-media {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-grid-photos,
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 var(--space-4);
  }
  section {
    padding: var(--space-7) 0;
  }
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    position: relative;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d3dee9;
    background: #fff;
    color: #244057;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.48rem 0.72rem;
    cursor: pointer;
  }
  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .burger-line {
    display: block;
    width: 13px;
    height: 2px;
    border-radius: 2px;
    background: #295577;
  }
  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d6e1ec;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.65rem 0.8rem;
    z-index: 1300;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    width: 100%;
    padding: 0.5rem 0.2rem;
    border-bottom: 0;
  }
  .brand-subtitle {
    display: none;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .grid-3,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .table-wrap {
    overflow-x: auto;
  }
  thead th,
  tbody td {
    padding: 0.62rem;
    font-size: 0.84rem;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-image-strip img {
    height: 125px;
  }
  .found-card {
    grid-template-columns: 1fr;
  }
  .found-gallery {
    grid-auto-rows: 140px;
  }
  .back-to-top {
    left: 0.8rem;
    bottom: 1rem;
    padding: 0.48rem 0.72rem;
    font-size: 0.78rem;
  }
  .story-text {
    text-align: left;
  }
  .growth-text,
  .growth-text .section-title,
  .growth-text .section-intro {
    text-align: left;
    margin-left: 0;
  }
  .about-flow-text-right,
  .about-flow-text-right .section-title {
    text-align: left;
    margin-left: 0;
  }
  .about-flow-media {
    grid-template-columns: 1fr;
  }
  .about-media img {
    height: 230px;
  }
  .about-photo-panel img {
    height: 240px;
  }
  .before-after-pair {
    grid-template-columns: 1fr;
  }
  .before-after-pair img {
    height: 220px;
  }

  /* Catalog table → cards on mobile */
  .col-hide-mobile {
    display: none;
  }
  .table-wrap {
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }
  .catalog-section .table-wrap table,
  .catalog-section .table-wrap thead,
  .catalog-section .table-wrap tbody,
  .catalog-section .table-wrap tr,
  .catalog-section .table-wrap th,
  .catalog-section .table-wrap td {
    display: block;
  }
  .catalog-section .table-wrap thead {
    display: none;
  }
  .catalog-section .table-wrap tbody tr {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    margin-bottom: 0.6rem;
    padding: 0.7rem 0.85rem;
    box-shadow: var(--shadow-sm);
  }
  .catalog-section .table-wrap tbody td {
    padding: 0.22rem 0;
    border-bottom: none;
    font-size: 0.88rem;
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
  }
  .catalog-section .table-wrap tbody td:first-child {
    font-size: 1rem;
    padding-bottom: 0.45rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid var(--c-line);
  }
  .catalog-section .table-wrap tbody td[data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b7585;
    font-size: 0.76rem;
    flex-shrink: 0;
    min-width: 4rem;
  }
  .catalog-section .table-wrap tbody td[data-label=""]::before {
    display: none;
  }
  .catalog-section .table-wrap tbody td.catalog-price {
    font-size: 1rem;
    padding-top: 0.5rem;
    margin-top: 0.2rem;
    border-top: 1px solid var(--c-line);
    justify-content: flex-end;
  }
  .catalog-section .table-wrap tbody td:last-child {
    padding-top: 0.4rem;
  }
  .catalog-section .table-wrap .table-actions {
    width: 100%;
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }
  .catalog-section .table-wrap .qty-input {
    width: 56px;
    flex-shrink: 0;
  }
  .catalog-section .table-wrap .btn-small {
    flex: 1;
    justify-content: center;
  }
}
