:root {
  --ink: #102523;
  --ink-2: #213d39;
  --forest: #1f5b4f;
  --sea: #4f8c86;
  --gold: #b88a42;
  --clay: #b96f50;
  --paper: #f7f4ec;
  --paper-2: #ebe5d8;
  --mist: #dbe4df;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 37, 35, 0.18);
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 48px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.94);
  box-shadow: 0 1px 0 rgba(16, 37, 35, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.brand-logo-image {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: -1px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

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

.site-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #1d1710;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(16, 37, 35, 0.18);
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.language-switcher button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  color: var(--ink);
  background: var(--gold);
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  transform: translateY(-1px);
}

.site-header.is-scrolled .language-switcher button.is-active,
.site-header.nav-active .language-switcher button.is-active {
  color: #1d1710;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh + 340svh);
  display: block;
  color: var(--white);
}

.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 72px) clamp(20px, 5vw, 72px) 116px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 30, 28, 0.88) 0%, rgba(9, 30, 28, 0.64) 42%, rgba(9, 30, 28, 0.2) 78%),
    linear-gradient(0deg, rgba(16, 37, 35, 0.84) 0%, rgba(16, 37, 35, 0) 36%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 12vw, 9.5rem);
  line-height: 0.87;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-statement {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 750;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  pointer-events: none;
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(110%) skewX(-18deg);
}

.button-primary {
  background: var(--gold);
  color: #1d1710;
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(184, 138, 66, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c69a52;
  border-color: #c69a52;
  box-shadow: 0 20px 42px rgba(184, 138, 66, 0.3);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(16, 37, 35, 0.22);
}

.contact-form .button-primary {
  width: 100%;
}

.hero-proof {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span:last-child {
  border-right: 0;
}

.catalog-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: calc(var(--header-h) + 72px) clamp(20px, 5vw, 72px) 112px;
}

.catalog-hero-media,
.catalog-hero-media img,
.catalog-hero-shade {
  position: absolute;
  inset: 0;
}

.catalog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 30, 28, 0.9) 0%, rgba(9, 30, 28, 0.62) 48%, rgba(9, 30, 28, 0.2) 88%),
    linear-gradient(0deg, rgba(16, 37, 35, 0.84) 0%, rgba(16, 37, 35, 0) 42%);
}

.catalog-hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
}

.catalog-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
}

.catalog-hero-copy {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.catalog-hero-proof {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.catalog-hero-proof span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.catalog-hero-proof span:last-child {
  border-right: 0;
}

.band {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.band-quiet {
  background: var(--paper-2);
}

.band-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 138, 66, 0.18), transparent 34%),
    linear-gradient(135deg, #102523, #1f5b4f 62%, #6d5030);
}

.intro-grid,
.section-heading,
.market-grid,
.international-wrap,
.contact-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.16;
}

p {
  margin: 0;
}

.intro-copy {
  display: grid;
  gap: 22px;
  color: rgba(16, 37, 35, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.section-lead {
  color: rgba(16, 37, 35, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.band-dark .section-lead,
.band-dark .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 37, 35, 0.16);
  border-left: 1px solid rgba(16, 37, 35, 0.16);
}

.feature-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid rgba(16, 37, 35, 0.16);
  border-bottom: 1px solid rgba(16, 37, 35, 0.16);
  background: rgba(255, 255, 255, 0.28);
}

.feature-number {
  color: var(--clay);
  font-weight: 900;
}

.feature-card p,
.audience-panel p,
.method-step p,
.signal-list span,
.international-copy p {
  color: rgba(16, 37, 35, 0.72);
}

.audience-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-panel {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(16, 37, 35, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 37, 35, 0.08);
}

.audience-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
}

.audience-top span {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.audience-top strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.method-steps {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.method-step {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(16, 37, 35, 0.48);
}

.method-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 900;
}

.method-step p {
  color: rgba(255, 255, 255, 0.76);
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
}

.market .section-lead {
  margin-top: 24px;
}

.signal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 37, 35, 0.14);
}

.signal-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(16, 37, 35, 0.14);
}

.signal-list strong {
  color: var(--forest);
}

.international-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 82px);
}

.international-copy {
  display: grid;
  gap: 28px;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(16, 37, 35, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.partner-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--forest);
  font-weight: 900;
  border-right: 1px solid rgba(16, 37, 35, 0.14);
}

.partner-strip span:last-child {
  border-right: 0;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
}

.contact .section-lead {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-direct {
  margin-top: 32px;
}

.contact-direct a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--white);
  font-weight: 800;
}

.contact-direct a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(1);
  transform-origin: left;
  background: var(--gold);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  color: var(--gold);
}

.contact-direct a:hover::after,
.contact-direct a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(0.18);
  opacity: 0.72;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}

.form-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.site-footer {
  padding: clamp(44px, 7vw, 78px) clamp(20px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(11, 27, 25, 0.98), rgba(16, 37, 35, 1)),
    #0b1b19;
  font-size: 0.9rem;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 22px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-logo .brand-logo-image {
  width: 72px;
  height: 72px;
}

.footer-logo::after {
  display: none;
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  font-size: 1rem;
}

.footer-logo small {
  margin-top: -1px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer a {
  position: relative;
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-column span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 40px rgba(16, 37, 35, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.04);
  background: #1fbd5b;
  box-shadow: 0 22px 48px rgba(16, 37, 35, 0.34);
}

.catalog-toolbar {
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid rgba(16, 37, 35, 0.18);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--forest);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 37, 35, 0.08);
}

.filter-button.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 12px 28px rgba(31, 91, 79, 0.18);
}

.catalog-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 35, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 37, 35, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.property-card[hidden] {
  display: none;
}

.property-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.property-card:hover .property-media img {
  transform: scale(1.035);
}

.property-card:hover,
.property-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(31, 91, 79, 0.26);
  box-shadow: 0 24px 58px rgba(16, 37, 35, 0.14);
}

.property-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.property-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.property-meta strong {
  color: var(--gold);
  white-space: nowrap;
}

.property-body p {
  color: rgba(16, 37, 35, 0.72);
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: auto 0 0;
  background: rgba(16, 37, 35, 0.12);
  border: 1px solid rgba(16, 37, 35, 0.12);
}

.property-specs div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 12px;
  background: #fbfaf6;
}

.property-specs dt,
.property-specs dd {
  margin: 0;
}

.property-specs dt {
  color: rgba(16, 37, 35, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.property-specs dd {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.property-link {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 35, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.property-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.property-link:hover,
.property-link:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.property-link:hover::after,
.property-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.catalog-empty {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  color: rgba(16, 37, 35, 0.7);
  font-weight: 800;
}

.access-steps {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.access-step {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(16, 37, 35, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.access-step span {
  color: var(--clay);
  font-weight: 900;
}

.access-step p {
  color: rgba(16, 37, 35, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
    padding-inline: clamp(16px, 3vw, 32px);
  }

  .brand small {
    display: none;
  }

  .brand-logo-image {
    width: 50px;
    height: 50px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .site-nav .nav-cta {
    padding-inline: 12px;
  }

  .language-switcher button {
    min-width: 32px;
  }
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

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

  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    min-height: auto;
  }

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

@media (max-width: 1120px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    display: grid;
    gap: 0;
    padding: 8px 16px 22px;
    color: var(--ink);
    background: rgba(247, 244, 236, 0.98);
    box-shadow: 0 18px 36px rgba(16, 37, 35, 0.14);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(16, 37, 35, 0.1);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border-color: var(--forest);
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    margin: 12px 0 0;
    color: var(--ink);
    border-color: rgba(16, 37, 35, 0.18);
  }

  .language-switcher button {
    flex: 1;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: calc(100svh + 300svh);
  }

  .hero-sticky {
    min-height: 100svh;
    padding: calc(var(--header-h) + 48px) 18px 150px;
  }

  .catalog-hero {
    min-height: 88svh;
    padding: calc(var(--header-h) + 48px) 18px 150px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 30, 28, 0.9), rgba(9, 30, 28, 0.58)),
      linear-gradient(0deg, rgba(16, 37, 35, 0.92) 0%, rgba(16, 37, 35, 0.08) 48%);
  }

  .hero-proof {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hero-proof {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof span {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .catalog-hero-proof span {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-proof span:nth-child(2n) {
    border-right: 0;
  }

  .catalog-hero-proof span:nth-child(2n) {
    border-right: 0;
  }

  .hero-proof span:nth-child(n + 3) {
    border-bottom: 0;
  }

  .catalog-hero-proof span:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero-actions,
  .catalog-hero-actions,
  .button {
    width: 100%;
  }

  .intro-grid,
  .section-heading,
  .market-grid,
  .international-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .signal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .catalog-grid,
  .access-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partner-strip span:nth-child(2n) {
    border-right: 0;
  }

  .partner-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 37, 35, 0.14);
  }
}

@media (max-width: 580px) {
  .brand-logo-image {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .feature-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .method-step {
    min-height: auto;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero {
    min-height: 100svh;
  }

  .hero-sticky {
    position: relative;
  }
}
