/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: var(--space-3xl);
}

/* Grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Ambient orbs */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 148, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__orb {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 148, 28, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--weight-semibold);
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3xl);
  font-weight: var(--weight-light);
  max-width: 480px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-md);
  max-width: 380px;
}

.hero__cta .btn {
  justify-content: center;
  width: 100%;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  max-width: 380px;
  width: 100%;
}

.hero__card-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.hero__card-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-bg-section);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

.hero__card-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__card-item-icon svg {
  display: block;
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-full);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

/* ===== ABOUT ===== */
.about {
  background: var(--color-bg-section);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-warm), transparent);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #fff;
  margin-bottom: var(--space-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.about__text-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about__body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.about__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about__highlight {
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.about__highlight::before {
  content: '«';
  position: absolute;
  top: -var(--space-xl);
  left: var(--space-xl);
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(200, 148, 28, 0.12);
  line-height: 1;
  pointer-events: none;
}

.about__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  font-style: italic;
  line-height: 1.5;
  color: #FAF6EF;
  position: relative;
  z-index: 1;
}

.about__quote-author {
  margin-top: var(--space-lg);
  font-size: 0.78rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E5B23A;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.about__quote-author::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* ===== PRODUCTS — carousel ===== */
.products {
  background: var(--color-bg-section);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-warm), transparent);
}

.products__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2xl);
  align-items: end;
  margin-bottom: var(--space-3xl);
}

.products__head-text {
  max-width: 720px;
}

.products__head-text .section-subtitle {
  margin-top: 0;
}

/* Carousel nav (above track) */
.carousel__nav {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.carousel__btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.carousel__btn:disabled {
  opacity: 0.30;
  cursor: not-allowed;
}

.carousel__btn:disabled:hover {
  background: transparent;
  color: var(--color-text);
}

.carousel__counter {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  min-width: 64px;
  text-align: center;
  user-select: none;
}

/* Carousel track */
.products__carousel {
  position: relative;
  margin: 0 calc(-1 * var(--container-padding));
  padding: 0 var(--container-padding);
}

.products__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--space-xl) * 2) / 3);
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--container-padding);
  padding-block: var(--space-md) var(--space-xl);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products__track::-webkit-scrollbar {
  display: none;
}

.products__track > * {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Dots */
.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-md);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-base);
}

.carousel__dot:hover {
  background: var(--color-text-muted);
}

.carousel__dot.is-active {
  background: var(--color-accent);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ===== INDUSTRIES — editorial photo-led catalogue ===== */
.industries {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-warm), transparent);
}

/* Subtle paper grain over the section */
.industries::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.industries .container {
  position: relative;
  z-index: 1;
}

.industries__header {
  text-align: center;
  margin-bottom: var(--space-5xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.industries__header .section-title em {
  font-style: italic;
  color: var(--color-accent);
}

.industries__header .section-subtitle {
  margin: 0 auto;
}

/* Chapter — alternating photo / content composition */
.chapter {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, var(--space-5xl));
  align-items: center;
  padding: var(--space-4xl) 0;
  position: relative;
}

.chapter + .chapter {
  border-top: 1px solid var(--color-border);
}

.chapter--reverse {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.chapter--reverse .chapter__photo {
  order: 2;
}

.chapter--reverse .chapter__body {
  order: 1;
}

/* Photo column */
.chapter__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.chapter__photo-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(30, 18, 8, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  background: var(--color-bg-section);
  isolation: isolate;
}

.chapter__photo-frame::before {
  content: '';
  position: absolute;
  inset: -8%;
  border: 1px dashed rgba(200, 148, 28, 0.35);
  border-radius: 50%;
  z-index: -1;
  animation: chapterRing 60s linear infinite;
}

.chapter__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18) 0%, transparent 45%),
    linear-gradient(135deg, transparent 60%, rgba(30, 18, 8, 0.12) 100%);
  pointer-events: none;
}

@keyframes chapterRing {
  to { transform: rotate(360deg); }
}

.chapter__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chapter:hover .chapter__photo-frame img {
  transform: scale(1.06);
}

.chapter__photo-glyph {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  opacity: 0.10;
  line-height: 0.8;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  bottom: -0.15em;
  right: -0.05em;
}

.chapter--reverse .chapter__photo-glyph {
  right: auto;
  left: -0.05em;
}

/* Body column */
.chapter__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.chapter__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chapter__index {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.chapter__index::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.chapter__title em {
  font-style: italic;
  color: var(--color-accent);
}

.chapter__lede {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 56ch;
  font-weight: var(--weight-light);
}

/* Items list */
.chapter__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.chapter-item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-fast), padding var(--transition-fast);
  position: relative;
}

.chapter-item::before {
  content: '';
  position: absolute;
  left: -100vw;
  right: 100%;
  top: 0;
  bottom: 0;
  background: var(--color-accent-light);
  transition: right var(--transition-slow);
  pointer-events: none;
  z-index: -1;
}

.chapter-item:hover {
  padding-left: var(--space-md);
}

.chapter-item:hover::before {
  right: -100vw;
}

.chapter-item__lead {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}

a.chapter-item__lead--link {
  text-decoration: none;
  color: inherit;
  align-self: center;
  border-radius: var(--radius-sm);
  margin: -6px;
  padding: 6px;
  transition: color var(--transition-fast);
}

a.chapter-item__lead--link:hover .chapter-item__name,
a.chapter-item__lead--link:focus-visible .chapter-item__name {
  color: var(--color-accent);
}

a.chapter-item__lead--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.chapter-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.chapter-item__name {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  line-height: 1.4;
}

.chapter-item__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.chapter-item__marks .product-card__mark {
  background: transparent;
  border: 1px solid rgba(200, 148, 28, 0.35);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.chapter-item:hover .chapter-item__marks .product-card__mark {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ----- Clickable mark — links to variant on detail page ----- */
.chapter-item__marks .product-card__mark--link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 13px;
  min-height: 32px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.chapter-item__marks .product-card__mark--link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
  opacity: 0.5;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.chapter-item__marks .product-card__mark--link:hover,
.chapter-item__marks .product-card__mark--link:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(200, 148, 28, 0.7);
}

.chapter-item__marks .product-card__mark--link:hover::after,
.chapter-item__marks .product-card__mark--link:focus-visible::after {
  transform: rotate(45deg) translate(2px, -2px);
  opacity: 1;
}

.chapter-item__marks .product-card__mark--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.chapter-item__marks .product-card__mark--link:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 80ms;
}

@media (max-width: 768px) {
  .chapter-item__marks {
    gap: 8px;
  }
  .chapter-item__marks .product-card__mark--link {
    min-height: 40px;
    padding: 9px 14px 9px 16px;
    font-size: var(--text-sm);
  }
  .chapter-item__marks .product-card__mark--link::after {
    width: 9px;
    height: 9px;
    opacity: 0.85;
  }
}

/* ===== CONTACTS ===== */
.contacts {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.contacts::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 148, 28, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contacts__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contacts__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-semibold);
  color: var(--color-text-light);
  line-height: 1.1;
}

.contacts__title em {
  font-style: italic;
  color: var(--color-accent);
}

.contacts__desc {
  font-size: var(--text-lg);
  color: rgba(250, 246, 239, 0.55);
  line-height: 1.7;
  font-weight: var(--weight-light);
}

.contacts__methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contacts__method {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  text-decoration: none;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250, 246, 239, 0.08);
  transition: border-color var(--transition-base), background var(--transition-base);
}

.contacts__method:hover {
  border-color: rgba(200, 148, 28, 0.40);
  background: rgba(200, 148, 28, 0.05);
}

.contacts__method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(200, 148, 28, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contacts__method-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contacts__method-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.35);
}

.contacts__method-value {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

/* Contact emails (3 buttons) */
.contacts__emails {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contacts__email {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(250, 246, 239, 0.12);
  background: rgba(250, 246, 239, 0.03);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.contacts__email:hover {
  border-color: rgba(200, 148, 28, 0.50);
  background: rgba(200, 148, 28, 0.06);
  transform: translateY(-1px);
}

.contacts__email--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.contacts__email--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 12px 36px rgba(200, 148, 28, 0.30);
}

.contacts__email-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.45);
}

.contacts__email--primary .contacts__email-label {
  color: rgba(255, 255, 255, 0.80);
}

.contacts__email-value {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text-light);
  letter-spacing: 0.01em;
  word-break: break-all;
}

.contacts__email--primary .contacts__email-value {
  color: #fff;
}

/* Contact form */
.contacts__form {
  background: rgba(250, 246, 239, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  backdrop-filter: blur(8px);
}

.contacts__form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.contacts__form-sub {
  font-size: var(--text-sm);
  color: rgba(250, 246, 239, 0.45);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.contacts__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .hero__visual {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__visual {
    order: -1;
  }

  .products__head {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .carousel__nav {
    align-self: flex-end;
  }

  .products__track {
    grid-auto-columns: calc((100% - var(--space-xl)) / 2);
  }

  .chapter,
  .chapter--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .chapter--reverse .chapter__photo {
    order: 0;
  }

  .chapter--reverse .chapter__body {
    order: 0;
  }

  .chapter__photo-frame {
    max-width: 360px;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

@media (max-width: 768px) {
  .about__stats {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-2xl);
  }

  .products__head {
    margin-bottom: var(--space-xl);
  }

  .products__track {
    grid-auto-columns: 86%;
    gap: var(--space-md);
  }

  .carousel__nav {
    align-self: stretch;
    justify-content: space-between;
  }

  .chapter {
    padding: var(--space-3xl) 0;
  }

  .chapter__photo {
    padding: 0;
  }

  .chapter__photo-frame {
    max-width: 280px;
  }

  .chapter__photo-glyph {
    font-size: clamp(5rem, 18vw, 9rem);
  }

  .chapter-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
  }

  .chapter-item__marks {
    justify-content: flex-start;
  }

  .contacts__title {
    font-size: var(--text-4xl);
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: var(--space-2xl);
  }

  .hero__subtitle {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-3xl);
  }

  .contacts__form {
    padding: var(--space-2xl);
  }
}
