




  :root {
    --background: 220 25% 96%;
    --foreground: 222 47% 8%;
    --card: 220 25% 96%;
    --card-foreground: 222 47% 8%;
    --popover: 220 25% 96%;
    --popover-foreground: 222 47% 8%;
    --primary: 222 55% 8%;
    --primary-foreground: 45 100% 55%;
    --secondary: 45 90% 92%;
    --secondary-foreground: 222 55% 8%;
    --muted: 220 18% 90%;
    --muted-foreground: 220 12% 38%;
    --accent: 45 100% 55%;
    --accent-foreground: 222 55% 8%;
    --destructive: 0 74% 50%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 16% 78%;
    --input: 220 16% 78%;
    --ring: 45 100% 50%;
    --radius: 0.15rem;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: #f4f5f7;
    color: #0a1220;
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: clip;
  }
  ::selection { background: #f5c518; color: #0a1220; }

:root {
  --navy: #0a1220;
  --deep: #050b14;
  --gold: #f5c518;
  --gold-soft: #ffd84a;
  --paper: #f4f5f7;
  --silver: #9aa3b0;
  --ice: #f5c518;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
section { scroll-margin-top: 78px; }

.site-header {
  height: 82px;
  padding: 0 4.1%;
  background: var(--deep);
  color: #f5f8f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(245, 197, 24, 0.22);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: none;
}

.brand-word {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-word small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-top: 5px;
  color: var(--gold);
}

.brand-dot, .footer-logo span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
  margin-left: auto;
}

.site-nav a {
  font-size: 12px;
  color: #c8d0d8;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--deep);
}

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

.hero {
  min-height: min(760px, calc(100dvh - 82px));
  height: calc(100dvh - 82px);
  max-height: 950px;
  position: relative;
  color: white;
  background: var(--deep);
  overflow: hidden;
  isolation: isolate;
}

.hero-photo, .hero-overlay { position: absolute; inset: 0; }

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.97) 0%, rgba(8, 16, 28, 0.82) 40%, rgba(10, 18, 32, 0.28) 74%),
    linear-gradient(0deg, rgba(5, 11, 20, 0.7), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(94px, 15vh, 160px) 7% 130px;
  max-width: 910px;
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 34px;
}

.eyebrow.dark { color: #8a6b10; }

.tiny-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Roboto Slab', Georgia, serif; }

.hero h1 {
  font-size: clamp(58px, 6.6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.075;
  margin-bottom: 30px;
}

h1 em, h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-intro {
  max-width: 510px;
  font-size: clamp(15px, 1.25vw, 18px);
  color: #d6dce4;
  line-height: 1.7;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 37px;
  flex-wrap: wrap;
}

.button-light {
  background: var(--gold);
  color: var(--deep);
  padding: 17px 23px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}

.button-light:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.button-light:active,
.submit-button:active { transform: scale(0.98); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 10px 0 7px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  transition: gap 0.2s;
}

.text-link:hover { gap: 25px; }
.text-link.light { color: var(--gold); }

.hero-bottom {
  position: absolute;
  left: 4.1%;
  right: 4.1%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(245, 197, 24, 0.35);
  padding-top: 21px;
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #d0d6de;
}

.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
}

.hero-counter {
  position: absolute;
  right: 7%;
  bottom: 104px;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 13px;
  color: white;
}

.hero-counter strong {
  font: 400 clamp(75px, 9vw, 135px)/0.8 'Roboto Slab', serif;
  letter-spacing: -0.09em;
  color: var(--gold);
}

.hero-counter span {
  font-size: 9px;
  letter-spacing: 0.17em;
  line-height: 1.6;
  padding-bottom: 4px;
}

.section-rail {
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #6b7380;
  text-transform: uppercase;
}

.intro-section {
  position: relative;
  isolation: isolate;
  background: var(--paper);
  display: grid;
  grid-template-columns: 20% 1fr 18%;
  min-height: 560px;
  padding: 76px 5% 95px;
  gap: 4%;
  overflow: hidden;
}

.intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(100%) brightness(0.62) contrast(1.05);
  opacity: 0.78;
}

.intro-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 245, 247, 0.92) 0%, rgba(244, 245, 247, 0.4) 45%, rgba(244, 245, 247, 0.2) 100%);
}

.intro-section > *:not(.intro-bg) {
  position: relative;
  z-index: 1;
}

.intro-section .section-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.intro-main { padding-top: 58px; }

.intro-main h2,
.contact-copy h2 {
  font-size: clamp(43px, 4.25vw, 71px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.13;
  margin-bottom: 42px;
}

.intro-main h2 em,
.contact-copy h2 em,
.production-copy h2 em { color: #c9a012; }

.intro-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  max-width: 715px;
}

.intro-bottom p,
.contact-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.85;
  color: #4a5564;
  max-width: 580px;
  margin: 0;
}

.round-link {
  border: 1px solid #c9a012;
  border-radius: 50%;
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.round-link:hover {
  background: var(--gold);
  color: var(--deep);
}

.intro-aside {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  text-align: right;
  color: #7a8494;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1.7;
}

.grain-symbol {
  position: relative;
  width: 90px;
  height: 115px;
  margin-top: 78px;
  transform: rotate(13deg);
}

.grain-symbol i {
  position: absolute;
  inset: 0;
  border: 1px solid #c9a012;
  border-radius: 50% 50% 48% 45%;
  opacity: 0.55;
}

.grain-symbol i:nth-child(2) { inset: 13px; }
.grain-symbol i:nth-child(3) { inset: 26px; }
.grain-symbol i:nth-child(4) { inset: 39px; }

.products-section {
  display: grid;
  grid-template-columns: 51% 49%;
  background: var(--navy);
  color: #f1f4f8;
  min-height: 750px;
}

.products-copy {
  padding: 54px 8% 75px 10%;
  display: flex;
  flex-direction: column;
}

.products-rail { color: #9aa3b0; }

.products-body {
  margin: auto 0;
  padding-top: 65px;
  max-width: 540px;
}

.products-body h2,
.production-copy h2,
.global-heading h2 {
  font-size: clamp(48px, 5.2vw, 80px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.1;
  margin-bottom: 29px;
}

.products-body > p:not(.eyebrow) {
  max-width: 440px;
  font-size: 14px;
  color: #b8c0ca;
  line-height: 1.85;
  margin-bottom: 35px;
}

.product-list {
  padding: 0;
  margin: 0 0 23px;
  list-style: none;
  max-width: 460px;
}

.product-list li {
  display: flex;
  align-items: center;
  border-top: 1px solid #2a3548;
  padding: 17px 0;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
}

.product-list li:last-child { border-bottom: 1px solid #2a3548; }

.product-list li span {
  font: 10px 'IBM Plex Sans', sans-serif;
  color: var(--gold);
  margin-right: 30px;
}

.product-list li svg {
  margin-left: auto;
  color: var(--gold);
}

.products-body .text-link { color: var(--gold); }

.products-visual {
  position: relative;
  overflow: hidden;
}

.products-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 6%;
  background: linear-gradient(transparent, rgba(5, 11, 20, 0.85));
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.image-caption b {
  font-weight: 400;
  color: var(--gold);
}

.production-section {
  padding: 70px 5% 110px;
  background: #e8eaee;
}

.production-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 9%;
  align-items: center;
}

.production-photo {
  position: relative;
  align-self: stretch;
  min-height: 600px;
  overflow: hidden;
}

.production-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-photo span {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 8px #0a1220;
}

.production-copy { max-width: 620px; padding: 20px 0; }
.production-copy h2 { margin-bottom: 30px; }

.production-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #4a5564;
  font-size: 15px;
  line-height: 1.8;
}

.production-points { margin: 38px 0 22px; }

.production-points > div {
  padding: 17px 0;
  border-top: 1px solid #b8bfc8;
  display: grid;
  grid-template-columns: 54px 1fr;
}

.production-points > div:last-child { border-bottom: 1px solid #b8bfc8; }

.production-points span {
  font-size: 10px;
  color: #a88912;
  padding-top: 4px;
}

.production-points strong {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 15px;
}

.production-points p {
  grid-column: 2;
  margin: 4px 0 0;
  font-size: 12px;
  color: #6a7380;
}

.global-section {
  background: var(--deep);
  color: white;
  padding: 70px 5% 36px;
  overflow: hidden;
}

.global-section .section-rail { color: #9aa3b0; }

.global-body {
  display: grid;
  grid-template-columns: 1fr 42%;
  align-items: center;
  min-height: 565px;
}

.global-heading {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.global-heading h2 {
  max-width: 800px;
  font-size: clamp(49px, 5.5vw, 85px);
}

.global-heading p:not(.eyebrow) {
  color: #b8c0ca;
  font-size: 15px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 30px;
}

.global-number {
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--gold);
}

.global-number svg,
.global-number strong,
.global-number span { position: relative; z-index: 1; }

.global-number strong {
  font: 400 clamp(155px, 20vw, 320px)/0.95 'Roboto Slab', serif;
  letter-spacing: -0.11em;
  padding-right: 0.1em;
}

.global-number span {
  letter-spacing: 0.23em;
  font-size: 10px;
  color: #d0d6de;
}

.orbit {
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 50%;
  position: absolute;
  width: 430px;
  height: 430px;
}

.orbit-two { width: 310px; height: 310px; }

.global-foot {
  border-top: 1px solid #2a3548;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #9aa3b0;
}

.contact-section {
  padding: 72px 5% 120px;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: 9%;
  padding-top: 110px;
}

.contact-copy h2 { max-width: 620px; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; }

.contact-note {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 95px;
  font-size: 10px;
  letter-spacing: 0.17em;
  color: #6b7380;
}

.contact-note span:first-child {
  font: 400 45px 'Roboto Slab', serif;
  letter-spacing: -0.06em;
  color: #c9a012;
}

.contact-form-wrap { padding-top: 4px; }

.form-title {
  font-family: 'Roboto Slab', serif;
  font-size: 21px;
  border-bottom: 1px solid #b8bfc8;
  padding-bottom: 21px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
}

.form-title span {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  color: #6b7380;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  color: #2a3548;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #b8bfc8;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  outline: none;
  font-size: 13px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c9a012;
  background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #87919e; }

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

.submit-button {
  align-self: start;
  border: 0;
  background: var(--navy);
  color: var(--gold);
  min-height: 54px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 65px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}

.submit-button:hover { background: #151f30; }
.submit-button:disabled { opacity: 0.6; cursor: wait; }

.form-error {
  font-size: 12px;
  color: #a73434;
  margin: 0;
}

.spin { animation: rotate 1s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }

.success-message {
  border-top: 1px solid #b8bfc8;
  padding: 40px 0;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  background: #f5e6a8;
  color: #8a6b10;
  margin-bottom: 28px;
}

.success-message h3 {
  font-weight: 400;
  font-size: 27px;
}

.success-message p {
  color: #4a5564;
  line-height: 1.7;
  max-width: 440px;
}

.site-footer {
  background: #050b14;
  color: white;
  padding: 70px 5% 26px;
}

.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 95px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-logo {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-logo small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 6px;
}

.footer-top p {
  color: #aab3be;
  font: 400 22px/1.5 'Roboto Slab', serif;
}

.back-top {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  padding-bottom: 9px;
}

.footer-bottom {
  border-top: 1px solid #2a3548;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8994a3;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-bottom a { color: var(--gold); }

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero-counter { right: 5%; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 6%; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-word { font-size: 15px; }
  .menu-toggle {
    display: grid;
    place-items: center;
    background: none;
    border: 0;
    color: var(--gold);
    width: 44px;
    height: 44px;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 25px 6% 35px;
    background: var(--deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #2a3548;
    box-shadow: 0 15px 20px #050b1455;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #2a3548;
    font-size: 16px;
  }
  .site-nav .mobile-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold);
  }
  .hero {
    height: auto;
    min-height: calc(100dvh - 68px);
    max-height: none;
  }
  .hero-photo img { object-position: 60% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 11, 20, 0.9), rgba(5, 11, 20, 0.5)),
      linear-gradient(0deg, rgba(5, 11, 20, 0.72), transparent 40%);
  }
  .hero-content { padding: 105px 6% 205px; }
  .hero h1 { font-size: clamp(49px, 11vw, 76px); }
  .hero-intro { max-width: 430px; }
  .hero-counter { bottom: 106px; left: 6%; right: auto; }
  .hero-counter strong { font-size: 75px; }
  .hero-counter span { font-size: 8px; }
  .hero-bottom { left: 6%; right: 6%; bottom: 24px; }
  .hero-bottom span { display: none; }
  .intro-section {
    display: block;
    padding: 62px 6% 85px;
    min-height: 0;
  }
  .intro-section .section-rail span:last-child,
  .intro-aside { display: none; }
  .intro-main { padding-top: 78px; }
  .intro-main h2,
  .contact-copy h2 { font-size: clamp(42px, 9vw, 62px); }
  .intro-bottom { align-items: start; }
  .round-link { width: 52px; height: 52px; }
  .products-section { display: flex; flex-direction: column; }
  .products-copy { padding: 56px 6% 70px; }
  .products-body { padding-top: 80px; }
  .products-body h2,
  .production-copy h2,
  .global-heading h2 { font-size: clamp(47px, 10vw, 68px); }
  .products-visual { height: 460px; }
  .production-section { padding: 58px 6% 80px; }
  .production-grid {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-top: 55px;
    align-items: stretch;
  }
  .production-photo { min-height: 410px; height: 65vw; }
  .production-copy { padding: 0; }
  .global-section { padding: 58px 6% 30px; }
  .global-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .global-heading { padding: 85px 0 0; }
  .global-number { height: 390px; }
  .global-number strong { font-size: 190px; }
  .orbit { width: 350px; height: 350px; }
  .orbit-two { width: 260px; height: 260px; }
  .contact-section { padding: 58px 6% 85px; }
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 65px;
    padding-top: 85px;
  }
  .contact-note { margin-top: 40px; }
  .site-footer { padding: 60px 6% 26px; }
  .footer-top { padding-bottom: 65px; }
  .footer-bottom { flex-wrap: wrap; line-height: 1.6; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 84px; }
  .hero h1 { font-size: 48px; }
  .hero-actions { gap: 17px; }
  .hero-actions .text-link { font-size: 11px; }
  .eyebrow { font-size: 9px; letter-spacing: 0.12em; }
  .section-rail { font-size: 8px; }
  .intro-bottom { flex-direction: column; }
  .products-visual { height: 330px; }
  .production-photo { min-height: 300px; }
  .global-number { height: 320px; }
  .global-number strong { font-size: 150px; }
  .global-number span { font-size: 8px; }
  .orbit { width: 290px; height: 290px; }
  .orbit-two { width: 210px; height: 210px; }
  .form-row { grid-template-columns: 1fr; gap: 25px; }
  .form-title {
    flex-direction: column;
    align-items: start;
    gap: 7px;
  }
  .footer-top { flex-direction: column; gap: 25px; }
  .footer-top p { font-size: 20px; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .global-foot span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spin { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Colecciones administrables */
.collections-section{background:#f6f4ee;color:#1b2723;padding:95px 6vw}.collections-container{max-width:1320px;margin:auto}.collections-container h2{font:500 clamp(32px,5vw,64px) 'Roboto Slab',serif;margin:0 0 18px}.collections-container>p{font-size:18px;margin-bottom:35px}.collections-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,280px),1fr));gap:26px}.collection-card{background:#fff;box-shadow:0 6px 35px #1e28200c;padding-bottom:25px}.collection-card img{width:100%;aspect-ratio:4/3;object-fit:cover}.collection-card h3{font:500 26px 'Roboto Slab',serif;margin:20px 22px 10px}.collection-card p{margin:0 22px;line-height:1.6}.collections-section h2{color:#1b2723}
