:root {
  --bg: #f6f0e7;
  --bg-soft: #eef3f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 250, 245, 0.92);
  --text: #17202b;
  --muted: #5f6975;
  --line: rgba(23, 32, 43, 0.08);
  --accent: #e56b4a;
  --accent-strong: #b74c31;
  --accent-soft: #ffd0bb;
  --cool: #217b76;
  --cool-soft: #9bd4ce;
  --shadow: 0 28px 60px rgba(23, 32, 43, 0.13);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --font-display: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI", "Tahoma", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(229, 107, 74, 0.2), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(33, 123, 118, 0.18), transparent 22%),
    linear-gradient(140deg, var(--bg) 0%, #f4ede5 38%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(30px);
}

.page-glow--one {
  top: 14%;
  right: -90px;
  width: 240px;
  height: 240px;
  background: rgba(255, 170, 132, 0.32);
}

.page-glow--two {
  left: -100px;
  bottom: 14%;
  width: 260px;
  height: 260px;
  background: rgba(109, 188, 182, 0.22);
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 100px 24px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.hero-copy h1,
.highlight-banner h3,
.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.section-heading p,
.hero-text,
.contact-panel p,
.visual-card p,
.info-card p,
.process-step p,
.testimonial-card p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 32, 43, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 240, 231, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(23, 32, 43, 0.06);
}

.header-inner,
.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a756f, #5ab9ad 55%, #ffd1b0);
  color: white;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px rgba(33, 123, 118, 0.22);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: rgba(23, 32, 43, 0.86);
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--cool));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding-top: 54px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #f3a462);
  box-shadow: 0 18px 28px rgba(229, 107, 74, 0.22);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 43, 0.08);
}

.btn--dark {
  color: white;
  background: rgba(23, 32, 43, 0.94);
}

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

.stat-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 32, 43, 0.08);
  box-shadow: 0 16px 32px rgba(23, 32, 43, 0.08);
}

.stat-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 58px 18px 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 32%),
    linear-gradient(160deg, rgba(33, 123, 118, 0.28), rgba(229, 107, 74, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14% 8% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(
    circle at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.5),
    transparent 55%
  );
  filter: blur(8px);
}

.visual-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.visual-card--main {
  inset: 88px 52px 46px 24px;
  display: grid;
  gap: 18px;
  padding: 30px;
}

.visual-card--main h2,
.highlight-banner h3,
.info-card h3,
.process-card h3,
.contact-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.visual-meter {
  width: 100%;
  height: 12px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(23, 32, 43, 0.08);
}

.visual-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--cool));
}

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

.visual-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--cool));
}

.visual-card--floating {
  width: min(100%, 250px);
  display: grid;
  gap: 10px;
  padding: 22px;
}

.visual-card--top {
  top: 14px;
  right: 8px;
}

.visual-card--bottom {
  right: 0;
  bottom: 0;
}

.visual-card strong,
.info-card h3,
.process-card h3,
.process-step h4,
.catalog-body h3,
.testimonial-card strong,
.contact-list strong {
  margin: 0;
  color: var(--text);
}

.brand-strip {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 38px 24px 0;
}

.brand-strip__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.brand-strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(23, 32, 43, 0.72);
  font-weight: 600;
}

.brand-strip__track span:not(:last-child)::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(23, 32, 43, 0.18);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(23, 32, 43, 0.75);
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.chip:hover,
.chip.is-active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 236, 0.92));
  box-shadow: 0 12px 20px rgba(23, 32, 43, 0.08);
}

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

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 38px rgba(23, 32, 43, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 52px rgba(23, 32, 43, 0.12);
}

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

.catalog-visual {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.catalog-visual::before,
.catalog-visual::after {
  content: "";
  position: absolute;
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-visual::before,
.catalog-card:hover .catalog-visual::after {
  transform: translateY(-6px) rotate(4deg);
}

.catalog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-media--1 {
  background: linear-gradient(135deg, #edb57d, #e46b49 64%, #7e3127);
}

.card-media--1::before {
  bottom: -16px;
  left: 22px;
  width: 170px;
  height: 170px;
  border-radius: 38% 62% 58% 42% / 42% 34% 66% 58%;
  background: rgba(255, 255, 255, 0.26);
}

.card-media--1::after {
  top: 44px;
  right: 30px;
  width: 110px;
  height: 140px;
  border-radius: 34px;
  background: rgba(22, 18, 17, 0.16);
}

.card-media--2 {
  background: linear-gradient(135deg, #d8f0ec, #7bc5bf 58%, #267975);
}

.card-media--2::before {
  top: 56px;
  left: 34px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.card-media--2::after {
  bottom: -18px;
  right: 20px;
  width: 170px;
  height: 170px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.18);
}

.card-media--3 {
  background: linear-gradient(135deg, #f3ece3, #d9cab5 45%, #93866f);
}

.card-media--3::before {
  inset: auto auto 16px 26px;
  width: 174px;
  height: 112px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
}

.card-media--3::after {
  top: 40px;
  right: 28px;
  width: 88px;
  height: 150px;
  border-radius: 18px;
  background: rgba(72, 62, 48, 0.18);
}

.card-media--4 {
  background: linear-gradient(135deg, #ffd9c9, #f0b188 58%, #a35e43);
}

.card-media--4::before {
  top: 56px;
  left: 24px;
  width: 150px;
  height: 150px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.24);
}

.card-media--4::after {
  bottom: 22px;
  right: 26px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(84, 40, 26, 0.18);
}

.card-media--5 {
  background: linear-gradient(135deg, #f1d8b8, #d59c72 56%, #81543c);
}

.card-media--5::before {
  bottom: 16px;
  left: 28px;
  width: 182px;
  height: 92px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.22);
}

.card-media--5::after {
  top: 34px;
  right: 34px;
  width: 108px;
  height: 108px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
}

.card-media--6 {
  background: linear-gradient(135deg, #dfe9ec, #9bb0bc 52%, #44515c);
}

.card-media--6::before {
  top: 46px;
  left: 28px;
  width: 130px;
  height: 170px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.22);
}

.card-media--6::after {
  bottom: -10px;
  right: 20px;
  width: 165px;
  height: 126px;
  border-radius: 34px 34px 0 0;
  background: rgba(0, 0, 0, 0.12);
}

.catalog-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-heading h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.card-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-heading strong {
  white-space: nowrap;
  font-size: 1.02rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 32, 43, 0.05);
  color: rgba(23, 32, 43, 0.72);
  font-size: 0.9rem;
}

.section--events,
.section--news,
.section--about,
.section--group {
  position: relative;
}

.event-grid,
.group-grid,
.about-grid {
  display: grid;
  gap: 24px;
}

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

.event-card,
.story-card,
.about-points,
.company-card,
.favorites-panel,
.news-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 44px rgba(23, 32, 43, 0.08);
}

.event-card,
.story-card,
.about-points,
.company-card,
.news-card {
  overflow: hidden;
}

.event-card {
  display: grid;
}

.event-visual,
.news-visual {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.event-visual::before,
.event-visual::after,
.news-visual::before,
.news-visual::after {
  content: "";
  position: absolute;
}

.event-media--1 {
  background: linear-gradient(135deg, #f2d9c7, #d88f78 52%, #75473c);
}

.event-media--1::before {
  left: 24px;
  bottom: 18px;
  width: 180px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.22);
}

.event-media--1::after {
  top: 34px;
  right: 34px;
  width: 110px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.event-media--2 {
  background: linear-gradient(135deg, #d3ecf2, #7ab9d1 58%, #345776);
}

.event-media--2::before {
  left: 26px;
  top: 34px;
  width: 140px;
  height: 140px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.24);
}

.event-media--2::after {
  right: 24px;
  bottom: 18px;
  width: 160px;
  height: 90px;
  border-radius: 999px;
  background: rgba(12, 39, 71, 0.18);
}

.event-media--3 {
  background: linear-gradient(135deg, #dce6df, #8ea593 56%, #435247);
}

.event-media--3::before {
  top: 28px;
  left: 24px;
  width: 180px;
  height: 100px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.22);
}

.event-media--3::after {
  right: 28px;
  bottom: 22px;
  width: 84px;
  height: 150px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.event-body,
.news-body,
.story-card,
.about-points,
.company-card,
.favorites-panel {
  padding: 28px;
}

.event-body {
  display: grid;
  gap: 16px;
}

.event-body h3,
.story-card h3,
.about-points h3,
.company-card h3,
.favorites-panel h3,
.news-body h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.event-body p,
.story-card p,
.about-points p,
.company-card p,
.favorites-panel p,
.news-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: start;
}

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

.catalog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quantity-picker {
  display: inline-grid;
  grid-template-columns: 42px 74px 42px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 43, 0.1);
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  color: var(--text);
}

.qty-input {
  width: 100%;
  height: 42px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.favorite-toggle {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(23, 32, 43, 0.05);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.favorite-toggle:hover,
.favorite-toggle.is-active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent), #f3a462);
  color: white;
}

.catalog-card.is-favorite {
  border-color: rgba(229, 107, 74, 0.3);
  box-shadow: 0 30px 54px rgba(229, 107, 74, 0.14);
}

.favorites-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 22px;
}

.favorites-top {
  display: grid;
  gap: 12px;
}

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

.favorites-stats article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(23, 32, 43, 0.05);
}

.favorites-stats strong {
  font-size: 1.5rem;
  line-height: 1;
}

.favorites-stats span {
  color: var(--muted);
}

.favorites-empty {
  margin: 0;
}

.favorites-empty.is-hidden {
  display: none;
}

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

.favorites-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 32, 43, 0.08);
}

.favorites-item span {
  color: var(--text);
  font-weight: 700;
}

.favorites-item strong {
  color: var(--accent-strong);
  white-space: nowrap;
}

.favorites-message {
  display: grid;
  gap: 10px;
}

.favorites-message label {
  font-weight: 700;
}

#whatsapp-preview {
  width: 100%;
  min-height: 170px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 32, 43, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  line-height: 1.6;
  resize: vertical;
}

.favorites-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.news-card {
  display: grid;
}

.news-card--large {
  grid-row: span 2;
}

.news-media--1 {
  min-height: 420px;
  background: linear-gradient(135deg, #f0e5db, #e1b99c 52%, #875d47);
}

.news-media--1::before {
  top: 34px;
  left: 34px;
  width: 200px;
  height: 160px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.22);
}

.news-media--1::after {
  right: 34px;
  bottom: 30px;
  width: 130px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.news-media--2 {
  background: linear-gradient(135deg, #dde8f0, #8ab0cb 56%, #4e6684);
}

.news-media--2::before {
  inset: auto auto 24px 24px;
  width: 160px;
  height: 90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.news-media--2::after {
  right: 24px;
  top: 28px;
  width: 92px;
  height: 132px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
}

.news-media--3 {
  background: linear-gradient(135deg, #e9e6df, #b9aa92 54%, #655847);
}

.news-media--3::before {
  left: 26px;
  top: 30px;
  width: 130px;
  height: 130px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.news-media--3::after {
  right: 30px;
  bottom: 26px;
  width: 126px;
  height: 82px;
  border-radius: 999px;
  background: rgba(31, 24, 20, 0.14);
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.story-card,
.about-points {
  display: grid;
  gap: 18px;
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-list div {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 32, 43, 0.08);
}

.value-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.value-list strong {
  font-size: 1.08rem;
}

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

.company-card {
  display: grid;
  gap: 18px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(23, 32, 43, 0.05);
  color: var(--text);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.social-chip:hover {
  transform: translateY(-2px);
  background: rgba(229, 107, 74, 0.12);
  color: var(--accent-strong);
}

.social-chip svg {
  width: 20px;
  height: 20px;
}

.social-chip svg rect,
.social-chip svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-chip svg path {
  fill: currentColor;
}

.text-link {
  font-weight: 800;
  width: fit-content;
}

.text-link::after {
  content: " ->";
}

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

.experience-stack {
  display: grid;
  gap: 24px;
}

.info-card,
.process-card,
.testimonial-card,
.contact-panel,
.contact-form,
.faq-item,
.highlight-banner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 44px rgba(23, 32, 43, 0.08);
}

.info-card,
.process-card,
.testimonial-card,
.contact-panel,
.contact-form {
  padding: 28px;
}

.info-card {
  display: grid;
  gap: 16px;
}

.process-card {
  display: grid;
  gap: 24px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
}

.process-step strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229, 107, 74, 0.16), rgba(33, 123, 118, 0.16));
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.highlight-banner {
  margin-top: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(33, 123, 118, 0.94), rgba(15, 34, 51, 0.96));
  color: white;
}

.highlight-banner .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.highlight-banner h3 {
  margin-top: 14px;
  max-width: 12ch;
}

.testimonial-card {
  display: grid;
  gap: 16px;
}

.testimonial-card strong {
  font-size: 1rem;
}

.testimonial-card span {
  color: var(--muted);
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.faq-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(23, 32, 43, 0.06);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.faq-item.is-open .faq-symbol {
  transform: rotate(45deg);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.contact-list div {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 32, 43, 0.08);
}

.contact-list span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 32, 43, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  resize: vertical;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(33, 123, 118, 0.4);
  box-shadow: 0 0 0 5px rgba(33, 123, 118, 0.12);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--cool);
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 22px;
}

.footer-inner {
  color: rgba(23, 32, 43, 0.65);
  border-top: 1px solid rgba(23, 32, 43, 0.08);
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.enhanced .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 1, 0.22, 1);
}

.enhanced .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .event-grid,
  .catalog-layout,
  .about-grid,
  .group-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .favorites-panel {
    position: static;
  }

  .news-card--large {
    grid-row: auto;
  }

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

  .highlight-banner h3 {
    max-width: 18ch;
  }
}

@media (max-width: 820px) {
  .site-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(23, 32, 43, 0.08);
    background: rgba(255, 250, 245, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .nav-cta {
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-stats,
  .event-grid,
  .catalog-grid,
  .testimonial-grid,
  .experience-grid,
  .contact-grid,
  .form-row,
  .catalog-layout,
  .about-grid,
  .group-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .highlight-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 18px 0;
  }

  .header-inner,
  .footer-inner,
  .brand-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .visual-card--main {
    position: relative;
    inset: auto;
    margin: 74px 16px 0;
    padding: 24px;
  }

  .visual-card--top,
  .visual-card--bottom {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 16px 12px;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .catalog-actions,
  .favorites-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-picker {
    width: 100%;
    grid-template-columns: 48px 1fr 48px;
  }

  .hero-visual::before {
    inset: 0;
    min-height: 320px;
  }

  .site-footer {
    padding-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
