/*
Theme Name: RYVO Export Trading
Theme URI: https://ryvo-auto.com
Author: RYVO
Description: A custom WordPress theme for RYVO comprehensive B2B export trading
Version: 2.1.1
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: ryvo
*/

@font-face {
  font-family: "Manrope Variable";
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Variable";
  src: url("assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #df071b;
  --red-bright: #ef0b20;
  --charcoal: #1b1d1f;
  --muted: #62676b;
  --ivory: #f8f6f1;
  --warm-white: #fdfcf9;
  --warm-gray: #ece9e2;
  --warm-gray-deep: #e1ddd4;
  --line: rgba(27, 29, 31, .18);
  --font-display: "Manrope Variable", "Segoe UI", sans-serif;
  --font-body: "Inter Variable", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
[hidden] { display: none !important; }
::selection { background: var(--red); color: #fff; }
.page-shell { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
}
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: .005em;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.button-red { background: var(--red); color: #fff; }
.button-red:hover { background: var(--red-bright); }
.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--charcoal);
  font-size: 13px;
  font-weight: 680;
}
.text-link span { color: var(--red); }

/* Header and side navigation */
.site-header {
  height: 76px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
  background: rgba(253, 252, 249, .92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(31, 28, 24, .045);
  backdrop-filter: blur(18px);
}
.admin-bar .site-header { top: 32px; }
.brand-link { display: inline-flex; align-items: center; }
.brand-logo { display: block; object-fit: contain; object-position: left center; }
.brand-logo-light { width: 166px; height: 44px; }
.header-actions { grid-column: 3; justify-self: end; display: flex; align-items: stretch; gap: 0; }
.header-cta {
  min-width: 164px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 17px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 680;
}
.menu-trigger {
  min-width: 106px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 15px 0 19px;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 680;
}
.menu-trigger i { width: 22px; display: grid; gap: 5px; }
.menu-trigger b { width: 100%; height: 1px; display: block; background: currentColor; transition: transform .2s ease; }
.menu-trigger:hover b:first-child { transform: translateX(4px); }
.menu-trigger:hover b:last-child { transform: translateX(-4px); }
.side-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 88;
  border: 0;
  background: rgba(20, 21, 23, .36);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition: opacity .35s ease, visibility .35s ease;
}
.side-menu-backdrop.is-open { opacity: 1; visibility: visible; }
.side-menu-panel {
  width: min(520px, 92vw);
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 0 44px 32px;
  background: #dceef7;
  color: var(--charcoal);
  box-shadow: -28px 0 70px rgba(15, 28, 37, .16);
  transform: translateX(103%);
  visibility: hidden;
  transition: transform .48s cubic-bezier(.76, 0, .24, 1), visibility .48s;
}
.admin-bar .side-menu-panel { top: 32px; }
.side-menu-panel.is-open { transform: translateX(0); visibility: visible; }
.side-menu-head { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(27, 29, 31, .2); }
.side-menu-head > span { color: #687178; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.side-menu-head button { width: 42px; height: 42px; position: relative; border: 0; background: transparent; }
.side-menu-head button i { width: 23px; height: 1px; position: absolute; left: 9px; top: 20px; background: var(--charcoal); transition: transform .3s ease; }
.side-menu-head button i:first-child { transform: rotate(45deg); }
.side-menu-head button i:last-child { transform: rotate(-45deg); }
.side-menu-head button:hover i:first-child { transform: rotate(135deg); }
.side-menu-head button:hover i:last-child { transform: rotate(45deg); }
.side-menu-nav { display: grid; margin-top: 42px; border-top: 1px solid rgba(27, 29, 31, .2); }
.side-menu-nav a {
  min-height: 82px;
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(27, 29, 31, .2);
  transition: padding-left .23s ease;
}
.side-menu-nav a::before { content: ""; width: 3px; position: absolute; inset: 14px auto 14px 0; background: var(--red); transform: scaleY(0); transition: transform .23s ease; }
.side-menu-nav small { color: #758087; font-size: 10px; }
.side-menu-nav span { font-family: var(--font-display); font-size: 27px; font-weight: 560; letter-spacing: -.035em; }
.side-menu-nav i { color: var(--red); font-style: normal; opacity: 0; transform: translate(-7px, 7px); transition: opacity .23s ease, transform .23s ease; }
.side-menu-nav a:hover, .side-menu-nav a.active { padding-left: 14px; }
.side-menu-nav a:hover::before, .side-menu-nav a.active::before { transform: scaleY(1); }
.side-menu-nav a:hover i, .side-menu-nav a.active i { opacity: 1; transform: none; }
.side-menu-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(27, 29, 31, .2); }
.side-menu-foot p { margin: 0 0 8px; color: #687178; font-size: 11px; }
.side-menu-foot a { font-size: 14px; font-weight: 650; }

/* Homepage */
.corporate-hero { min-height: 680px; padding: 116px 0 34px; background: var(--ivory); }
.corporate-hero-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 460px auto;
  gap: 26px 24px;
  align-items: center;
}
.corporate-hero-copy {
  height: 460px;
  grid-column: 1 / span 6;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 20px clamp(26px, 3vw, 46px) 12px 0;
}
.corporate-hero h1 { max-width: 700px; margin: 0; font-size: clamp(50px, 4.45vw, 64px); font-weight: 650; line-height: 1.01; letter-spacing: -.048em; }
.corporate-hero h1 span, .corporate-hero h1 em { display: block; }
.corporate-hero h1 span { margin-bottom: 5px; }
.corporate-hero h1 em { color: var(--red); font-style: normal; }
.corporate-hero-lede { max-width: 560px; margin: 28px 0 0; color: #555a5e; font-size: 16px; line-height: 1.72; }
.corporate-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: auto; }
.hero-motion {
  height: 460px;
  position: relative;
  grid-column: 7 / 13;
  overflow: hidden;
  background: #d8d2c8;
  border: 1px solid rgba(27, 29, 31, .14);
  box-shadow: 0 22px 54px rgba(41, 35, 28, .11);
}
.hero-motion::before { content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(248,246,241,.36), transparent 23%), linear-gradient(0deg, rgba(9,12,14,.46), transparent 30%); }
.hero-motion::after { content: ""; width: 3px; height: 76px; position: absolute; z-index: 4; right: 0; top: 0; background: var(--red); }
.hero-motion-track { width: 400%; height: 100%; display: flex; animation: heroTradeScroll 19s cubic-bezier(.72,0,.24,1) infinite; will-change: transform; }
.hero-motion-slide { width: 25%; height: 100%; position: relative; flex: 0 0 25%; overflow: hidden; }
.hero-motion-slide::before { content: ""; position: absolute; inset: -4%; background-image: var(--hero-image); background-repeat: no-repeat; background-size: auto 108%; background-position: var(--trade-position) center; filter: saturate(.82) contrast(.96); animation: heroTradeDrift 6.4s ease-in-out infinite alternate; will-change: transform; }
.hero-motion-meta { position: absolute; z-index: 5; inset: auto 0 0; display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; padding: 20px 22px; color: #fff; font-size: 11px; font-weight: 650; }
.hero-motion-meta > div { display: flex; gap: 6px; }
.hero-motion-meta i { width: 28px; height: 2px; background: rgba(255,255,255,.4); }
.hero-motion-meta i:first-child { background: var(--red); }
.hero-motion-meta b { font-size: 10px; }
.corporate-hero-foot { grid-column: 1 / 13; display: flex; justify-content: space-between; gap: 32px; padding-top: 19px; border-top: 1px solid var(--line); color: #74787c; font-size: 12px; line-height: 1.55; }
.corporate-hero-foot > span { color: var(--charcoal); font-weight: 650; }
.corporate-hero-foot p { margin: 0; }
@keyframes heroTradeScroll { 0%,22%{transform:translate3d(0,0,0)} 28%,50%{transform:translate3d(-25%,0,0)} 56%,78%{transform:translate3d(-50%,0,0)} 84%,99.9%{transform:translate3d(-75%,0,0)} 100%{transform:translate3d(0,0,0)} }
@keyframes heroTradeDrift { from{transform:scale(1.02) translate3d(-.8%,0,0)} to{transform:scale(1.075) translate3d(.8%,-.5%,0)} }

.home-trade-model { padding: 108px 0; background: var(--warm-gray); border-bottom: 1px solid var(--line); }
.home-trade-model-grid, .home-contact-layout, .split-layout, .cta-layout, .contact-page-layout, .about-page-hero-layout, .trust-hero-layout, .trust-heading, .boundary-band .page-shell { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.home-trade-intro { grid-column: 1 / span 5; padding-right: clamp(22px, 3vw, 52px); }
.home-trade-intro h2, .home-contact h2 { margin: 0; font-size: clamp(42px, 4vw, 58px); font-weight: 650; line-height: 1.06; letter-spacing: -.047em; }
.home-trade-intro > p:not(.eyebrow) { max-width: 500px; margin: 30px 0 0; color: var(--muted); line-height: 1.75; }
.home-trade-intro .text-link { margin-top: 34px; }
.home-trade-steps { grid-column: 6 / 13; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(27,29,31,.24); }
.home-trade-steps li { min-height: 150px; display: grid; grid-template-columns: 62px 1fr; gap: 24px; align-items: center; padding: 26px 6px 26px 0; border-bottom: 1px solid rgba(27,29,31,.24); }
.home-trade-steps > li > span { align-self: start; padding-top: 5px; color: var(--red); font-size: 12px; font-weight: 700; }
.home-trade-steps h3 { margin: 0; font-size: 25px; font-weight: 620; line-height: 1.2; letter-spacing: -.025em; }
.home-trade-steps p { max-width: 650px; margin: 10px 0 0; color: #666b6f; font-size: 15px; line-height: 1.7; }
.home-contact { padding: 94px 0; background: var(--ivory); }
.home-contact-layout { align-items: end; }
.home-contact-layout > div:first-child { grid-column: 1 / span 6; }
.home-contact-action { grid-column: 8 / 13; }
.home-contact-action > p { max-width: 520px; margin: 0 0 27px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.home-contact-action > span { display: block; margin-top: 13px; color: #717579; font-size: 12px; }

/* Footer */
.site-footer { padding: 58px 0 25px; background: #030404; color: #fff; border-top: 1px solid rgba(255,255,255,.13); }
.footer-main { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 40px; }
.brand-logo-dark { width: 170px; height: 45px; object-position: left center; }
.footer-main > div:first-child > p { margin: 20px 0 0; color: #777b80; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; padding-top: 8px; }
.footer-links a { color: #aeb1b4; font-size: 11px; font-weight: 620; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: #5f6368; font-size: 9px; letter-spacing: .07em; }

/* About and contact */
.inner-page { background: var(--ivory); }
.about-page-hero, .contact-page-hero { min-height: 700px; display: flex; align-items: center; padding: 138px 0 72px; border-bottom: 1px solid #d2cec6; }
.about-page-hero-layout, .contact-page-layout { align-items: stretch; }
.about-page-lead, .contact-page-lead { grid-column: 1 / span 7; align-self: center; padding-right: clamp(30px, 4vw, 72px); }
.about-page-lead h1, .contact-page-lead h1 { max-width: 760px; margin: 0; font-size: clamp(64px, 6vw, 86px); font-weight: 650; line-height: .94; letter-spacing: -.058em; }
.about-page-lead h1 em, .contact-page-lead h1 em { color: var(--red); font-style: normal; }
.about-page-lead > p:last-child, .contact-page-lead > p:last-child { max-width: 640px; margin: 34px 0 0; color: #555a5e; font-size: 17px; line-height: 1.76; }
.about-page-summary { min-height: 500px; grid-column: 8 / 13; display: flex; flex-direction: column; padding: 31px 34px; background: var(--charcoal); color: #fff; }
.about-page-summary > span, .contact-card > span { color: var(--red-bright); font-size: 11px; font-weight: 700; letter-spacing: .055em; }
.about-page-summary > div { display: grid; gap: 8px; margin-top: auto; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.18); }
.about-page-summary > div + div { margin-top: 0; }
.about-page-summary small { color: #8f9498; font-size: 11px; }
.about-page-summary b { font-family: var(--font-display); font-size: 22px; font-weight: 560; letter-spacing: -.02em; }
.about-page-story { padding: 118px 0; background: var(--warm-gray); }
.split-layout { align-items: start; }
.split-layout > div:first-child { grid-column: 1 / span 6; padding-right: clamp(24px, 5vw, 80px); }
.split-layout h2, .inner-page-cta h2 { margin: 0; font-size: clamp(46px, 4.6vw, 66px); font-weight: 620; line-height: 1; letter-spacing: -.045em; }
.story-copy { grid-column: 7 / 13; padding-top: 40px; }
.story-copy > p { max-width: 620px; margin: 0 0 20px; color: #5c6165; font-size: 16px; line-height: 1.78; }
.story-copy .text-link { margin-top: 18px; }
.principles-section { padding: 106px 0 118px; background: var(--ivory); }
.section-line { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid #cbc7bf; color: #6b7074; font-size: 12px; }
.section-line p { margin: 0; color: var(--charcoal); font-weight: 650; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid #cbc7bf; }
.principles-grid article { min-height: 465px; display: flex; flex-direction: column; overflow: hidden; border-right: 1px solid #cbc7bf; border-bottom: 1px solid #cbc7bf; background: #faf8f3; }
.principles-grid img { width: 100%; height: 190px; object-fit: cover; filter: saturate(.84) contrast(.98); }
.principles-grid article > span { margin: 24px 27px 0; color: var(--red); font-size: 11px; font-weight: 700; }
.principles-grid h2 { max-width: 330px; margin: auto 27px 0; font-size: 28px; font-weight: 620; line-height: 1.08; letter-spacing: -.035em; }
.principles-grid p { margin: 14px 27px 27px; color: #666b6f; font-size: 14px; line-height: 1.72; }
.inner-page-cta { padding: 92px 0; background: var(--warm-gray-deep); border-top: 1px solid #cbc6bd; }
.cta-layout { align-items: end; }
.cta-layout > div { grid-column: 1 / span 8; }
.cta-layout .button { grid-column: 10 / 13; justify-self: end; min-width: 220px; }

.contact-page-hero { min-height: 660px; }
.contact-card { min-height: 470px; grid-column: 8 / 13; display: flex; flex-direction: column; padding: 34px; border: 1px solid #c9c5bd; background: #fff; box-shadow: 0 24px 55px rgba(39,34,28,.07); }
.contact-card h2 { margin: auto 0 0; font-size: 43px; font-weight: 620; letter-spacing: -.045em; }
.contact-email { width: fit-content; margin-top: 18px; padding-bottom: 4px; border-bottom: 1px solid var(--charcoal); font-size: 17px; font-weight: 650; }
.contact-card > p { max-width: 410px; margin: 24px 0 27px; color: #666b6f; font-size: 14px; line-height: 1.72; }
.contact-card .button { width: 100%; }
.contact-download { margin-top: 18px; padding-top: 18px; border-top: 1px solid #d8d4cc; }
.contact-download > span { display: block; color: #6b6f73; font-size: 10px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.contact-download > a { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 13px; font-weight: 750; line-height: 1.35; }
.contact-download > a:hover { color: var(--red); }
.contact-download small { display: block; color: #777b7e; font-size: 10px; line-height: 1.55; }
.contact-details { padding: 116px 0; background: var(--warm-gray); }
.contact-details .split-layout > div:first-child { grid-column: 1 / span 5; }
.detail-list { grid-column: 6 / 13; margin: 0; padding: 0; list-style: none; border-top: 1px solid #bdb9b1; }
.detail-list li { min-height: 96px; display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid #bdb9b1; }
.detail-list span { color: var(--red); font-size: 11px; font-weight: 700; }
.detail-list p { margin: 0; color: #4f5458; font-size: 17px; line-height: 1.55; }
.boundary-band { padding: 42px 0; background: var(--warm-gray-deep); border-top: 1px solid #c8c3ba; }
.boundary-band .page-shell { align-items: center; }
.boundary-band span { grid-column: 1 / span 2; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.boundary-band p { grid-column: 3 / span 7; margin: 0; color: #565b5f; font-size: 14px; line-height: 1.7; }
.boundary-band .button { grid-column: 11 / 13; }

/* Product gallery */
.product-gallery-page { min-height: 720px; padding: 142px 0 122px; background: #fbfaf7; }
.product-gallery-heading { margin: 0 auto 48px; text-align: center; }
.product-gallery-heading p { margin: 0; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.product-gallery-heading h1 { margin: 14px 0 0; font-size: clamp(42px, 4vw, 58px); font-weight: 580; line-height: 1; letter-spacing: -.047em; }
.category-list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 14px; margin: 0 auto 38px; }
.category-list button { min-height: 42px; padding: 0 18px; border: 1px solid transparent; border-radius: 0; background: transparent; color: #4f5458; font-size: 14px; font-weight: 500; white-space: nowrap; }
.category-list button:hover { border-color: #c8c4bc; color: var(--charcoal); }
.category-list button.active { border-color: var(--charcoal); background: var(--warm-gray); color: var(--red); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 18px; }
.product-card { min-width: 0; display: block; background: #f0f0f2; }
.product-visual { aspect-ratio: 1 / 1; position: relative; overflow: hidden; background: #f0f0f2; }
.product-visual img { width: 100%; height: 100%; display: block; object-fit: contain; background: #f1f0ec; transition: transform .35s ease; }
.product-card:hover .product-visual img { transform: scale(1.025); }
.product-placeholder { width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; overflow: hidden; background-color: #efeff1; background-image: linear-gradient(rgba(27,29,31,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(27,29,31,.035) 1px, transparent 1px); background-size: 44px 44px; }
.product-placeholder::after { content: ""; width: 38%; height: 2px; position: absolute; right: -8%; bottom: 31%; background: var(--red); transform: rotate(-58deg); }
.product-placeholder span { color: #8a8d90; font-size: 10px; font-weight: 700; }
.product-placeholder strong { max-width: 130px; color: rgba(27,29,31,.72); font-family: var(--font-display); font-size: clamp(23px, 2vw, 31px); font-weight: 580; line-height: .98; letter-spacing: -.04em; }
.product-card-copy { min-height: 74px; display: flex; align-items: center; padding: 16px 12px 18px; border-top: 1px solid #d7d7da; }
.product-card-copy h2 { margin: 0; font-family: var(--font-body); font-size: 15px; font-weight: 520; line-height: 1.4; letter-spacing: 0; }
.product-empty { max-width: 680px; margin: 75px auto 0; padding: 52px; border-top: 3px solid var(--red); background: var(--warm-gray); text-align: left; }
.product-empty > span { color: var(--red); font-size: 11px; font-weight: 700; }
.product-empty h2 { margin: 26px 0 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.02; letter-spacing: -.045em; }
.product-empty p { margin: 22px 0 0; color: var(--muted); }
.product-empty .button { margin-top: 28px; }

/* Trust center */
.trust-hero { min-height: 680px; display: flex; align-items: center; padding: 138px 0 72px; background: var(--ivory); }
.trust-hero-layout { align-items: end; }
.trust-hero-layout > div { grid-column: 1 / span 8; }
.trust-hero h1 { margin: 0; font-size: clamp(58px, 5.4vw, 78px); font-weight: 650; line-height: .96; letter-spacing: -.055em; }
.trust-hero h1 em { color: var(--red); font-style: normal; }
.trust-hero-layout > div > p:last-child { max-width: 720px; margin: 30px 0 0; color: #555a5e; font-size: 17px; line-height: 1.75; }
.trust-hero aside { min-height: 270px; grid-column: 9 / 13; display: flex; flex-direction: column; padding: 27px; border-top: 3px solid var(--red); background: var(--warm-gray-deep); }
.trust-hero aside > span { color: #6c7073; font-size: 10px; font-weight: 700; }
.trust-hero aside > b { margin-top: auto; font-family: var(--font-display); font-size: 45px; font-weight: 650; line-height: .94; letter-spacing: -.05em; }
.trust-hero aside > p { margin: 16px 0 0; color: var(--red); font-size: 13px; font-weight: 650; }
.trust-inputs { padding: 112px 0 122px; background: var(--warm-gray); }
.trust-heading { align-items: end; }
.trust-heading > div { grid-column: 1 / span 8; }
.trust-heading h2 { max-width: 870px; margin: 0; font-size: clamp(46px, 4.7vw, 66px); font-weight: 620; line-height: 1.02; letter-spacing: -.047em; }
.trust-heading > p { grid-column: 9 / 13; margin: 0; color: #666b6f; font-size: 15px; line-height: 1.72; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-left: 1px solid #c9c5bd; }
.trust-grid article { min-height: 400px; display: flex; flex-direction: column; overflow: hidden; border-right: 1px solid #c9c5bd; border-bottom: 1px solid #c9c5bd; background: #faf8f3; }
.trust-grid article:nth-child(-n+3) { border-top: 1px solid #c9c5bd; }
.trust-grid img { width: 100%; height: 178px; object-fit: cover; filter: saturate(.84) contrast(.98); }
.trust-grid article > div { min-height: 220px; display: flex; flex-direction: column; padding: 22px 27px 25px; }
.trust-grid span { color: var(--red); font-size: 11px; font-weight: 700; }
.trust-grid h3 { margin: auto 0 0; font-size: 23px; font-weight: 620; line-height: 1.2; letter-spacing: -.025em; }
.trust-grid p { margin: 11px 0 0; color: #676c70; font-size: 14px; line-height: 1.68; }
.trust-process { padding: 108px 0 118px; background: var(--charcoal); color: #fff; }
.trust-heading.light > p { color: #aeb1b3; }
.trust-process ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 64px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.trust-process li { min-height: 270px; display: flex; flex-direction: column; padding: 25px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.trust-process li > span { color: var(--red-bright); font-size: 11px; font-weight: 700; }
.trust-process h3 { margin: auto 0 0; font-size: 23px; font-weight: 620; line-height: 1.2; letter-spacing: -.025em; }
.trust-process li p { margin: 14px 0 0; color: #aeb1b3; font-size: 14px; line-height: 1.7; }

.content-page, .not-found { min-height: 70vh; padding: 150px 0 100px; background: var(--ivory); }
.content-page h1, .not-found h1 { margin: 0 0 34px; font-size: clamp(54px, 6vw, 80px); letter-spacing: -.055em; }
.not-found .button { margin-top: 24px; }

@media (max-width: 1000px) {
  .corporate-hero-copy { grid-column: 1 / span 7; }
  .hero-motion { grid-column: 8 / 13; }
  .corporate-hero h1 { font-size: clamp(46px, 5.7vw, 56px); }
  .hero-motion-meta { grid-template-columns: 1fr auto; }
  .hero-motion-meta > div { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 782px) {
  .admin-bar .site-header, .admin-bar .side-menu-panel { top: 46px; }
}

@media (max-width: 820px) {
  .page-shell { width: min(100% - 40px, 1280px); }
  .header-cta { display: none; }
  .corporate-hero { min-height: auto; padding: 112px 0 36px; }
  .corporate-hero-layout { grid-template-rows: auto 360px auto; gap: 34px; }
  .corporate-hero-copy, .hero-motion, .corporate-hero-foot { grid-column: 1 / 13; }
  .corporate-hero-copy { height: auto; display: block; padding: 0; }
  .corporate-hero-actions { margin-top: 36px; }
  .hero-motion { height: 360px; }
  .home-trade-intro, .home-trade-steps, .home-contact-layout > div:first-child, .home-contact-action { grid-column: 1 / 13; }
  .home-trade-steps, .home-contact-action { margin-top: 48px; }
  .about-page-lead, .contact-page-lead, .about-page-summary, .contact-card, .split-layout > div:first-child, .story-copy, .detail-list, .cta-layout > div, .cta-layout .button, .trust-hero-layout > div, .trust-hero aside, .trust-heading > div, .trust-heading > p, .boundary-band span, .boundary-band p, .boundary-band .button { grid-column: 1 / 13; }
  .about-page-summary, .contact-card, .trust-hero aside { margin-top: 42px; }
  .story-copy { padding-top: 34px; }
  .principles-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-process ol { grid-template-columns: repeat(2, 1fr); }
  .trust-heading > p { margin-top: 24px; }
  .boundary-band .button { width: fit-content; margin-top: 8px; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 36px, 1280px); }
  .site-header { height: 68px; padding-inline: 18px; }
  .brand-logo-light { width: 148px; height: 39px; }
  .menu-trigger { min-width: 86px; min-height: 42px; }
  .side-menu-panel { padding: 0 24px 26px; }
  .side-menu-head { min-height: 68px; }
  .side-menu-nav { margin-top: 34px; }
  .side-menu-nav a { min-height: 72px; grid-template-columns: 31px 1fr auto; }
  .side-menu-nav span { font-size: 24px; }
  .corporate-hero h1 { font-size: clamp(44px, 12.7vw, 59px); }
  .corporate-hero-lede { font-size: 16px; }
  .corporate-hero-actions .button { width: 100%; }
  .corporate-hero-foot { display: grid; gap: 7px; }
  .home-trade-model, .home-contact, .about-page-story, .principles-section, .contact-details, .trust-inputs, .trust-process { padding: 78px 0; }
  .home-trade-intro h2, .home-contact h2 { font-size: 42px; }
  .home-trade-steps li { min-height: 0; grid-template-columns: 42px 1fr; gap: 16px; padding: 24px 0; }
  .about-page-hero, .contact-page-hero, .trust-hero { min-height: auto; padding: 116px 0 70px; }
  .about-page-lead, .contact-page-lead { padding-right: 0; }
  .about-page-lead h1, .contact-page-lead h1, .trust-hero h1 { font-size: clamp(46px, 13vw, 60px); }
  .principles-grid, .trust-grid { grid-template-columns: 1fr; }
  .principles-grid article, .trust-grid article { min-height: 420px; }
  .cta-layout { gap: 32px; }
  .cta-layout .button { justify-self: start; }
  .detail-list { margin-top: 46px; }
  .category-list { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-gallery-page { padding: 116px 0 80px; }
  .trust-process ol { grid-template-columns: 1fr; }
  .trust-process li { min-height: 225px; }
  .boundary-band .page-shell { gap: 15px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { gap: 18px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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

/* Mobile-first refinement — compact, readable and intentionally single-column */
@media (max-width: 620px) {
  html, body { max-width: 100%; }
  body { font-size: 15px; line-height: 1.62; }
  .page-shell { width: calc(100% - 32px); }
  h1, h2, h3 { text-wrap: wrap; overflow-wrap: normal; word-break: normal; }

  .site-header {
    height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 16px;
  }
  .brand-link-header { min-width: 0; }
  .brand-logo-light { width: 122px; height: 34px; }
  .header-actions { grid-column: 2; }
  .menu-trigger {
    min-width: 82px;
    min-height: 40px;
    gap: 13px;
    padding: 0 12px;
    font-size: 11px;
  }
  .menu-trigger i { width: 18px; gap: 5px; }

  .side-menu-panel { width: 100%; max-width: 390px; padding: 0 20px 24px; }
  .side-menu-head { min-height: 64px; }
  .side-menu-nav { margin-top: 26px; }
  .side-menu-nav a { min-height: 64px; grid-template-columns: 28px minmax(0, 1fr) 18px; gap: 10px; }
  .side-menu-nav span { min-width: 0; font-size: 22px; line-height: 1.1; }
  .side-menu-foot { padding-top: 16px; }
  .side-menu-foot a { overflow-wrap: anywhere; }

  .eyebrow {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 10.5px;
    line-height: 1.4;
    letter-spacing: .02em;
  }
  .eyebrow span { width: 25px; flex: 0 0 25px; }
  .button { min-height: 50px; gap: 20px; padding-inline: 18px; }
  .text-link { min-height: 42px; gap: 28px; padding-top: 8px; }

  .corporate-hero { padding: 92px 0 28px; }
  .corporate-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 28px;
    align-items: start;
  }
  .corporate-hero-copy,
  .hero-motion,
  .corporate-hero-foot { min-width: 0; grid-column: 1; }
  .corporate-hero-copy { padding: 0; }
  .corporate-hero h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(36px, 10.7vw, 46px);
    font-weight: 640;
    line-height: 1.035;
    letter-spacing: -.045em;
  }
  .corporate-hero h1 span { margin-bottom: 6px; }
  .corporate-hero-lede { margin-top: 22px; font-size: 15px; line-height: 1.66; }
  .corporate-hero-actions { display: grid; align-items: stretch; gap: 12px; margin-top: 28px; }
  .corporate-hero-actions .button { width: 100%; }
  .corporate-hero-actions .text-link { margin-top: 2px; }
  .hero-motion { width: 100%; height: auto; aspect-ratio: 4 / 3; box-shadow: 0 16px 38px rgba(41, 35, 28, .1); }
  .hero-motion::before { background: linear-gradient(0deg, rgba(9,12,14,.42), transparent 36%); }
  .hero-motion::after { width: 2px; height: 52px; }
  .hero-motion-slide::before { inset: 0; background-size: cover; filter: saturate(.86) contrast(.97); }
  .hero-motion-meta { grid-template-columns: 1fr auto; gap: 14px; padding: 14px 16px; font-size: 10.5px; }
  .hero-motion-meta > div { display: none; }
  .corporate-hero-foot { gap: 5px; padding-top: 15px; font-size: 11.5px; line-height: 1.55; }
  .corporate-hero-foot p { max-width: 31rem; }

  .home-trade-model, .home-contact { padding: 68px 0; }
  .home-trade-intro { padding-right: 0; }
  .home-trade-intro h2, .home-contact h2 {
    font-size: clamp(34px, 10.3vw, 42px);
    line-height: 1.06;
    letter-spacing: -.042em;
  }
  .home-trade-intro > p:not(.eyebrow) { margin-top: 22px; font-size: 15px; line-height: 1.7; }
  .home-trade-intro .text-link { margin-top: 26px; }
  .home-trade-steps { margin-top: 40px; }
  .home-trade-steps li { grid-template-columns: 32px minmax(0, 1fr); gap: 14px; padding: 22px 0; }
  .home-trade-steps > li > span { padding-top: 3px; font-size: 10.5px; }
  .home-trade-steps h3 { font-size: 21px; line-height: 1.18; }
  .home-trade-steps p { margin-top: 8px; font-size: 14.5px; line-height: 1.66; }
  .home-contact-action { margin-top: 30px; }
  .home-contact-action > p { margin-bottom: 22px; font-size: 15px; line-height: 1.68; }
  .home-contact-action .button { width: 100%; }
  .home-contact-action > span { overflow-wrap: anywhere; font-size: 11.5px; }

  .about-page-hero, .contact-page-hero, .trust-hero { padding: 100px 0 56px; }
  .about-page-lead h1, .contact-page-lead h1, .trust-hero h1,
  .content-page h1, .not-found h1 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1;
    letter-spacing: -.048em;
  }
  .about-page-lead > p:last-child, .contact-page-lead > p:last-child,
  .trust-hero-layout > div > p:last-child { margin-top: 24px; font-size: 15px; line-height: 1.7; }
  .about-page-summary, .contact-card, .trust-hero aside { min-height: 360px; margin-top: 30px; padding: 24px; }
  .contact-card h2 { font-size: 34px; line-height: 1.05; }
  .contact-email { max-width: 100%; overflow-wrap: anywhere; font-size: 15px; }
  .about-page-story, .principles-section, .contact-details, .trust-inputs, .trust-process { padding: 68px 0; }
  .split-layout h2, .inner-page-cta h2, .trust-heading h2 { font-size: clamp(36px, 10vw, 44px); }
  .story-copy { padding-top: 26px; }
  .principles-grid article, .trust-grid article { min-height: 0; }
  .principles-grid img, .trust-grid img { height: 170px; }
  .principles-grid h2 { margin-top: 44px; font-size: 25px; }
  .trust-grid article > div { min-height: 210px; }
  .trust-process li { min-height: 210px; }
  .detail-list { margin-top: 34px; }
  .detail-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .detail-list p { min-width: 0; overflow-wrap: anywhere; font-size: 15px; }

  .product-gallery-page { padding: 100px 0 68px; }
  .product-gallery-heading { margin-bottom: 32px; text-align: left; }
  .product-gallery-heading h1 { font-size: clamp(36px, 10vw, 44px); }
  .category-list { margin-bottom: 26px; scrollbar-width: thin; }
  .category-list button { min-height: 40px; padding-inline: 14px; font-size: 13px; }
  .product-grid { gap: 14px 10px; }
  .product-card-copy { min-height: 66px; padding: 13px 10px 15px; }
  .product-card-copy h2 { font-size: 14px; }
  .product-empty { margin-top: 44px; padding: 32px 22px; }

  .site-footer { padding: 44px 0 22px; }
  .brand-logo-dark { width: 142px; height: 38px; }
  .footer-main > div:first-child > p { margin-top: 16px; font-size: 11.5px; line-height: 1.6; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; padding-top: 0; }
  .footer-links a { font-size: 12px; }
  .footer-bottom { gap: 7px; margin-top: 34px; padding-top: 16px; font-size: 9.5px; line-height: 1.5; letter-spacing: .035em; }
}

@media (max-width: 350px) {
  .page-shell { width: calc(100% - 28px); }
  .site-header { gap: 8px; padding-inline: 14px; }
  .brand-logo-light { width: 112px; height: 31px; }
  .menu-trigger { min-width: 76px; padding-inline: 10px; }
  .corporate-hero h1 { font-size: 35px; }
  .footer-links { grid-template-columns: 1fr; }
}
