@font-face {
  font-family: "Jost";
  src: url("assets/fonts/Jost-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/Jost-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/Jost-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4efe6;
  --bg-soft: #f8f3eb;
  --surface: rgba(255, 251, 245, 0.86);
  --surface-strong: #fffdf8;
  --surface-dark: #1e3442;
  --text: #1a2b36;
  --muted: #5a6671;
  --accent: #9a6742;
  --accent-dark: #7f4f30;
  --line: rgba(38, 59, 72, 0.14);
  --shadow: 0 24px 60px rgba(18, 35, 45, 0.11);
  --shadow-soft: 0 14px 30px rgba(18, 35, 45, 0.08);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -8%, rgba(255, 246, 228, 0.95), transparent 36%),
    radial-gradient(circle at 96% 16%, rgba(214, 232, 239, 0.58), transparent 32%),
    linear-gradient(180deg, #f8f3eb 0%, #f4eee4 44%, #fbf7f1 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px),
    radial-gradient(circle at 74% 82%, rgba(30, 52, 66, 0.16) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  opacity: 0.14;
}

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

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

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

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

.section {
  padding: 96px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(248, 241, 230, 0.74) 0%, rgba(251, 247, 239, 0.58) 100%);
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(227, 218, 203, 0.66) 0%, rgba(236, 228, 215, 0.46) 40%, rgba(212, 228, 235, 0.48) 100%);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 32px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3,
.logo span {
  font-family: "Cormorant Garamond", "Jost", "Trebuchet MS", serif;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 920px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 246, 239, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38, 59, 72, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.logo span {
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  line-height: 1.25;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--surface-dark);
  border-color: rgba(30, 52, 66, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.nav a.is-active {
  color: var(--surface-dark);
  border-color: rgba(30, 52, 66, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(30, 52, 66, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--surface-dark);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  padding: 58px 0 50px;
}

.hero__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero__content {
  padding: 34px 0;
  position: relative;
}

.hero__content::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: -54px;
  top: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 103, 66, 0.24) 0%, rgba(154, 103, 66, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 102px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hero__role {
  margin: 20px 0 18px;
  max-width: 720px;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.1;
  color: #173848;
}

.hero__lead {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 19px;
  color: var(--muted);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__meta span,
.media-topics span,
.logo-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 52, 66, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: var(--surface-dark);
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #1f3746 0%, #274a5e 100%);
  color: #fcfaf5;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(22, 42, 54, 0.26);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(22, 42, 54, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--surface-dark);
  border-color: rgba(30, 52, 66, 0.18);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.card-panel,
.issue-card,
.reason-card,
.company-card,
.format-card,
.process-card,
.testimonial-card,
.faq-item,
.final-cta__box,
.inline-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(17, 46, 61, 0.22) 0%, rgba(17, 46, 61, 0) 58%);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card__panel {
  padding: 24px 26px 28px;
}

.hero-card__panel strong,
.reason-card strong,
.media-list strong,
.testimonial-card__type,
.company-card h3,
.format-card h3,
.process-card h3,
.about-aside h3 {
  font-size: 22px;
  line-height: 1.12;
}

.hero-card__panel p,
.reason-card p,
.media-list p,
.company-card p,
.process-card li,
.testimonial-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.trust-strip {
  padding-bottom: 12px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.trust-chip {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(38, 59, 72, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86) 0%, rgba(250, 243, 233, 0.82) 100%);
  color: var(--surface-dark);
  font-size: 18px;
  line-height: 1.15;
  box-shadow: var(--shadow-soft);
}

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

.issue-card,
.reason-card,
.testimonial-card {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.issue-card:hover,
.reason-card:hover,
.company-card:hover,
.format-card:hover,
.process-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 68px rgba(18, 35, 45, 0.14);
}

.issue-card h3,
.reason-card strong,
.company-card h3,
.format-card h3,
.process-card h3,
.faq-column h3 {
  margin: 0 0 12px;
}

.issue-card h3 {
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.issue-card p,
.about-copy p,
.feature-list li,
.company-card p,
.format-card li,
.media-list p,
.inline-cta p,
.footer p {
  font-size: 17px;
  color: var(--muted);
}

.about-grid,
.media-grid,
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.about-copy {
  max-width: 760px;
}

.about-copy p {
  margin: 0 0 18px;
}

.card-panel {
  padding: 28px;
}

.feature-list {
  margin: 0;
  padding-left: 22px;
}

.feature-list li + li {
  margin-top: 12px;
}

.reasons-grid,
.companies-grid,
.formats-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.reason-card {
  padding: 26px;
}

.media-grid {
  align-items: center;
}

.media-topics,
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.media-panel {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.93) 0%, rgba(243, 236, 225, 0.88) 100%);
}

.media-list {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.media-list p {
  margin-top: 8px;
}

.companies-layout {
  display: grid;
  gap: 30px;
}

.company-card {
  padding: 28px;
}

.company-card--main {
  background: linear-gradient(160deg, rgba(255, 249, 240, 0.95) 0%, rgba(235, 224, 205, 0.9) 54%, rgba(223, 232, 236, 0.88) 100%);
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
}

.inline-cta p {
  margin: 0;
  max-width: 720px;
}

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

.format-card,
.process-card {
  padding: 28px;
}

.format-card__label,
.testimonial-card__type {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(154, 103, 66, 0.14);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card ol {
  margin: 0;
  padding-left: 22px;
}

.process-card li + li {
  margin-top: 12px;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.45;
}

.faq-column h3 {
  font-size: 26px;
}

.faq-column {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  position: relative;
  font-size: 19px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 26px;
  line-height: 1;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 24px;
}

.final-cta {
  padding-top: 20px;
  padding-bottom: 96px;
}

.final-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(140deg, rgba(20, 40, 51, 0.96) 0%, rgba(40, 63, 77, 0.95) 66%, rgba(134, 88, 54, 0.9) 100%);
}

.final-cta .eyebrow,
.final-cta .section-title,
.final-cta .section-subtitle,
.final-cta .btn--secondary {
  color: #f9f4eb;
}

.final-cta .btn {
  background: #f7f1e7;
  color: var(--surface-dark);
  box-shadow: none;
}

.final-cta .btn--secondary {
  background: transparent;
  border-color: rgba(249, 244, 235, 0.4);
}

.footer {
  padding: 0 0 56px;
}

.footer__grid {
  padding-top: 10px;
  border-top: 1px solid rgba(38, 59, 72, 0.18);
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.footer p {
  margin: 0 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.footer-links a,
.footer a[href^="tel:"],
.footer a[href^="mailto:"] {
  color: var(--accent-dark);
}

.catalog-hero {
  padding-bottom: 28px;
}

.materials-list {
  padding-top: 36px;
}

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

.product-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.product-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(154, 103, 66, 0.2);
  background: rgba(255, 251, 243, 0.86);
  color: var(--surface-dark);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.hero__content > * {
  animation: fade-up 0.62s ease both;
}

.hero__content > :nth-child(1) {
  animation-delay: 0.04s;
}

.hero__content > :nth-child(2) {
  animation-delay: 0.1s;
}

.hero__content > :nth-child(3) {
  animation-delay: 0.16s;
}

.hero__content > :nth-child(4) {
  animation-delay: 0.22s;
}

.hero__content > :nth-child(5) {
  animation-delay: 0.28s;
}

.hero__content > :nth-child(6) {
  animation-delay: 0.34s;
}

@media (max-width: 1120px) {
  .trust-strip__grid,
  .reasons-grid,
  .companies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading--split,
  .hero__wrap,
  .about-grid,
  .media-grid,
  .final-cta__box,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 76px 0;
  }

  .site-header__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
    min-height: 64px;
  }

  .logo {
    flex: 1 1 auto;
  }

  .logo small {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .nav {
    display: none;
    width: 100%;
    margin-top: 10px;
    border: 1px solid rgba(30, 52, 66, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    padding: 8px;
    gap: 8px;
  }

  .nav.nav--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  .trust-strip__grid,
  .issue-grid,
  .reasons-grid,
  .companies-grid,
  .catalog-grid,
  .formats-grid,
  .process-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__visual {
    order: -1;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-card img {
    aspect-ratio: 16 / 11;
    object-position: center top;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 28px;
  }

  .hero__wrap {
    gap: 20px;
  }

  .hero__content {
    padding: 8px 0 0;
  }

  .hero__content h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .logo span {
    font-size: 20px;
  }

  .logo small {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .hero__role {
    font-size: 24px;
  }

  .hero-card {
    border-radius: 24px;
  }

  .hero-card__panel {
    padding: 14px 16px 18px;
  }

  .hero-card__panel strong {
    font-size: 18px;
  }

  .hero__lead,
  .section-subtitle,
  .issue-card p,
  .about-copy p,
  .feature-list li,
  .company-card p,
  .format-card li,
  .footer p,
  .faq-item p {
    font-size: 16px;
  }

  .trust-chip,
  .issue-card,
  .reason-card,
  .company-card,
  .product-card,
  .format-card,
  .process-card,
  .testimonial-card,
  .card-panel,
  .inline-cta,
  .final-cta__box {
    padding-left: 22px;
    padding-right: 22px;
  }

  .btn,
  .final-cta__actions .btn {
    width: 100%;
  }

  .hero__actions,
  .final-cta__actions {
    width: 100%;
  }

  .faq-item summary {
    font-size: 17px;
    padding-right: 52px;
  }

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

  .testimonial-card p {
    font-size: 18px;
  }
}
