:root {
  --navy: #071a33;
  --navy-2: #0e2d4f;
  --blue: #164a78;
  --green: #2f8f7b;
  --gold: #c8a24a;
  --ivory: #f7f3e9;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --soft-blue: #edf3f8;
  --line: #d9e1ea;
  --text: #1f2a37;
  --muted: #657386;
  --light-muted: #c8d3df;
  --shadow: 0 24px 60px rgba(7, 26, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-inline: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: rgba(7, 26, 51, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 360px;
}

.logo-symbol {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

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

.logo-copy {
  min-width: 0;
}

.logo-copy strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.logo-copy em {
  font-style: normal;
  font-weight: 400;
}

.logo-copy small {
  max-width: 320px;
  margin-top: 5px;
  color: var(--light-muted);
  font-size: 11px;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--light-muted);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: 92px 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section:not(.section-dark)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    url("assets/background-light-trade.jpg") center / cover no-repeat;
  pointer-events: none;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.98), rgba(7, 26, 51, 0.76)),
    url("assets/background-dark-trade.jpg") center / cover no-repeat,
    var(--navy);
}

.section-soft {
  background: var(--off-white);
}

.section-soft::before,
.contact-section::before {
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.96), rgba(255, 255, 255, 0.78)),
    url("assets/background-light-trade.jpg") center / cover no-repeat;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 116px 0 92px;
  overflow: hidden;
}

.hero.section-dark {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.99) 0%, rgba(7, 26, 51, 0.91) 42%, rgba(7, 26, 51, 0.62) 100%),
    url("assets/background-dark-trade.jpg") center / cover no-repeat,
    var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 720px;
}

.hero-content,
.hero-media,
.section-intro,
.section-heading,
.image-card,
.portrait-card,
.contact-card {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--light-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.button:hover,
.contact-actions a:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  background: #d5b15b;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.profile-tags span,
.market-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--light-muted);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.hero-media,
.image-card,
.portrait-card {
  margin: 0;
}

.hero-media {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation:
    rise-in 0.8s ease both,
    soft-float 6s ease-in-out 1s infinite alternate;
}

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

.hero-media figcaption,
.image-card figcaption {
  padding: 16px 18px;
  color: var(--light-muted);
  font-size: 14px;
  line-height: 1.5;
}

.split-layout,
.founder-grid,
.markets-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 60px;
  align-items: center;
}

.section-intro {
  max-width: 720px;
}

.section-intro p,
.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-intro p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-highlights article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.about-highlights h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-highlights p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.section-copy.light {
  color: var(--light-muted);
}

.image-card,
.portrait-card,
.contact-card {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.image-card figcaption {
  color: var(--muted);
}

.founder-grid {
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
}

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

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-tags span {
  border-color: var(--line);
  color: var(--navy);
  background: var(--white);
}

.visual-proof {
  padding-top: 28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 16px;
}

.proof-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.08);
}

.proof-wide {
  grid-row: 1 / span 2;
}

.proof-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proof-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(7, 26, 51, 0.82));
  font-weight: 700;
}

.proof-card:hover img {
  transform: scale(1.045);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

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

.service-card,
.direction-item,
.why-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card {
  min-height: 220px;
  padding: 24px;
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
}

.service-card h3,
.product-card h3,
.field-card h3,
.direction-item h3,
.why-grid h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.product-card p,
.field-card p,
.direction-item p,
.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.product-card {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--soft-blue);
}

.product-card div {
  padding: 22px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--green);
  background: rgba(47, 143, 123, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.showcase-copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.showcase-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.juicer-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.75fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}

.juicer-gallery figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.08);
}

.juicer-gallery .juicer-feature {
  grid-row: 1 / span 2;
}

.juicer-gallery img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.juicer-gallery figure:hover img {
  transform: scale(1.045);
}

.markets-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: start;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.market-tags span {
  min-height: 44px;
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.field-card {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

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

.field-card div {
  padding: 22px;
}

.field-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.field-card p {
  color: var(--light-muted);
}

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

.direction-item {
  min-height: 180px;
  padding: 24px;
  border-top: 4px solid var(--green);
}

.why-grid article {
  min-height: 160px;
  padding: 26px;
  border-top: 4px solid var(--gold);
}

.service-card:hover,
.product-card:hover,
.direction-item:hover,
.why-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 74, 0.55);
  box-shadow: 0 22px 44px rgba(7, 26, 51, 0.14);
}

.field-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 74, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-content > * {
  animation: rise-in 0.7s ease both;
}

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

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

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

.service-card:nth-child(2),
.product-card:nth-child(2),
.field-card:nth-child(2),
.direction-item:nth-child(2),
.why-grid article:nth-child(2),
.proof-card:nth-child(2) {
  transition-delay: 0.05s;
}

.service-card:nth-child(3),
.product-card:nth-child(3),
.field-card:nth-child(3),
.direction-item:nth-child(3),
.why-grid article:nth-child(3),
.proof-card:nth-child(3) {
  transition-delay: 0.1s;
}

.service-card:nth-child(4),
.product-card:nth-child(4),
.direction-item:nth-child(4),
.why-grid article:nth-child(4),
.proof-card:nth-child(4) {
  transition-delay: 0.15s;
}

.service-card:nth-child(5),
.product-card:nth-child(5),
.direction-item:nth-child(5),
.why-grid article:nth-child(5) {
  transition-delay: 0.2s;
}

.service-card:nth-child(6),
.why-grid article:nth-child(6) {
  transition-delay: 0.25s;
}

@keyframes rise-in {
  from {
    opacity: 0.82;
    transform: translateY(12px);
  }

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

@keyframes soft-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.98), rgba(255, 255, 255, 0.9)),
    url("assets/background-light-trade.jpg") center / cover no-repeat,
    var(--off-white);
}

.contact-grid {
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  background: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(7, 26, 51, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-card {
  padding: 32px;
  border-top: 4px solid var(--gold);
}

.contact-card h3 {
  font-size: 26px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  overflow-wrap: anywhere;
}

.contact-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--navy);
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.qr-block {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  background: var(--off-white);
}

.qr-block img {
  width: 132px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  background: var(--white);
}

.qr-block strong,
.qr-block span {
  display: block;
}

.qr-block strong {
  color: var(--navy);
  font-size: 18px;
}

.qr-block span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  padding: 32px 0;
  color: var(--light-muted);
  background: var(--navy);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
}

.footer p {
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

.page-hero {
  padding: 92px 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 58px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

.service-grid-wide .service-card {
  min-height: 250px;
}

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

.reserved-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.reserved-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.reserved-card div {
  padding: 26px;
}

.reserved-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
}

.reserved-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 74, 0.55);
  box-shadow: 0 22px 44px rgba(7, 26, 51, 0.14);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form h2,
.contact-card h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.process-list strong {
  color: var(--gold);
}

.process-list span {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .founder-grid,
  .markets-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-media {
    max-width: 720px;
  }

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

  .about-highlights,
  .product-grid,
  .direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .proof-wide {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: 100%;
    padding-inline: 16px;
  }

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

  .logo {
    min-width: 0;
  }

  .logo-symbol {
    width: 48px;
    height: 48px;
  }

  .logo-copy strong {
    font-size: 23px;
  }

  .logo-copy small {
    max-width: 238px;
    font-size: 10px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
    gap: 10px 14px;
    font-size: 13px;
    max-width: 100%;
    overflow-x: visible;
    white-space: normal;
  }

  .section {
    padding: 64px 0;
  }

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

  .page-hero {
    padding: 58px 0 64px;
  }

  .hero-media {
    animation: rise-in 0.6s ease both;
  }

  .hero-grid,
  .hero-content {
    width: 100%;
  }

  .hero-content {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    max-width: 32ch;
    font-size: 12px;
    line-height: 1.4;
  }

  h1 {
    max-width: 14ch;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-lead {
    max-width: 35ch;
    margin-bottom: 24px;
  }

  h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .hero-lead,
  .section-intro p,
  .section-heading p,
  .section-copy {
    font-size: 16px;
  }

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

  .hero-points {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-points span {
    width: auto;
    min-height: 34px;
    font-size: 13px;
  }

  .about-highlights,
  .service-grid,
  .field-grid,
  .why-grid,
  .product-grid,
  .direction-grid {
    grid-template-columns: 1fr;
  }

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

  .reserved-card img {
    min-height: 210px;
  }

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

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

  .proof-card,
  .proof-card img {
    min-height: 210px;
  }

  .showcase-copy {
    min-height: auto;
    padding: 22px;
  }

  .showcase-copy h3 {
    font-size: 24px;
  }

  .juicer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .juicer-gallery .juicer-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .juicer-gallery img {
    min-height: 150px;
    aspect-ratio: 1 / 1;
  }

  .juicer-gallery .juicer-feature img {
    aspect-ratio: 16 / 11;
  }

  .service-card,
  .direction-item,
  .why-grid article {
    min-height: auto;
  }

  .about-highlights article,
  .service-card,
  .direction-item,
  .why-grid article {
    padding: 20px;
  }

  .section-intro p,
  .section-heading p,
  .section-copy,
  .service-card p,
  .product-card p,
  .field-card p,
  .direction-item p,
  .why-grid p {
    line-height: 1.6;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .quote-form {
    padding: 26px 20px;
  }

  .contact-list div,
  .qr-block {
    grid-template-columns: 1fr;
  }

  .qr-block img {
    width: 180px;
    max-width: 100%;
  }

  .footer-inner {
    display: block;
  }

  .footer p + p {
    margin-top: 8px;
  }

  .footer {
    padding-bottom: 100px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.96);
    box-shadow: 0 18px 40px rgba(7, 26, 51, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-contact-bar a:last-child {
    color: var(--navy);
    background: var(--gold);
  }

  .reveal {
    transition-duration: 0.4s;
  }
}

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

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