/* Canol Sud — landing page */
:root {
  --ink: #17130f;
  --ink-soft: #2b241e;
  --paper: #f7f1e7;
  --paper-2: #efe5d7;
  --white: #fffdf8;
  --orange: #cf5d2f;
  --orange-dark: #a84420;
  --blue: #124aa0;
  --gold: #d8a34b;
  --line: rgba(23, 19, 15, .16);
  --shadow: 0 24px 70px rgba(20, 16, 12, .16);
  --radius: 2px;
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

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

button { color: inherit; }

::selection {
  color: var(--white);
  background: var(--orange);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.topbar {
  position: relative;
  z-index: 30;
  color: rgba(255, 255, 255, .86);
  background: var(--ink);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar a {
  margin-left: auto;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid transparent;
  background: rgba(247, 241, 231, .91);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(23, 19, 15, .08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 215px;
}

.brand img {
  width: 60px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 4px;
  color: #6f6256;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  box-shadow: none;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .045em;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .75rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, .45);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    url("images/lavorazione-cialde.webp") center 44% / cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 14, 11, .94) 0%, rgba(18, 14, 11, .78) 47%, rgba(18, 14, 11, .23) 80%, rgba(18, 14, 11, .18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.38));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: end;
  padding-block: 110px 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f1b374;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow--dark { color: var(--orange-dark); }

.hero h1,
.section h2,
.record h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .95;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(4.1rem, 8.2vw, 7.8rem);
}

.hero h1 em {
  color: #f0aa65;
  font-weight: 500;
}

.hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .27);
  background: rgba(17, 13, 10, .58);
  backdrop-filter: blur(12px);
}

.hero-card__label {
  margin: 0 0 20px;
  color: #f2b46f;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-card__item {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-card__item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-card__item span {
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: max(20px, calc((100vw - 1180px) / 2));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 48px;
  height: 1px;
  background: currentColor;
  animation: scrollPulse 1.7s infinite ease-in-out;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleX(.55); transform-origin: left; opacity: .5; }
  50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

.section { padding: 130px 0; }

.intro {
  background:
    radial-gradient(circle at 82% 8%, rgba(207, 93, 47, .12), transparent 28%),
    var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 140px);
}

.section h2,
.record h2,
.contact h2 {
  font-size: clamp(3.1rem, 5.7vw, 5.5rem);
}

.intro__copy {
  padding-top: 12px;
}

.lead,
.process__lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.35;
}

.intro__copy p:not(.lead) {
  color: #574b40;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--orange-dark);
  text-decoration: none;
  font-weight: 850;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.image-feature {
  position: relative;
  margin-top: 90px;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.image-feature__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(430px, 70%);
  padding: 25px 28px;
  color: var(--white);
  background: var(--blue);
}

.image-feature__caption span,
.product-showcase figcaption span {
  display: block;
  margin-bottom: 6px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .7;
}

.image-feature__caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

.products {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 7px auto;
  color: #62564a;
}

.section-heading--compact {
  margin-bottom: 48px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.format-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.format-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.format-card__number {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.format-card h3 {
  margin: 54px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.format-card p {
  margin: 0;
  color: #65594e;
  font-size: .92rem;
}

.format-card:hover p { color: rgba(255,255,255,.69); }

.tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid currentColor;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .76;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 24px;
  margin-top: 80px;
}

.product-showcase figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.product-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.product-showcase figure:hover img { transform: scale(1.035); }

.product-showcase__large { min-height: 570px; }
.product-showcase__small { min-height: 570px; }

.product-showcase figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 55px 28px 24px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 11, 9, .86));
}

.product-showcase figcaption strong {
  display: block;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.product-showcase__small figcaption {
  font-size: .83rem;
}

.process {
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 70px 70px;
}

.process__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.process__visual {
  position: relative;
}

.process__visual img {
  width: 100%;
  min-height: 690px;
  object-fit: cover;
}

.process__stamp {
  position: absolute;
  right: -30px;
  bottom: 50px;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: #efb161;
  text-align: center;
  transform: rotate(-9deg);
}

.process__stamp span {
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.process__stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.process__content h2 { max-width: 680px; }

.process__lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .75);
}

.steps {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.steps li > span {
  color: #efb161;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.steps h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.steps p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}

.gallery-section {
  background: var(--paper-2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 315px;
  gap: 18px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #ddd;
  cursor: zoom-in;
}

.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}

.gallery__item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(23,19,15,.8);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.record {
  padding: 120px 0;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.record__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: center;
}

.record__number {
  position: relative;
  display: flex;
  align-items: flex-end;
  line-height: .7;
}

.record__number span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10rem, 21vw, 20rem);
  letter-spacing: -.12em;
}

.record__number i {
  margin-left: .05em;
  color: #f1b16a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-style: normal;
}

.record__number small {
  position: absolute;
  right: 2%;
  bottom: -38px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.record__copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255,255,255,.76);
}

.record__badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.record__badges img {
  width: 105px;
  padding: 8px;
  background: var(--white);
}

.record__badges span {
  max-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.shipping { background: var(--white); }

.shipping__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.shipping__content h2 { margin-bottom: 30px; }

.shipping__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0;
}

.shipping__areas span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: #4f443b;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shipping__note {
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: var(--paper);
}

.shipping__note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.shipping__note p {
  margin: 6px 0 0;
  color: #675b50;
  font-size: .85rem;
}

.location-card {
  position: relative;
  display: block;
  min-height: 565px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.location-card img {
  width: 100%;
  min-height: 565px;
  object-fit: cover;
  transition: transform .7s ease;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(18,14,11,.88));
}

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

.location-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 36px;
}

.location-card__body span {
  display: block;
  color: #f0b26f;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.location-card__body strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  font-weight: 500;
  line-height: 1.18;
}

.location-card__body em {
  display: inline-block;
  margin-top: 22px;
  font-size: .78rem;
  font-style: normal;
  font-weight: 850;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 8px;
  color: var(--orange);
  font-family: sans-serif;
  font-size: 1.6rem;
  transition: transform .2s ease;
}

.accordion details[open] summary::after { transform: rotate(45deg); }

.accordion details p {
  max-width: 720px;
  margin: -5px 0 25px;
  color: #64584d;
}

.contact {
  padding: 125px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 80%, rgba(207,93,47,.25), transparent 29%),
    var(--ink);
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.contact__copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255,255,255,.68);
}

.contact__direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.contact__direct a,
.contact__direct > div {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
}

.contact__direct span {
  color: rgba(255,255,255,.5);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact__direct strong {
  margin-top: 4px;
  font-size: .95rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(26px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
}

.field {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.field--half { grid-column: span 1; }

.field label {
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfb2a5;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
}

.field input,
.field select { min-height: 46px; }

.field textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 10px;
}

.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--orange); }

.quote-form .button,
.form-note { grid-column: 1 / -1; }

.form-note {
  margin: -5px 0 0;
  color: #74685d;
  font-size: .72rem;
  text-align: center;
}

.footer {
  padding: 55px 0 22px;
  color: rgba(255,255,255,.73);
  background: #0e0b09;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__brand img {
  width: 72px;
  height: 54px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
}

.footer__brand div {
  display: flex;
  flex-direction: column;
}

.footer__brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.footer__brand span {
  margin-top: 3px;
  font-size: .72rem;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__links a,
.footer address a {
  color: inherit;
  text-decoration: none;
}

.footer__links a:hover,
.footer address a:hover { color: var(--white); }

.footer address {
  font-size: .8rem;
  font-style: normal;
  line-height: 1.75;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .68rem;
}

.ngsystems {
  color: rgba(255,255,255,.82);
  text-align: right;
  text-decoration: none;
}

.ngsystems:hover { color: var(--white); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: translateY(-4px); }

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

.lightbox {
  width: min(1100px, calc(100% - 30px));
  max-width: none;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(10, 8, 6, .9);
  backdrop-filter: blur(7px);
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

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

:focus-visible {
  outline: 3px solid #f2b36f;
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .topbar__sep,
  .topbar__inner > span:nth-of-type(2) { display: none; }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 32;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 90px max(30px, 9vw);
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 500;
  }

  .menu-toggle[aria-expanded="true"] > span:not(.sr-only) { background: var(--white); }

  .hero {
    min-height: 780px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
  }

  .hero-card {
    width: min(540px, 100%);
  }

  .intro__grid,
  .process__grid,
  .record__grid,
  .shipping__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p { margin-left: 0; }

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

  .process__visual {
    width: calc(100% - 30px);
  }

  .process__stamp { right: -30px; }

  .record__number { justify-content: center; }
  .record__number small { right: 17%; }

  .shipping__content { order: 2; }
  .location-card { order: 1; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }

  .topbar { display: none; }

  .nav-wrap { min-height: 72px; }
  .brand img { width: 52px; height: 42px; }
  .brand strong { font-size: 1.1rem; }

  .hero {
    min-height: 810px;
  }

  .hero__media { background-position: 63% center; }

  .hero__shade {
    background: linear-gradient(180deg, rgba(18,14,11,.69), rgba(18,14,11,.94) 73%);
  }

  .hero__content {
    padding-block: 90px 105px;
  }

  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.5rem); }

  .hero__lead { font-size: 1rem; }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button { width: 100%; }

  .hero-card { padding: 20px; }

  .hero__scroll {
    bottom: 20px;
    left: 14px;
  }

  .section { padding: 90px 0; }

  .section h2,
  .record h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .image-feature {
    width: 100%;
    margin-top: 55px;
  }

  .image-feature img { aspect-ratio: 4 / 5; }

  .image-feature__caption {
    position: relative;
    width: 100%;
  }

  .format-grid { grid-template-columns: 1fr; }

  .format-card { min-height: 270px; }

  .product-showcase {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .product-showcase__large,
  .product-showcase__small { min-height: 430px; }

  .process__visual { width: 100%; }
  .process__visual img { min-height: 520px; }
  .process__stamp {
    right: 15px;
    bottom: 15px;
    width: 120px;
    height: 120px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery__item--wide { grid-column: auto; }

  .record {
    padding: 90px 0 105px;
  }

  .record__number span { font-size: 47vw; }
  .record__number i { font-size: 18vw; }
  .record__number small {
    right: 13%;
    bottom: -26px;
  }

  .record__badges {
    align-items: flex-start;
  }

  .location-card,
  .location-card img { min-height: 440px; }

  .faq__grid { gap: 25px; }

  .contact__direct {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .field--half { grid-column: 1 / -1; }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand { grid-column: auto; }

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

  .ngsystems { text-align: left; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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

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