:root{
  --color-warm-white:#fffdf8;
  --color-ivory:#fff8f2;
  --color-soft-beige:#f7efe5;
  --color-white:#ffffff;
  --color-champagne:#c9a46a;
  --color-champagne-soft:#e8d9be;
  --color-champagne-light:#f6ead6;
  --color-coral:#e76f51;
  --color-coral-hover:#d95d43;
  --color-soft-peach:#ffe3d8;
  --color-rose-gold:#d9a39a;
  --color-espresso:#3e2723;
  --color-cocoa:#5a3a32;
  --color-muted-brown:#7a6259;
  --contrast:var(--color-espresso);
  --contrast-2:var(--color-cocoa);
  --contrast-3:var(--color-muted-brown);
  --base:var(--color-soft-beige);
  --base-2:var(--color-ivory);
  --base-3:var(--color-warm-white);
  --accent:var(--color-coral);
  --accent-2:var(--color-champagne);
  --line:var(--color-champagne-soft);
  --ink:var(--color-espresso);
  --radius:1rem;
  --radius-md:1rem;
  --radius-lg:1.25rem;
  --radius-xl:1.5rem;
  --container:1240px;
  --shadow-card:0 16px 40px rgba(62, 39, 35, 0.08);
  --shadow-card-hover:0 20px 56px rgba(62, 39, 35, 0.12);
  --shadow-coral:0 12px 28px rgba(231, 111, 81, 0.22);
  --surface-glass:rgba(255, 255, 255, 0.82);
  --border-soft:rgba(232, 217, 190, 0.82);
  --overlay-subtle:rgba(62, 39, 35, 0.05);
  --font-body:"Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-heading:"Playfair Display", Georgia, "Times New Roman", serif;
  --font-size-meta:0.75rem;
  --font-size-label:0.875rem;
  --font-size-small:0.9375rem;
  --font-size-body:1rem;
  --font-size-lede:clamp(1.0625rem, 0.25vw + 1rem, 1.125rem);
  --font-size-h3:clamp(1.25rem, 0.5vw + 1.125rem, 1.5rem);
  --font-size-h2:clamp(1.875rem, 1.5vw + 1.5rem, 2.5rem);
  --font-size-h1:clamp(2.25rem, 3vw + 1.5rem, 3.5rem);
  --font-weight-regular:400;
  --font-weight-medium:500;
  --font-weight-semibold:600;
  --font-weight-bold:700;
}
@font-face{
  font-display:swap;
  font-family:"Inter";
  font-style:normal;
  font-weight:400 700;
  src:url(../fonts/inter/inter-latin-ext-variable.woff2) format("woff2");
  unicode-range:u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-display:swap;
  font-family:"Inter";
  font-style:normal;
  font-weight:400 700;
  src:url(../fonts/inter/inter-latin-variable.woff2) format("woff2");
  unicode-range:u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-display:swap;
  font-family:"Playfair Display";
  font-style:normal;
  font-weight:400 700;
  src:url(../fonts/playfair-display/playfair-display-latin-ext-variable.woff2) format("woff2");
  unicode-range:u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-display:swap;
  font-family:"Playfair Display";
  font-style:normal;
  font-weight:400 700;
  src:url(../fonts/playfair-display/playfair-display-latin-variable.woff2) format("woff2");
  unicode-range:u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
*{
  box-sizing:border-box;
}
html{
  scroll-behavior:smooth;
}
body{
  background:var(--color-warm-white);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-synthesis:none;
  line-height:1.65;
  margin:0;
}
a{
  color:inherit;
  text-decoration:none;
}
button,input[type=button],input[type=reset],input[type=submit]{
  border-radius:var(--radius);
}
.rounded-lg{
  border-radius:1rem;
}
img{
  display:block;
  height:auto;
  max-width:100%;
}
.site-footer img:not(.custom-logo),.site-main img:not(.custom-logo){
  filter:sepia(0.14) saturate(1.06) hue-rotate(346deg) brightness(1.02);
}
.container{
  margin-inline:auto;
  width:min(100% - 40px, var(--container));
}
.narrow{
  max-width:860px;
}
.screen-reader-text{
  height:1px;
  margin:-1px;
  overflow:hidden;
  padding:0;
  position:absolute;
  width:1px;
  clip:rect(0, 0, 0, 0);
  border:0;
  white-space:nowrap;
}
.skip-link:focus{
  height:auto;
  left:16px;
  padding:10px 14px;
  top:16px;
  width:auto;
  clip:auto;
  background:var(--base-3);
  color:var(--contrast);
  z-index:1000;
}
h1,h2,h3,p{
  margin-top:0;
}
h1,h2,h3,h4,h5,h6{
  color:var(--contrast);
  font-family:var(--font-heading);
  font-weight:var(--font-weight-semibold);
}
h1{
  font-size:var(--font-size-h1);
  letter-spacing:-0.02em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:18ch;
}
h2{
  font-size:var(--font-size-h2);
  letter-spacing:-0.015em;
  line-height:1.18;
  margin-bottom:18px;
}
h3{
  font-size:var(--font-size-h3);
  letter-spacing:-0.01em;
  line-height:1.3;
  margin-bottom:12px;
}
p{
  margin-bottom:18px;
}
.eyebrow{
  color:var(--accent);
  letter-spacing:0.1em;
  line-height:1.3;
  margin-bottom:14px;
}
.eyebrow,.home-hero-badge{
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  text-transform:uppercase;
}
.home-hero-badge{
  align-items:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  background:rgba(255, 255, 255, 0.7);
  border:1px solid rgba(201, 164, 106, 0.5);
  border-radius:1rem;
  color:var(--color-muted-brown);
  display:inline-flex;
  font-family:var(--font-body);
  gap:8px;
  letter-spacing:0.12em;
  line-height:1.5;
  margin-bottom:24px;
  padding:4px 16px;
  width:-moz-fit-content;
  width:fit-content;
}
.home-hero-badge-dot{
  animation:laeyo-badge-pulse 1.6s ease-in-out infinite;
  background:var(--color-coral);
  border-radius:1rem;
  flex:0 0 auto;
  height:8px;
  width:8px;
}
.grid-2{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
.grid-4{ grid-template-columns:repeat(4, minmax(0, 1fr)); }
.grid-5{ grid-template-columns:repeat(5, minmax(0, 1fr)); }
.grid-6{ grid-template-columns:repeat(6, minmax(0, 1fr)); }
.row{
  align-items:center;
  display:grid;
  gap:24px;
  grid-template-columns:repeat(12, 1fr);
}
.col-1{ grid-column:span 1; }
.col-2{ grid-column:span 2; }
.col-3{ grid-column:span 3; }
.col-4{ grid-column:span 4; }
.col-5{ grid-column:span 5; }
.col-6{ grid-column:span 6; }
.col-7{ grid-column:span 7; }
.col-8{ grid-column:span 8; }
.col-9{ grid-column:span 9; }
.col-10{ grid-column:span 10; }
.col-11{ grid-column:span 11; }
.col-12{ grid-column:span 12; }
@media (max-width: 900px){
  .col-md-6{ grid-column:span 6; }
  .col-md-12{ grid-column:span 12; }
}
@media (max-width: 600px){
  .col-sm-12{ grid-column:span 12; }
}
.flex-center{ justify-content:center; }
.flex-between,.flex-center{ align-items:center; display:flex; }
.flex-between{ justify-content:space-between; }
.flex-start{ align-items:center; display:flex; gap:12px; }
.flex-col{ display:flex; flex-direction:column; }
.gap-1{ gap:4px; }
.gap-2{ gap:8px; }
.gap-3{ gap:12px; }
.gap-4{ gap:16px; }
.gap-5{ gap:20px; }
.gap-6{ gap:24px; }
.gap-7{ gap:28px; }
.gap-8{ gap:32px; }
.gap-9{ gap:36px; }
.gap-10{ gap:40px; }
.gap-11{ gap:44px; }
.gap-12{ gap:48px; }
.gap-13{ gap:52px; }
.gap-14{ gap:56px; }
.gap-15{ gap:60px; }
.gap-16{ gap:64px; }
.p-0{ padding:0; }
.p-3{ padding:12px; }
.p-4{ padding:16px; }
.p-5{ padding:20px; }
.p-6{ padding:24px; }
.p-7{ padding:28px; }
.p-8{ padding:32px; }
.p-10{ padding:40px; }
.py-3{ padding-bottom:12px; padding-top:12px; }
.py-4{ padding-bottom:16px; padding-top:16px; }
.py-5{ padding-bottom:20px; padding-top:20px; }
.py-6{ padding-bottom:24px; padding-top:24px; }
.py-8{ padding-bottom:32px; padding-top:32px; }
.py-10{ padding-bottom:40px; padding-top:40px; }
.py-12{ padding-bottom:48px; padding-top:48px; }
.px-4{ padding-left:16px; padding-right:16px; }
.px-6{ padding-left:24px; padding-right:24px; }
.pt-4{ padding-top:16px; }
.pb-4{ padding-bottom:16px; }
.mb-0{ margin-bottom:0; }
.mb-3{ margin-bottom:12px; }
.mb-4{ margin-bottom:16px; }
.mb-6{ margin-bottom:24px; }
.align-start{ align-items:start; }
.align-center{ align-items:center; }
.align-stretch{ align-items:stretch; }
.d-none{ display:none; }
.d-flex{ display:flex; }
.d-grid{ display:grid; }
.text-center{ text-align:center; }
.text-left{ text-align:left; }
.font-semibold{ font-weight:var(--font-weight-semibold); }
.font-medium{ font-weight:var(--font-weight-medium); }
.text-muted{ color:var(--contrast-3); }
.rounded{ border-radius:var(--radius); }
@media (max-width: 900px){
  .grid-2-md{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .grid-1-md{ grid-template-columns:1fr; }
  .d-none-md{ display:none; }
}
@media (max-width: 600px){
  .d-none-sm{ display:none; }
  .flex-col-sm{ flex-direction:column; }
}
.about-hero,.trust-hero{
  background:radial-gradient(circle at 12% 18%, rgba(255, 227, 216, 0.62), transparent 30%), linear-gradient(180deg, var(--color-ivory), var(--color-warm-white));
  padding:92px 0;
}
.trust-export-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
}
.trust-export-page .section{
  padding-block:92px;
}
.trust-export-page .section-heading{
  margin-bottom:52px;
  margin-left:auto;
  margin-right:auto;
  max-width:850px;
  text-align:center;
}
.trust-export-copy h2,.trust-export-final-panel h2,.trust-export-page .section-heading h2{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:clamp(2rem, 3.2vw, 2.5rem);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.trust-export-hero{
  background:radial-gradient(circle at 84% 14%, rgba(255, 227, 216, 0.58), transparent 32%), var(--color-warm-white);
  padding-block:72px 96px;
}
.trust-export-hero-grid{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1fr) minmax(420px, 0.94fr);
}
.trust-export-hero-copy{
  min-width:0;
}
.trust-export-hero-copy .breadcrumbs{
  margin-bottom:28px;
}
.trust-export-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  margin:0 0 22px;
  padding:7px 15px;
  text-transform:uppercase;
}
.trust-export-hero h1{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:clamp(2.65rem, 4.3vw, 3.5rem);
  font-weight:var(--font-weight-semibold);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:720px;
}
.trust-export-hero-answer{
  color:var(--color-cocoa);
  font-size:1.075rem;
  margin-bottom:30px;
  max-width:700px;
}
.trust-export-check-list,.trust-export-hero-checks,.trust-export-note-list,.trust-export-packing-grid ul{
  list-style:none;
  margin:0;
  padding:0;
}
.trust-export-hero-checks{
  display:grid;
  gap:13px;
  margin-bottom:32px;
}
.trust-export-hero-checks li{
  align-items:flex-start;
  color:var(--color-espresso);
  display:flex;
  font-size:0.97rem;
  font-weight:var(--font-weight-medium);
  gap:12px;
}
.trust-export-hero-checks svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:20px;
  margin-top:2px;
  width:20px;
}
.trust-export-final-actions,.trust-export-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.trust-export-page .button{
  gap:9px;
  min-height:50px;
  padding-inline:24px;
}
.trust-export-page .button svg{
  height:18px;
  width:18px;
}
.trust-export-hero-media{
  background:var(--color-soft-beige);
  border:1px solid var(--color-champagne-soft);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-card);
  margin:0;
  min-width:0;
  overflow:hidden;
  position:relative;
}
.trust-export-hero-media:after{
  background:linear-gradient(180deg, transparent 64%, rgba(61, 42, 35, 0.16));
  content:"";
  inset:0;
  pointer-events:none;
  position:absolute;
}
.trust-export-hero-media img{
  aspect-ratio:4 / 3;
  display:block;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.trust-export-benefits-section,.trust-export-checklist-section,.trust-export-final-section,.trust-export-packing-section,.trust-export-page .trust-related-section{
  background:var(--color-ivory);
}
.trust-export-documents-section,.trust-export-page .trust-faq-section,.trust-export-proof-section,.trust-export-verification-section{
  background:var(--color-soft-beige);
}
.trust-export-carton-section,.trust-export-workflow-section{
  background:var(--color-warm-white);
}
.trust-export-benefits-grid,.trust-export-checklist-grid,.trust-export-documents-grid,.trust-export-packing-grid,.trust-export-proof-grid{
  display:grid;
  gap:24px;
}
.trust-export-benefits-grid,.trust-export-checklist-grid,.trust-export-documents-grid,.trust-export-packing-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.trust-export-benefits-grid article,.trust-export-checklist-grid article,.trust-export-documents-grid article,.trust-export-packing-grid article,.trust-export-proof-grid article{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  min-width:0;
}
.trust-export-benefits-grid article,.trust-export-documents-grid article,.trust-export-packing-grid article{
  padding:30px;
}
.trust-export-page .trust-icon{
  align-items:center;
  background:var(--color-soft-peach);
  border-radius:14px;
  color:var(--color-coral);
  display:inline-flex;
  height:46px;
  justify-content:center;
  margin-bottom:22px;
  width:46px;
}
.trust-export-page .trust-icon svg{
  height:23px;
  width:23px;
}
.trust-export-page article h3{
  color:var(--color-espresso);
  font-size:1.08rem;
  line-height:1.35;
  margin-bottom:10px;
}
.trust-export-page article p{
  color:var(--color-cocoa);
  font-size:0.95rem;
  margin-bottom:0;
}
.trust-export-split{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1fr) minmax(410px, 0.9fr);
}
.trust-export-copy>p:not(.eyebrow):first-of-type{
  font-size:1.04rem;
}
.trust-export-note-list{
  display:grid;
  gap:22px;
  margin-top:32px;
}
.trust-export-note-list li{
  align-items:start;
  display:grid;
  gap:15px;
  grid-template-columns:42px minmax(0, 1fr);
}
.trust-export-note-list li>span{
  align-items:center;
  background:var(--color-soft-peach);
  border-radius:13px;
  color:var(--color-coral);
  display:inline-flex;
  height:42px;
  justify-content:center;
  width:42px;
}
.trust-export-note-list svg{
  height:21px;
  width:21px;
}
.trust-export-note-list h3{
  margin-bottom:4px;
}
.trust-export-scope-note{
  align-items:flex-start;
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:var(--radius-md);
  color:var(--color-cocoa);
  display:flex;
  font-size:0.9rem;
  gap:12px;
  margin-top:30px;
  padding:18px 20px;
}
.trust-export-scope-note svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:19px;
  margin-top:2px;
  width:19px;
}
.trust-export-record{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  padding:34px;
  position:relative;
}
.trust-export-card-label,.trust-export-record-label{
  color:var(--color-coral-dark);
  display:inline-flex;
  font-size:0.72rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.075em;
  text-transform:uppercase;
}
.trust-export-record-label{
  background:var(--color-soft-peach);
  border-radius:999px;
  margin-bottom:22px;
  padding:6px 11px;
}
.trust-export-record header{
  align-items:center;
  -moz-column-gap:14px;
       column-gap:14px;
  display:grid;
  grid-template-columns:48px minmax(0, 1fr);
  margin-bottom:24px;
}
.trust-export-record header>svg{
  background:var(--color-soft-peach);
  border-radius:15px;
  color:var(--color-coral);
  grid-row:1 /  3;
  height:48px;
  padding:12px;
  width:48px;
}
.trust-export-record header h3,.trust-export-record header p{
  margin:0;
}
.trust-export-record header p{
  font-size:0.82rem;
}
.trust-export-record dl{
  border-top:1px solid var(--color-champagne-soft);
  margin:0;
}
.trust-export-record dl div{
  border-bottom:1px solid var(--color-champagne-soft);
  display:grid;
  gap:20px;
  grid-template-columns:minmax(120px, 0.82fr) minmax(0, 1.18fr);
  padding-block:13px;
}
.trust-export-record dt{
  color:var(--color-cocoa);
  font-size:0.82rem;
  font-weight:var(--font-weight-medium);
}
.trust-export-record dd{
  color:var(--color-espresso);
  font-size:0.84rem;
  font-weight:var(--font-weight-semibold);
  margin:0;
  text-align:right;
}
.trust-export-packing-grid ul{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.trust-export-packing-grid li{
  align-items:flex-start;
  color:var(--color-cocoa);
  display:flex;
  font-size:0.9rem;
  gap:9px;
}
.trust-export-packing-grid li svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:16px;
  margin-top:4px;
  width:16px;
}
.trust-export-check-list{
  display:grid;
  gap:14px;
  margin-top:28px;
}
.trust-export-check-list li{
  align-items:flex-start;
  display:flex;
  gap:11px;
}
.trust-export-check-list svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:19px;
  margin-top:3px;
  width:19px;
}
.trust-export-card-label{
  margin-bottom:12px;
}
.trust-export-documents-section .section-heading a{
  color:var(--color-coral-dark);
  font-weight:var(--font-weight-semibold);
  text-decoration:underline;
  text-underline-offset:3px;
}
.trust-export-workflow{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  list-style:none;
  margin:0;
  padding:0;
}
.trust-export-workflow li{
  min-width:0;
  padding:0 14px;
  position:relative;
  text-align:center;
}
.trust-export-workflow li:before{
  background:var(--color-champagne-soft);
  content:"";
  height:1px;
  left:-50%;
  position:absolute;
  right:50%;
  top:21px;
}
.trust-export-workflow li:first-child:before{
  display:none;
}
.trust-export-workflow li>span{
  align-items:center;
  background:var(--color-coral);
  border:6px solid var(--color-warm-white);
  border-radius:50%;
  box-sizing:content-box;
  color:var(--color-warm-white);
  display:inline-flex;
  font-size:0.78rem;
  font-weight:var(--font-weight-semibold);
  height:44px;
  justify-content:center;
  margin-bottom:20px;
  position:relative;
  width:44px;
  z-index:1;
}
.trust-export-workflow h3{
  font-size:0.97rem;
  min-height:2.7em;
}
.trust-export-workflow p{
  font-size:0.84rem;
}
.trust-export-checklist-grid article{
  align-items:start;
  display:grid;
  gap:16px;
  grid-template-columns:46px minmax(0, 1fr);
  padding:25px;
}
.trust-export-checklist-grid .trust-icon{
  margin-bottom:0;
}
.trust-export-proof-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-export-proof-grid article{
  overflow:hidden;
}
.trust-export-proof-visual{
  align-items:center;
  aspect-ratio:4 / 3;
  background:linear-gradient(135deg, rgba(255, 227, 216, 0.7), transparent 62%), var(--color-ivory);
  color:var(--color-coral-dark);
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:center;
  padding:24px;
}
.trust-export-proof-visual svg{
  height:42px;
  width:42px;
}
.trust-export-proof-visual span{
  background:rgba(255, 255, 255, 0.82);
  border-radius:999px;
  color:var(--color-coral-dark);
  font-size:0.7rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.055em;
  padding:6px 11px;
  text-align:center;
  text-transform:uppercase;
}
.trust-export-proof-copy{
  padding:25px;
}
.trust-export-page .trust-faq-section .faq-list,.trust-export-page .trust-related-section .trust-topic-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-export-page .trust-faq-section,.trust-export-page .trust-related-section{
  padding-block:92px;
}
.trust-export-final-panel{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-card);
  margin-inline:auto;
  max-width:920px;
  padding:64px 72px;
  text-align:center;
}
.trust-export-final-panel>p:not(.eyebrow){
  margin-bottom:30px;
  margin-left:auto;
  margin-right:auto;
  max-width:720px;
}
.trust-export-final-actions{
  justify-content:center;
}
@media (max-width: 1024px){
  .trust-export-hero-grid,.trust-export-split{
    gap:40px;
    grid-template-columns:1fr 1fr;
  }

  .trust-export-benefits-grid,.trust-export-checklist-grid,.trust-export-documents-grid,.trust-export-packing-grid,.trust-export-page .trust-faq-section .faq-list,.trust-export-page .trust-related-section .trust-topic-grid,.trust-export-proof-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .trust-export-workflow{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    row-gap:48px;
  }

  .trust-export-workflow li:nth-child(4):before{
    display:none;
  }
}
@media (max-width: 767px){
  .trust-export-page .section,.trust-export-page .trust-faq-section,.trust-export-page .trust-related-section{
    padding-block:64px;
  }

  .trust-export-page .section-heading{
    margin-bottom:36px;
  }

  .trust-export-hero{
    padding-block:48px 64px;
  }

  .trust-export-hero-grid,.trust-export-split{
    gap:42px;
    grid-template-columns:1fr;
  }

  .trust-export-hero h1{
    font-size:clamp(2.35rem, 11vw, 2.6rem);
  }

  .trust-export-hero-media{
    order:-1;
  }

  .trust-export-record{
    padding:26px 22px;
  }

  .trust-export-workflow{
    gap:0;
    grid-template-columns:1fr;
  }

  .trust-export-workflow li{
    -moz-column-gap:18px;
         column-gap:18px;
    display:grid;
    grid-template-columns:54px minmax(0, 1fr);
    padding:0 0 30px;
    text-align:left;
  }

  .trust-export-workflow li:before,.trust-export-workflow li:nth-child(4):before{
    bottom:0;
    display:block;
    height:auto;
    left:27px;
    right:auto;
    top:0;
    width:1px;
  }

  .trust-export-workflow li:first-child:before{
    top:27px;
  }

  .trust-export-workflow li:last-child:before{
    bottom:auto;
    height:27px;
  }

  .trust-export-workflow li>span{
    grid-row:1 /  3;
    margin:0;
  }

  .trust-export-workflow h3{
    margin:4px 0 5px;
    min-height:0;
  }

  .trust-export-workflow p{
    grid-column:2;
  }

  .trust-export-final-panel{
    padding:42px 24px;
  }
}
@media (max-width: 600px){
  .trust-export-benefits-grid,.trust-export-checklist-grid,.trust-export-documents-grid,.trust-export-packing-grid,.trust-export-page .trust-faq-section .faq-list,.trust-export-page .trust-related-section .trust-topic-grid,.trust-export-proof-grid{
    grid-template-columns:1fr;
  }

  .trust-export-final-actions,.trust-export-hero-actions{
    flex-direction:column;
  }

  .trust-export-page .button{
    width:100%;
  }

  .trust-export-record dl div{
    gap:3px;
    grid-template-columns:1fr;
  }

  .trust-export-record dd{
    text-align:left;
  }
}
.trust-confidentiality-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
}
.trust-confidentiality-page .section{
  padding-block:92px;
}
.trust-confidentiality-page .section-heading{
  margin-bottom:52px;
  margin-left:auto;
  margin-right:auto;
  max-width:840px;
  text-align:center;
}
.trust-confidentiality-copy h2,.trust-confidentiality-final-panel h2,.trust-confidentiality-page .section-heading h2{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:clamp(2rem, 3.2vw, 2.5rem);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.trust-confidentiality-hero{
  background:radial-gradient(circle at 82% 18%, rgba(255, 227, 216, 0.58), transparent 30%), var(--color-warm-white);
  padding-block:72px 96px;
}
.trust-confidentiality-hero-grid{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1fr) minmax(420px, 0.94fr);
}
.trust-confidentiality-hero-copy{
  min-width:0;
}
.trust-confidentiality-hero-copy .breadcrumbs{
  margin-bottom:28px;
}
.trust-confidentiality-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  margin:0 0 22px;
  padding:7px 15px;
  text-transform:uppercase;
}
.trust-confidentiality-hero h1{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:clamp(2.65rem, 4.3vw, 3.5rem);
  font-weight:var(--font-weight-semibold);
  line-height:1.08;
  margin-bottom:24px;
  max-width:720px;
}
.trust-confidentiality-hero-answer{
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  line-height:1.68;
  margin:0;
  max-width:700px;
}
.trust-confidentiality-check-list,.trust-confidentiality-hero-checks,.trust-confidentiality-note-list{
  display:grid;
  list-style:none;
  margin:0;
  padding:0;
}
.trust-confidentiality-hero-checks{
  gap:13px;
  margin-top:28px;
}
.trust-confidentiality-check-list li,.trust-confidentiality-hero-checks li{
  align-items:start;
  display:grid;
  gap:11px;
  grid-template-columns:22px minmax(0, 1fr);
}
.trust-confidentiality-check-list .lucide,.trust-confidentiality-hero-checks .lucide{
  color:var(--color-coral);
  height:20px;
  margin-top:3px;
  width:20px;
}
.trust-confidentiality-final-actions,.trust-confidentiality-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}
.trust-confidentiality-final-actions .button,.trust-confidentiality-hero-actions .button{
  gap:9px;
}
.trust-confidentiality-final-actions .lucide,.trust-confidentiality-hero-actions .lucide{
  height:18px;
  width:18px;
}
.trust-confidentiality-hero-media{
  background:var(--color-soft-beige);
  border:1px solid var(--border-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.trust-confidentiality-hero-media img{
  aspect-ratio:4 / 3;
  display:block;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.trust-confidentiality-brand-section,.trust-confidentiality-display-section,.trust-confidentiality-page .trust-related-section,.trust-confidentiality-repeat-section,.trust-confidentiality-why-section{
  background:var(--color-ivory);
}
.trust-confidentiality-nda-section,.trust-confidentiality-proof-section,.trust-confidentiality-scent-section,.trust-confidentiality-workflow-section{
  background:var(--color-warm-white);
}
.trust-confidentiality-brand-grid,.trust-confidentiality-proof-grid,.trust-confidentiality-scent-grid,.trust-confidentiality-why-grid{
  display:grid;
  gap:22px;
}
.trust-confidentiality-scent-grid,.trust-confidentiality-why-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.trust-confidentiality-brand-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-confidentiality-proof-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-confidentiality-brand-grid article,.trust-confidentiality-proof-grid article,.trust-confidentiality-scent-grid article,.trust-confidentiality-why-grid article{
  background:var(--color-white);
  border:1px solid var(--border-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  min-width:0;
  padding:28px;
}
.trust-confidentiality-scent-grid article,.trust-confidentiality-why-grid article{
  min-height:250px;
}
.trust-confidentiality-page article h3{
  color:var(--color-espresso);
}
.trust-confidentiality-page article p{
  color:var(--color-cocoa);
}
.trust-confidentiality-brand-grid article{
  align-items:start;
  display:grid;
  gap:18px;
  grid-template-columns:48px minmax(0, 1fr);
}
.trust-confidentiality-brand-grid .trust-icon{
  margin:0;
}
.trust-confidentiality-brand-grid h3,.trust-confidentiality-brand-grid p{
  margin-top:0;
}
.trust-confidentiality-split{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1fr) minmax(430px, 0.94fr);
}
.trust-confidentiality-copy>p:not(.eyebrow,.trust-confidentiality-scope-note){
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
}
.trust-confidentiality-note-list{
  gap:20px;
  margin-top:28px;
}
.trust-confidentiality-note-list li{
  align-items:start;
  display:grid;
  gap:14px;
  grid-template-columns:42px minmax(0, 1fr);
}
.trust-confidentiality-note-list li>span{
  background:var(--color-champagne-light);
  border-radius:50%;
  color:var(--color-coral);
  display:grid;
  height:40px;
  place-items:center;
  width:40px;
}
.trust-confidentiality-note-list .lucide{
  height:19px;
  width:19px;
}
.trust-confidentiality-note-list h3,.trust-confidentiality-note-list p{
  margin:0;
}
.trust-confidentiality-note-list p,.trust-confidentiality-scope-note{
  font-size:var(--font-size-small);
}
.trust-confidentiality-scope-note{
  background:var(--color-ivory);
  border-left:3px solid var(--color-champagne);
  color:var(--color-cocoa);
  display:grid;
  gap:10px;
  grid-template-columns:20px minmax(0, 1fr);
  margin-top:28px;
  padding:16px 18px;
}
.trust-confidentiality-scope-note .lucide{
  color:var(--color-coral);
  height:18px;
  margin-top:2px;
  width:18px;
}
.trust-confidentiality-record{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  overflow:hidden;
  padding:34px;
  position:relative;
}
.trust-confidentiality-record-label{
  background:var(--color-soft-peach);
  color:var(--color-coral);
  font-size:0.68rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.09em;
  padding:8px 16px;
  position:absolute;
  right:0;
  text-transform:uppercase;
  top:0;
}
.trust-confidentiality-record header{
  border-bottom:1px solid var(--color-champagne-soft);
  display:grid;
  justify-items:center;
  margin-bottom:18px;
  padding:8px 150px 16px 0;
  text-align:center;
}
.trust-confidentiality-record header .lucide{
  color:var(--color-champagne);
  height:28px;
  margin-bottom:8px;
  width:28px;
}
.trust-confidentiality-record header h3,.trust-confidentiality-record header p{
  margin:0;
}
.trust-confidentiality-record header p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.trust-confidentiality-record dl,.trust-confidentiality-record dl div{
  margin:0;
}
.trust-confidentiality-record dl div{
  border-bottom:1px solid rgba(232, 217, 190, 0.72);
  display:grid;
  gap:18px;
  grid-template-columns:minmax(0, 0.8fr) minmax(180px, 1.2fr);
  padding:10px 0;
}
.trust-confidentiality-record dt{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
}
.trust-confidentiality-record dd{
  color:var(--color-espresso);
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  text-align:right;
}
#confidentiality-support{
  scroll-margin-top:110px;
}
.trust-confidentiality-check-list{
  gap:13px;
  margin-top:28px;
}
.trust-confidentiality-display-record dd{
  color:var(--color-coral);
}
.trust-confidentiality-workflow{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}
.trust-confidentiality-workflow:before{
  background:var(--color-champagne-soft);
  content:"";
  height:2px;
  left:8%;
  position:absolute;
  right:8%;
  top:22px;
}
.trust-confidentiality-workflow li{
  display:grid;
  justify-items:center;
  position:relative;
  text-align:center;
}
.trust-confidentiality-workflow li>span{
  background:var(--color-coral);
  border-radius:50%;
  box-shadow:var(--shadow-coral);
  color:var(--color-white);
  display:grid;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  height:44px;
  margin-bottom:16px;
  place-items:center;
  width:44px;
  z-index:1;
}
.trust-confidentiality-workflow h3{
  font-size:1.05rem;
  margin-bottom:8px;
  min-height:52px;
}
.trust-confidentiality-workflow p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
  margin:0;
}
.trust-confidentiality-proof-grid article{
  min-height:245px;
}
.trust-confidentiality-proof-meta{
  align-items:flex-start;
  display:flex;
  gap:12px;
  justify-content:space-between;
  margin-bottom:24px;
}
.trust-confidentiality-proof-meta .lucide{
  color:var(--color-champagne);
  height:30px;
  width:30px;
}
.trust-confidentiality-proof-meta span{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  font-size:0.65rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.07em;
  padding:5px 9px;
  text-transform:uppercase;
}
.trust-confidentiality-page .trust-faq-section .faq-list,.trust-confidentiality-page .trust-related-section .trust-topic-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-confidentiality-page .trust-faq-section{
  background:var(--color-ivory);
}
.trust-confidentiality-final-section{
  background:var(--color-soft-beige);
}
.trust-confidentiality-final-panel{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:22px;
  box-shadow:var(--shadow-card);
  margin:0 auto;
  max-width:900px;
  padding:56px;
  text-align:center;
}
.trust-confidentiality-final-panel>p:not(.eyebrow){
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  margin-left:auto;
  margin-right:auto;
  max-width:730px;
}
.trust-confidentiality-final-actions{
  justify-content:center;
}
@media (max-width: 1100px){
  .trust-confidentiality-scent-grid,.trust-confidentiality-why-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .trust-confidentiality-workflow{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    row-gap:30px;
  }

  .trust-confidentiality-workflow:before{
    display:none;
  }

  .trust-confidentiality-page .trust-faq-section .faq-list,.trust-confidentiality-page .trust-related-section .trust-topic-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .trust-confidentiality-hero-grid,.trust-confidentiality-split{
    gap:44px;
    grid-template-columns:1fr;
  }

  .trust-confidentiality-hero-media{
    margin:0 auto;
    width:min(100%, 720px);
  }

  .trust-confidentiality-proof-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .trust-confidentiality-hero,.trust-confidentiality-page .section{
    padding-block:64px;
  }

  .trust-confidentiality-page .section-heading{
    margin-bottom:36px;
  }

  .trust-confidentiality-hero h1{
    font-size:2.5rem;
  }

  .trust-confidentiality-final-actions,.trust-confidentiality-hero-actions{
    display:grid;
  }

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

  .trust-confidentiality-brand-grid,.trust-confidentiality-page .trust-faq-section .faq-list,.trust-confidentiality-page .trust-related-section .trust-topic-grid,.trust-confidentiality-proof-grid,.trust-confidentiality-scent-grid,.trust-confidentiality-why-grid{
    grid-template-columns:1fr;
  }

  .trust-confidentiality-proof-grid article,.trust-confidentiality-scent-grid article,.trust-confidentiality-why-grid article{
    min-height:auto;
  }

  .trust-confidentiality-brand-grid article,.trust-confidentiality-proof-grid article,.trust-confidentiality-record,.trust-confidentiality-scent-grid article,.trust-confidentiality-why-grid article{
    padding:22px;
  }

  .trust-confidentiality-brand-grid article{
    gap:14px;
    grid-template-columns:42px minmax(0, 1fr);
  }

  .trust-confidentiality-record header{
    padding-right:0;
    padding-top:32px;
  }

  .trust-confidentiality-record dl div{
    gap:3px;
    grid-template-columns:1fr;
  }

  .trust-confidentiality-record dd{
    text-align:left;
  }

  .trust-confidentiality-workflow{
    gap:18px;
    grid-template-columns:1fr;
    padding-left:8px;
  }

  .trust-confidentiality-workflow:before{
    bottom:22px;
    display:block;
    height:auto;
    left:29px;
    top:22px;
    width:2px;
  }

  .trust-confidentiality-workflow li{
    -moz-column-gap:14px;
         column-gap:14px;
    grid-template-columns:44px minmax(0, 1fr);
    justify-items:start;
    text-align:left;
  }

  .trust-confidentiality-workflow li>span{
    grid-row:1 / span 2;
    margin:0;
  }

  .trust-confidentiality-workflow h3{
    margin:0;
    min-height:0;
  }

  .trust-confidentiality-final-panel{
    padding:38px 22px;
  }
}
.trust-hero-grid{
  display:grid;
}
.about-hero h1,.trust-hero h1{
  margin-bottom:24px;
  max-width:15ch;
}
.about-hero-lede,.trust-hero-lede{
  color:var(--contrast-2);
  font-size:var(--font-size-lede);
  max-width:680px;
}
.about-factory-grid figure,.about-hero-media,.about-material-grid figure,.about-process-grid figure,.about-product-card figure,.about-team-grid figure{
  background:var(--base-2);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  margin:0;
  overflow:hidden;
}
.about-hero-media{
  box-shadow:var(--shadow-card);
}
.about-hero-media img{
  aspect-ratio:4 / 3;
  -o-object-fit:cover;
     object-fit:cover;
}
.about-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
}
.about-page .container{
  width:min(calc(100% - 48px), 1280px);
}
.about-page .section{
  padding-block:96px;
}
.about-page h1,.about-page h2{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
}
.about-page h1{
  font-size:var(--font-size-h1);
  line-height:1.08;
  max-width:18ch;
}
.about-page h2{
  font-size:var(--font-size-h2);
  line-height:1.18;
}
.about-page article h3{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  font-size:1.125rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0;
}
.about-page article p{
  font-size:var(--font-size-small);
  line-height:1.6;
}
.about-page .section-heading{
  margin-bottom:48px;
  max-width:900px;
  text-align:center;
}
.about-page .section-heading,.about-page .section-heading h2,.about-page .section-heading p:not(.eyebrow){
  margin-left:auto;
  margin-right:auto;
}
.about-page .section-heading p:not(.eyebrow){
  font-size:1.0625rem;
  max-width:760px;
}
.about-page .about-product-heading h2{
  max-width:none;
}
.about-page .eyebrow{
  font-size:0.8125rem;
  letter-spacing:0.09em;
  line-height:1.2;
  margin-bottom:12px;
}
.about-page .button{
  border-radius:999px;
  font-size:0.8125rem;
  font-weight:var(--font-weight-semibold);
  gap:10px;
  letter-spacing:0.05em;
  min-height:52px;
  padding-inline:30px;
}
.about-page .button svg,.about-page .text-link svg{
  flex:0 0 auto;
  height:17px;
  stroke-width:1.7;
  width:17px;
}
.about-hero{
  padding-block:96px;
}
.about-hero h1{
  margin-bottom:24px;
}
.about-hero-lede{
  font-size:1.125rem;
  line-height:1.6;
  margin-bottom:26px;
  max-width:610px;
}
.about-hero-badge{
  align-items:center;
  background:rgba(232, 217, 190, 0.36);
  border:1px solid rgba(201, 164, 106, 0.32);
  border-radius:999px;
  color:var(--contrast-3);
  display:inline-flex;
  font-size:0.8125rem;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  letter-spacing:0.05em;
  line-height:1.2;
  margin-bottom:16px;
  padding:6px 13px;
  width:-moz-fit-content;
  width:fit-content;
}
.about-hero-badge svg{
  height:16px;
  width:16px;
}
.about-hero-points,.about-inline-checks{
  list-style:none;
  padding:0;
}
.about-hero-points{
  display:grid;
  gap:11px;
  margin:0 0 30px;
}
.about-hero-points li,.about-inline-checks li{
  align-items:center;
  color:var(--color-cocoa);
  display:inline-flex;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-medium);
  gap:10px;
}
.about-hero-points svg,.about-inline-checks svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:19px;
  stroke-width:1.8;
  width:19px;
}
.about-hero .hero-actions{
  margin-top:0;
}
.about-hero-media{
  border-radius:24px;
  min-height:500px;
  position:relative;
}
.about-hero-media img{
  aspect-ratio:auto;
  height:500px;
  width:100%;
}
.about-hero-media figcaption{
  backdrop-filter:blur(8px);
  background:rgba(62, 39, 35, 0.7);
  border-radius:12px;
  bottom:16px;
  color:#fff;
  font-size:0.75rem;
  left:16px;
  line-height:1.45;
  padding:12px 14px;
  position:absolute;
  right:16px;
}
.about-answer-section{
  text-align:center;
}
.about-answer-section>h2{
  margin-bottom:42px;
}
.about-page .about-quick-answer{
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 12px 36px rgba(62, 39, 35, 0.06);
  color:var(--contrast-2);
  font-size:var(--font-size-lede);
  font-style:italic;
  font-synthesis:style;
  margin:0 auto 28px;
  max-width:900px;
  padding:42px 48px;
}
.about-buyer-grid,.about-document-grid,.about-fact-grid,.about-factory-grid,.about-material-grid,.about-process-grid,.about-product-grid,.about-qc-grid,.about-team-grid,.trust-checklist-grid,.trust-checkpoint-grid,.trust-document-category-grid,.trust-document-type-grid,.trust-pillar-grid,.trust-proof-grid,.trust-question-grid,.trust-step-grid,.trust-timing-grid,.trust-topic-grid,.trust-verify-grid{
  display:grid;
  gap:22px;
}
.trust-document-category-grid,.trust-timing-grid,.trust-topic-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.trust-document-type-grid,.trust-pillar-grid,.trust-proof-grid,.trust-question-grid,.trust-verify-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-checklist-grid,.trust-checkpoint-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.trust-step-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.about-fact-grid{
  margin-top:44px;
  text-align:left;
}
.about-buyer-grid article,.about-document-grid article,.about-fact-grid article,.about-qc-grid article,.trust-checkpoint-grid article,.trust-document-category-grid article,.trust-document-type-grid article,.trust-library-empty,.trust-pillar-grid article,.trust-proof-grid article,.trust-question-grid article,.trust-record-card,.trust-step-grid article,.trust-timing-grid article,.trust-topic-card,.trust-verify-grid article{
  background:rgba(255, 255, 255, 0.88);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.055);
  padding:28px;
}
.about-buyer-grid article,.about-document-grid article,.about-qc-grid article,.trust-document-type-grid article,.trust-proof-grid article,.trust-question-grid article{
  text-align:center;
}
.about-buyer-grid article,.about-document-grid article,.about-fact-grid article{
  transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease;
}
.about-buyer-grid article:hover,.about-document-grid article:hover,.about-fact-grid article:hover{
  border-color:rgba(201, 164, 106, 0.8);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.about-buyer-grid article{
  text-align:left;
}
.about-page article h3,.trust-page article h3{
  margin-bottom:10px;
}
.about-page article p,.trust-feature-panel p,.trust-file-group-heading p,.trust-page article p{
  color:var(--contrast-2);
}
.trust-icon{
  background:rgba(232, 217, 190, 0.44);
  border-radius:var(--radius);
  color:var(--accent-2);
  display:inline-grid;
  height:44px;
  margin-bottom:18px;
  place-items:center;
  width:44px;
}
.trust-icon svg{
  height:24px;
  stroke-width:1.7;
  width:24px;
}
.trust-icon-large{
  height:64px;
  width:64px;
}
.trust-icon-large svg{
  height:34px;
  width:34px;
}
.about-material-grid article,.about-process-grid article,.about-product-card,.about-team-grid article{
  background:var(--base-3);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.055);
  overflow:hidden;
}
.about-product-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.about-material-grid figure,.about-process-grid figure,.about-product-card figure,.about-team-grid figure{
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
}
.about-product-card figure .about-image-placeholder,.about-product-card figure img{
  aspect-ratio:auto;
  height:160px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.about-material-grid article>h3,.about-material-grid article>p,.about-process-grid article>h3,.about-process-grid article>p,.about-product-card>div,.about-team-grid article>div{
  margin-left:24px;
  margin-right:24px;
}
.about-product-card>div,.about-team-grid article>div{
  padding:24px 0;
}
.about-product-card>div{
  display:flex;
  flex:1;
  flex-direction:column;
  height:100%;
  margin-left:20px;
  margin-right:20px;
  padding:20px 0;
}
.about-product-card p{
  color:var(--contrast-2);
  font-size:0.75rem;
  line-height:1.5;
  margin-bottom:14px;
  min-height:3.6em;
}
.about-product-grid{
  gap:24px;
}
.about-product-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:16px;
}
.about-product-tags span{
  background:var(--color-ivory);
  border:1px solid rgba(232, 217, 190, 0.95);
  border-radius:999px;
  color:#775927;
  display:inline-flex;
  font-size:0.625rem;
  letter-spacing:0.02em;
  line-height:1.2;
  min-height:22px;
  padding:2px 9px;
}
.about-product-card .text-link,.about-product-tags span{
  align-items:center;
  font-weight:var(--font-weight-semibold);
}
.about-product-card .text-link{
  font-size:0.8125rem;
  gap:7px;
}
.about-material-grid article>h3,.about-process-grid article>h3{
  margin-top:22px;
}
.about-material-grid article>p,.about-process-grid article>p{
  margin-bottom:24px;
}
.about-material-grid figure .about-image-placeholder,.about-material-grid figure img,.about-process-grid figure .about-image-placeholder,.about-process-grid figure img,.about-team-grid figure .about-image-placeholder,.about-team-grid figure img{
  aspect-ratio:4 / 3;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.about-factory-grid{
  margin-bottom:30px;
}
.about-centered-action{
  display:flex;
  justify-content:center;
  margin-top:34px;
}
.about-factory-grid .about-image-placeholder,.about-factory-grid img{
  aspect-ratio:16 / 9;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.about-factory-grid figcaption{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  padding:16px 20px;
}
.about-image-placeholder{
  background:linear-gradient(135deg, rgba(255, 227, 216, 0.7), rgba(247, 239, 229, 0.9));
  color:var(--contrast-3);
  display:grid;
  font-size:var(--font-size-small);
  min-height:220px;
  place-items:center;
}
.about-image-placeholder span{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid rgba(201, 164, 106, 0.5);
  border-radius:var(--radius);
  padding:10px 14px;
}
.about-visit-section{
  background:var(--color-ivory);
  text-align:center;
}
.about-visit-section .hero-actions{
  justify-content:center;
}
.about-visit-media{
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin:0 0 42px;
  overflow:hidden;
}
.about-visit-media .about-image-placeholder,.about-visit-media img,.about-visit-media video{
  aspect-ratio:16 / 8;
  background:var(--contrast);
  display:block;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.about-visit-media figcaption{
  color:var(--contrast-2);
  font-size:0.8125rem;
  font-style:italic;
  padding:12px 18px;
}
.about-final-cta>.container>p:not(.eyebrow),.about-visit-section>.container>p{
  font-size:1.125rem;
  margin-left:auto;
  margin-right:auto;
  max-width:680px;
}
.about-inline-checks{
  display:flex;
  flex-wrap:wrap;
  gap:18px 30px;
  justify-content:center;
  margin:36px 0 0;
}
.about-related-section{
  background:var(--base-2);
  border-top:1px solid var(--line);
  text-align:center;
}
.about-related-links,.trust-support-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.about-related-links{
  justify-content:center;
}
.about-related-links a,.trust-support-links a{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  padding:9px 14px;
}
.about-related-links a{
  border-radius:999px;
}
.about-qc-grid article{
  padding:16px;
  text-align:left;
}
.about-qc-visual{
  background:linear-gradient(135deg, rgba(255, 227, 216, 0.62), rgba(247, 239, 229, 0.92));
  border-radius:12px;
  color:var(--color-champagne);
  display:grid;
  margin-bottom:18px;
  min-height:154px;
  place-items:center;
  width:100%;
}
.about-qc-visual svg{
  height:42px;
  stroke-width:1.5;
  width:42px;
}
.about-final-cta{
  background:radial-gradient(circle at 50% 0, rgba(255, 227, 216, 0.54), transparent 42%), var(--color-warm-white);
  border-top:1px solid rgba(232, 217, 190, 0.7);
  text-align:center;
}
.about-final-cta .hero-actions{
  justify-content:center;
}
.trust-dashboard{
  background:rgba(255, 255, 255, 0.9);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  padding:34px;
}
.trust-dashboard h2{
  font-size:var(--font-size-h3);
}
.trust-dashboard-grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-dashboard-grid div{
  background:var(--base-2);
  border-radius:var(--radius);
  padding:18px;
}
.trust-dashboard-grid span,.trust-dashboard-grid strong{
  display:block;
}
.trust-dashboard-grid strong{
  color:var(--accent);
  font-family:var(--font-heading);
  font-size:1.75rem;
}
.trust-dashboard-grid span{
  color:var(--contrast-2);
  font-size:var(--font-size-meta);
}
.trust-checkpoint-grid article>span,.trust-step-grid article>span,.trust-verify-grid article>span{
  color:var(--accent);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-bold);
  letter-spacing:0.08em;
  margin-bottom:18px;
}
.trust-feature-panel{
  align-items:center;
  display:grid;
  gap:42px;
  grid-template-columns:minmax(0, 1fr) minmax(300px, 0.72fr);
}
.trust-record-card ul{
  color:var(--contrast-2);
  display:grid;
  gap:9px;
  padding-left:20px;
}
.trust-note{
  background:rgba(255, 255, 255, 0.66);
  border-left:3px solid var(--accent-2);
  font-size:var(--font-size-small);
  margin-top:24px;
  padding:16px 18px;
}
.section-dark .trust-record-card,.section-dark .trust-step-grid article{
  background:rgba(255, 255, 255, 0.08);
  border-color:rgba(255, 255, 255, 0.18);
}
.section-dark .trust-feature-panel p,.section-dark .trust-record-card h3,.section-dark .trust-record-card p,.section-dark .trust-step-grid h3,.section-dark .trust-step-grid p{
  color:var(--base-3);
}
.trust-table-wrap{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.055);
  overflow-x:auto;
}
.trust-table{
  border-collapse:collapse;
  min-width:760px;
  width:100%;
}
.trust-table caption{
  border-bottom:1px solid var(--line);
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  padding:18px 22px;
  text-align:left;
}
.trust-table td,.trust-table th{
  border-bottom:1px solid rgba(232, 217, 190, 0.7);
  color:var(--contrast-2);
  padding:18px 20px;
  text-align:left;
  vertical-align:top;
}
.trust-table tbody th,.trust-table thead th{
  color:var(--contrast);
  font-weight:var(--font-weight-semibold);
}
.about-matrix-wrap{
  border-color:rgba(232, 217, 190, 0.8);
  border-radius:16px;
  box-shadow:var(--shadow-card);
}
.about-matrix-table{
  min-width:900px;
}
.about-matrix-table,.about-matrix-table thead th{
  font-family:var(--font-body);
  font-size:0.875rem;
}
.about-matrix-table thead th{
  background:var(--color-soft-beige);
  border-bottom-color:rgba(232, 217, 190, 0.9);
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
  line-height:1.35;
  padding:17px 18px;
}
.about-matrix-table tbody td,.about-matrix-table tbody th{
  border-bottom-color:rgba(228, 226, 222, 0.9);
  font-size:0.875rem;
  line-height:1.55;
  padding:17px 18px;
  vertical-align:middle;
}
.about-matrix-table tbody th{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  font-weight:var(--font-weight-medium);
  width:27%;
}
.about-matrix-table tbody td:nth-child(2){
  width:43%;
}
.about-matrix-table .about-matrix-status,.about-matrix-table thead th:nth-child(n+3){
  text-align:center;
  width:15%;
}
.about-matrix-table tbody tr{
  transition:background 160ms ease;
}
.about-matrix-table tbody tr:hover{
  background:rgba(255, 248, 242, 0.72);
}
.about-matrix-table tbody tr:last-child td,.about-matrix-table tbody tr:last-child th{
  border-bottom:0;
}
.about-matrix-status>span{
  align-items:center;
  display:inline-flex;
  justify-content:center;
}
.about-matrix-status svg{
  height:24px;
  stroke-width:1.8;
  width:24px;
}
.about-matrix-status .is-supported{
  color:var(--color-coral);
}
.about-matrix-status .is-route-dependent{
  color:#b9b5ae;
}
.trust-library-empty{
  margin:0 auto;
  max-width:760px;
  text-align:center;
}
.trust-library-empty .button{
  margin-top:12px;
}
.trust-checklist-grid div{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:flex;
  gap:12px;
  padding:18px;
}
.trust-checklist-grid .trust-icon{
  flex:0 0 34px;
  height:34px;
  margin:0;
  width:34px;
}
.trust-related-section .trust-topic-grid,.trust-topic-section .trust-topic-grid{
  margin-bottom:28px;
}
.about-product-card .text-link,.trust-topic-card .text-link{
  display:inline-flex;
  margin-top:auto;
}
.about-page .faq-list,.trust-faq-section .faq-list{
  align-items:start;
  display:grid;
  gap:16px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.about-page .faq-item,.trust-faq-section .faq-item{
  align-self:start;
}
.trust-hub-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
}
.trust-hub-page .container{
  width:min(calc(100% - 48px), 1280px);
}
.trust-hub-page .section{
  padding-block:80px;
}
.trust-hub-page h1,.trust-hub-page h2{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
}
.trust-hub-page h1{
  font-size:var(--font-size-h1);
  line-height:1.08;
  max-width:16ch;
}
.trust-hub-page h2{
  font-size:var(--font-size-h2);
  line-height:1.18;
}
.trust-hub-page .section-heading{
  margin-bottom:42px;
  margin-left:auto;
  margin-right:auto;
  max-width:900px;
  text-align:center;
}
.trust-hub-page .section-heading h2,.trust-hub-page .section-heading p:not(.eyebrow){
  margin-left:auto;
  margin-right:auto;
  max-width:none;
}
.trust-hub-page .section-heading p:not(.eyebrow){
  font-size:1.0625rem;
  max-width:780px;
}
.trust-hub-page .eyebrow{
  font-size:0.8125rem;
  letter-spacing:0.09em;
  line-height:1.2;
  margin-bottom:12px;
}
.trust-hub-page .button{
  border-radius:999px;
  font-size:0.8125rem;
  font-weight:var(--font-weight-semibold);
  gap:10px;
  letter-spacing:0.04em;
  min-height:52px;
  padding-inline:28px;
}
.trust-hub-page .button svg,.trust-hub-page .text-link svg{
  flex:0 0 auto;
  height:17px;
  stroke-width:1.7;
  width:17px;
}
.trust-hub-page article h3{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
}
.trust-hub-page article p{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.6;
}
.trust-hub-hero{
  padding-block:72px 80px;
}
.trust-hub-breadcrumb{
  margin-bottom:32px;
}
.trust-hub-breadcrumb .breadcrumbs{
  margin-bottom:0;
}
.trust-hub-hero-copy{
  min-width:0;
}
.trust-hub-badge{
  align-items:center;
  background:rgba(232, 217, 190, 0.42);
  border:1px solid rgba(201, 164, 106, 0.36);
  border-radius:999px;
  color:var(--contrast-3);
  display:inline-flex;
  font-size:0.8125rem;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  letter-spacing:0.05em;
  line-height:1.2;
  margin-bottom:16px;
  padding:6px 13px;
  width:-moz-fit-content;
  width:fit-content;
}
.trust-hub-badge svg{
  color:var(--color-champagne);
  height:16px;
  width:16px;
}
.trust-hub-page .trust-hero-lede{
  font-size:1.125rem;
  line-height:1.6;
  margin-bottom:28px;
  max-width:620px;
}
.trust-hub-hero-points{
  display:grid;
  gap:13px;
  list-style:none;
  margin:0;
  padding:0;
}
.trust-hub-hero-points li{
  align-items:flex-start;
  color:var(--contrast-2);
  display:flex;
  font-size:var(--font-size-small);
  gap:11px;
  line-height:1.55;
}
.trust-hub-hero-points li>svg{
  color:var(--color-coral);
  flex:0 0 20px;
  height:20px;
  margin-top:2px;
  stroke-width:1.8;
  width:20px;
}
.trust-hub-hero-points strong{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
}
.trust-hub-hero .hero-actions{
  margin-top:32px;
}
.trust-hub-visual{
  background:var(--color-ivory);
  border:1px solid rgba(232, 217, 190, 0.75);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  height:600px;
  margin:0;
  overflow:hidden;
  position:relative;
}
.trust-hub-visual>img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.trust-hub-visual-shade{
  background:linear-gradient(180deg, rgba(62, 39, 35, 0.04) 12%, rgba(62, 39, 35, 0.12) 46%, rgba(62, 39, 35, 0.62));
  inset:0;
  position:absolute;
}
.trust-hub-dashboard{
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  background:rgba(255, 253, 248, 0.93);
  border:1px solid rgba(232, 217, 190, 0.76);
  border-radius:18px;
  bottom:28px;
  box-shadow:0 18px 48px rgba(62, 39, 35, 0.16);
  left:28px;
  padding:24px;
  position:absolute;
  right:28px;
}
.trust-hub-dashboard h2{
  font-size:1.75rem;
  line-height:1.25;
  margin-bottom:18px;
}
.trust-hub-dashboard-grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-hub-dashboard-grid div{
  align-items:center;
  background:rgba(255, 248, 242, 0.9);
  border:1px solid rgba(232, 217, 190, 0.55);
  border-radius:12px;
  display:flex;
  gap:10px;
  min-width:0;
  padding:15px;
}
.trust-hub-dashboard-grid svg{
  color:var(--color-champagne);
  flex:0 0 21px;
  height:21px;
  stroke-width:1.7;
  width:21px;
}
.trust-hub-dashboard-grid span{
  color:var(--contrast-2);
  font-size:0.75rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.02em;
  line-height:1.35;
}
.trust-hub-verify-grid{
  gap:16px;
  grid-auto-rows:1fr;
  grid-template-columns:repeat(5, minmax(0, 1fr));
}
.trust-hub-verify-grid article{
  align-items:center;
  display:flex;
  flex-direction:column;
  height:100%;
  padding:24px 20px;
  text-align:center;
}
.trust-hub-verify-icon{
  background:var(--color-champagne-light);
  border-radius:16px;
  color:var(--color-champagne);
  display:inline-grid;
  height:52px;
  margin-bottom:17px;
  place-items:center;
  width:52px;
}
.trust-hub-verify-icon svg{
  height:27px;
  stroke-width:1.6;
  width:27px;
}
.trust-hub-verify-grid h3{
  font-family:var(--font-body);
  font-size:0.8125rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.04em;
  margin-bottom:11px;
  min-height:3.3em;
  text-transform:uppercase;
}
.trust-hub-verify-grid p{
  font-size:0.8125rem;
  margin-bottom:0;
}
.trust-hub-document-grid,.trust-hub-pillar-grid,.trust-hub-question-grid{
  gap:28px;
  grid-auto-rows:1fr;
}
.trust-hub-pillar-grid article,.trust-hub-question-grid article{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:30px;
  text-align:left;
}
.trust-hub-question-grid article{
  background:var(--color-ivory);
  border-radius:24px;
}
.trust-hub-document-card h3,.trust-hub-pillar-grid h3,.trust-hub-question-grid h3{
  font-family:var(--font-heading);
  font-size:1.25rem;
  line-height:1.35;
  margin-bottom:12px;
}
.trust-hub-pillar-grid p,.trust-hub-question-grid p{
  margin-bottom:0;
}
.trust-hub-pillar-grid article{
  border-radius:24px;
}
.trust-hub-document-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:24px;
  text-align:left;
}
.trust-hub-document-visual{
  background:linear-gradient(135deg, rgba(255, 227, 216, 0.56), rgba(246, 234, 214, 0.78));
  border-radius:14px;
  color:var(--color-champagne);
  display:grid;
  margin-bottom:22px;
  min-height:132px;
  place-items:center;
}
.trust-hub-document-visual svg{
  height:44px;
  stroke-width:1.4;
  width:44px;
}
.trust-hub-document-card>p{
  flex:1;
  margin-bottom:20px;
}
.trust-hub-document-footer{
  align-items:center;
  border-top:1px solid rgba(232, 217, 190, 0.7);
  display:flex;
  gap:12px;
  justify-content:space-between;
  padding-top:16px;
}
.trust-hub-document-footer>span{
  color:#775927;
  font-size:0.6875rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.05em;
  line-height:1.2;
  text-transform:uppercase;
}
.trust-hub-document-footer .text-link{
  align-items:center;
  color:var(--color-coral-hover);
  display:inline-flex;
  font-size:0.75rem;
  font-weight:var(--font-weight-semibold);
  gap:6px;
  white-space:nowrap;
}
.trust-hub-topic-grid{
  gap:28px;
  grid-auto-rows:1fr;
}
.trust-hub-topic-grid .trust-topic-card{
  border-radius:24px;
  display:flex;
  flex-direction:column;
  min-height:286px;
  padding:34px;
  text-align:left;
}
.trust-hub-topic-grid h3{
  font-family:var(--font-heading);
  font-size:1.5rem;
  line-height:1.3;
}
.trust-hub-topic-grid p{
  margin-bottom:28px;
}
.trust-hub-topic-grid .button{
  margin-top:auto;
  width:-moz-fit-content;
  width:fit-content;
}
.trust-hub-authority-links{
  align-items:center;
  background:var(--color-ivory);
  border:1px solid rgba(232, 217, 190, 0.76);
  border-radius:16px;
  color:var(--contrast-2);
  display:flex;
  flex-wrap:wrap;
  font-size:0.8125rem;
  gap:10px 18px;
  justify-content:center;
  margin-top:34px;
  padding:18px 22px;
}
.trust-hub-authority-links a,.trust-hub-authority-links>span{
  font-weight:var(--font-weight-semibold);
}
.trust-hub-authority-links a{
  color:var(--color-coral-hover);
}
.trust-hub-page .trust-faq-section .faq-list{
  align-items:start;
  gap:18px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-hub-page .trust-faq-section .faq-column{
  align-content:start;
  display:grid;
  gap:18px;
}
.trust-hub-final-section{
  background:var(--color-warm-white);
  border-top:1px solid rgba(232, 217, 190, 0.72);
}
.trust-hub-final-cta{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  max-width:980px;
  padding:54px;
  text-align:center;
}
.trust-hub-final-cta>p:not(.eyebrow){
  font-size:1.0625rem;
  margin-left:auto;
  margin-right:auto;
  max-width:760px;
}
.trust-hub-final-cta .hero-actions{
  justify-content:center;
}
.trust-hub-page .trust-hub-document-card,.trust-hub-page .trust-hub-pillar-grid article,.trust-hub-page .trust-hub-question-grid article,.trust-hub-page .trust-hub-topic-grid .trust-topic-card,.trust-hub-page .trust-hub-verify-grid article{
  transition:transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease;
}
.trust-hub-page .trust-hub-document-card:hover,.trust-hub-page .trust-hub-pillar-grid article:hover,.trust-hub-page .trust-hub-question-grid article:hover,.trust-hub-page .trust-hub-topic-grid .trust-topic-card:hover,.trust-hub-page .trust-hub-verify-grid article:hover{
  border-color:rgba(201, 164, 106, 0.8);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
@media (max-width: 1180px){
  .trust-hub-verify-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .trust-hub-verify-grid article:last-child:nth-child(odd){
    grid-column:1 /  -1;
    justify-self:center;
    width:calc(50% - 8px);
  }
}
@media (max-width: 900px){
  .trust-hub-page .container{
    width:min(calc(100% - 64px), 1280px);
  }

  .trust-hub-hero-grid{
    gap:48px;
    grid-template-columns:1fr;
  }

  .trust-hub-breadcrumb{
    margin-bottom:28px;
  }

  .trust-hub-visual{
    height:540px;
  }

  .trust-hub-document-grid,.trust-hub-pillar-grid,.trust-hub-question-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .trust-hub-page .container{
    width:min(calc(100% - 32px), 1280px);
  }

  .trust-hub-hero,.trust-hub-page .section{
    padding-block:64px;
  }

  .trust-hub-page .section-heading{
    margin-bottom:36px;
  }

  .trust-hub-page .button{
    padding-inline:20px;
    width:100%;
  }

  .trust-hub-visual{
    height:500px;
  }

  .trust-hub-dashboard{
    bottom:14px;
    left:14px;
    padding:18px;
    right:14px;
  }

  .trust-hub-dashboard-grid{
    grid-template-columns:1fr;
  }

  .trust-hub-dashboard-grid div{
    padding:12px;
  }

  .trust-hub-document-grid,.trust-hub-page .trust-faq-section .faq-list,.trust-hub-pillar-grid,.trust-hub-question-grid,.trust-hub-topic-grid,.trust-hub-verify-grid{
    grid-template-columns:1fr;
  }

  .trust-hub-verify-grid article:last-child:nth-child(odd){
    grid-column:auto;
    width:100%;
  }

  .trust-hub-verify-grid h3{
    min-height:0;
  }

  .trust-hub-topic-grid .trust-topic-card{
    min-height:0;
    padding:26px;
  }

  .trust-hub-topic-grid .button{
    width:100%;
  }

  .trust-hub-authority-links,.trust-hub-document-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .trust-hub-final-cta{
    padding:34px 22px;
  }
}
.trust-certifications-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
}
.trust-cert-hero{
  background:radial-gradient(circle at 10% 18%, rgba(255, 227, 216, 0.58), transparent 31%), linear-gradient(180deg, var(--color-ivory), var(--color-warm-white));
  padding:88px 0;
}
.trust-cert-hero-grid{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1.02fr) minmax(420px, 0.98fr);
}
.trust-cert-hero-copy h1{
  font-size:var(--font-size-h1);
  line-height:1.08;
  margin-bottom:24px;
  max-width:17ch;
}
.trust-cert-badge,.trust-cert-hero-copy h1{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
}
.trust-cert-badge{
  align-items:center;
  background:var(--color-champagne-light);
  border:1px solid var(--color-champagne);
  border-radius:var(--radius);
  display:inline-flex;
  font-size:var(--font-size-meta);
  gap:8px;
  letter-spacing:0.1em;
  line-height:1.4;
  margin:0 0 24px;
  min-height:28px;
  padding:4px 14px;
  text-transform:uppercase;
}
.trust-cert-badge svg{
  height:15px;
  width:15px;
}
.trust-cert-lede{
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  line-height:1.6;
  margin-bottom:28px;
  max-width:660px;
}
.trust-cert-feature-list{
  display:grid;
  gap:12px;
  list-style:none;
  margin:0 0 32px;
  padding:0;
}
.trust-cert-feature-list li{
  align-items:center;
  color:var(--color-cocoa);
  display:flex;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-medium);
  gap:12px;
}
.trust-cert-feature-list li>span{
  background:rgba(255, 227, 216, 0.55);
  border-radius:50%;
  color:var(--color-coral);
  display:inline-grid;
  flex:0 0 32px;
  height:32px;
  place-items:center;
  width:32px;
}
.trust-cert-feature-list svg{
  height:17px;
  width:17px;
}
.trust-cert-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.trust-cert-hero-placeholder{
  align-content:center;
  background:linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 234, 214, 0.86)), var(--color-champagne-light);
  border:1px solid var(--color-champagne);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  color:var(--color-cocoa);
  display:grid;
  gap:24px;
  justify-items:center;
  margin:0;
  min-height:560px;
  overflow:hidden;
  padding:48px;
  position:relative;
  text-align:center;
}
.trust-cert-hero-placeholder:after,.trust-cert-hero-placeholder:before{
  background:rgba(255, 255, 255, 0.6);
  border:1px solid rgba(232, 217, 190, 0.74);
  border-radius:14px;
  content:"";
  height:280px;
  position:absolute;
  transform:rotate(-8deg) translate(-92px, -12px);
  width:210px;
}
.trust-cert-hero-placeholder:after{
  transform:rotate(8deg) translate(92px, -12px);
}
.trust-cert-hero-placeholder>div,.trust-cert-placeholder-icon,.trust-cert-placeholder-note{
  position:relative;
  z-index:1;
}
.trust-cert-placeholder-icon{
  background:var(--base-3);
  border:1px solid var(--color-champagne);
  border-radius:50%;
  box-shadow:0 16px 40px rgba(90, 58, 50, 0.1);
  color:var(--color-coral);
  display:grid;
  height:92px;
  place-items:center;
  width:92px;
}
.trust-cert-placeholder-icon svg{
  height:42px;
  stroke-width:1.5;
  width:42px;
}
.trust-cert-hero-placeholder span,.trust-cert-hero-placeholder strong{
  display:block;
}
.trust-cert-hero-placeholder strong{
  font-family:var(--font-heading);
  font-size:var(--font-size-h3);
  line-height:1.3;
  margin-bottom:8px;
}
.trust-cert-hero-placeholder>div span,.trust-cert-placeholder-note{
  color:var(--color-muted-brown);
  font-size:var(--font-size-small);
}
.trust-cert-placeholder-note{
  background:rgba(255, 255, 255, 0.72);
  border-radius:var(--radius);
  font-style:italic;
  padding:7px 12px;
}
.trust-cert-gallery-grid,.trust-cert-overview-grid,.trust-cert-step-grid,.trust-cert-timing-grid{
  display:grid;
  gap:24px;
}
.trust-cert-gallery-grid,.trust-cert-overview-grid,.trust-cert-step-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-cert-overview-grid article,.trust-cert-step-grid article,.trust-cert-timing-grid article{
  background:var(--base-3);
  border:1px solid rgba(232, 217, 190, 0.76);
  border-radius:var(--radius);
  box-shadow:0 14px 34px rgba(90, 58, 50, 0.06);
  padding:28px;
}
.trust-cert-overview-grid .trust-icon,.trust-cert-timing-grid .trust-icon{
  margin-bottom:20px;
}
.trust-cert-gallery-grid h3,.trust-cert-overview-grid h3,.trust-cert-step-grid h3,.trust-cert-timing-grid h3{
  color:var(--color-cocoa);
  font-family:var(--font-heading);
  font-size:var(--font-size-h3);
  font-weight:var(--font-weight-semibold);
  line-height:1.35;
  margin-bottom:10px;
}
.trust-cert-gallery-grid p,.trust-cert-overview-grid p,.trust-cert-step-grid p,.trust-cert-timing-grid p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-small);
  line-height:1.65;
  margin:0;
}
.trust-cert-gallery-card{
  background:var(--base-3);
  border:1px solid rgba(232, 217, 190, 0.8);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  display:grid;
  overflow:hidden;
}
.trust-cert-document-visual{
  background:linear-gradient(145deg, var(--color-champagne-light), var(--color-ivory));
  border-bottom:1px solid rgba(232, 217, 190, 0.8);
  display:grid;
  min-height:190px;
  place-items:center;
}
.trust-cert-document-visual>span{
  background:var(--base-3);
  border:1px solid var(--color-champagne);
  border-radius:10px;
  box-shadow:0 12px 28px rgba(90, 58, 50, 0.1);
  color:var(--color-coral);
  display:grid;
  height:118px;
  place-items:center;
  width:92px;
}
.trust-cert-document-visual svg{
  height:34px;
  stroke-width:1.6;
  width:34px;
}
.trust-cert-gallery-body{
  align-items:flex-start;
  display:flex;
  flex-direction:column;
  min-height:310px;
  padding:28px;
}
.trust-cert-scope-tag,.trust-cert-stage{
  background:rgba(231, 111, 81, 0.1);
  border-radius:var(--radius);
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.06em;
  line-height:1.3;
  margin-bottom:16px;
  padding:5px 10px;
  text-transform:uppercase;
  width:-moz-fit-content;
  width:fit-content;
}
.trust-cert-gallery-footer{
  align-items:center;
  border-top:1px solid rgba(232, 217, 190, 0.7);
  display:flex;
  gap:14px;
  justify-content:space-between;
  margin-top:auto;
  padding-top:18px;
  width:100%;
}
.trust-cert-gallery-footer>span{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
  font-style:italic;
}
.trust-cert-table thead th{
  background:var(--color-espresso);
  color:var(--color-ivory);
}
.trust-cert-table tbody tr:nth-child(2n){
  background:rgba(246, 234, 214, 0.26);
}
.trust-cert-scope-note{
  align-items:flex-start;
  background:rgba(246, 234, 214, 0.62);
  border:1px solid var(--color-champagne);
  border-radius:var(--radius);
  color:var(--color-muted-brown);
  display:flex;
  font-size:var(--font-size-small);
  font-style:italic;
  gap:12px;
  margin:24px 0 0;
  padding:20px 22px;
}
.trust-cert-scope-note svg{
  color:var(--color-coral);
  flex:0 0 19px;
  height:19px;
  width:19px;
}
.trust-cert-step-grid article>span:first-child{
  background:rgba(231, 111, 81, 0.1);
  border-radius:var(--radius);
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.06em;
  margin-bottom:18px;
  padding:5px 10px;
  text-transform:uppercase;
}
.trust-cert-library-section{
  background:var(--color-warm-white);
}
.trust-cert-library-layout{
  align-items:start;
  display:grid;
  gap:32px;
  grid-template-columns:250px minmax(0, 1fr);
}
.trust-cert-library-nav{
  display:grid;
  gap:10px;
  position:sticky;
  top:116px;
}
.trust-cert-library-nav button{
  align-items:center;
  background:var(--color-ivory);
  border:1px solid var(--color-champagne);
  border-radius:var(--radius);
  color:var(--color-cocoa);
  cursor:pointer;
  display:flex;
  font:inherit;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  gap:12px;
  justify-content:space-between;
  min-height:46px;
  padding:10px 14px;
  text-align:left;
}
.trust-cert-library-nav button.is-active,.trust-cert-library-nav button:focus-visible,.trust-cert-library-nav button:hover{
  background:var(--color-coral);
  border-color:var(--color-coral);
  color:var(--base-3);
  outline:none;
}
.trust-cert-library-nav button span{
  background:rgba(255, 255, 255, 0.18);
  border-radius:var(--radius);
  color:inherit;
  display:grid;
  font-size:var(--font-size-meta);
  height:24px;
  min-width:24px;
  padding:0 6px;
  place-items:center;
}
.trust-cert-file-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-cert-file-card[hidden]{
  display:none;
}
.trust-cert-file-card .certificate-preview,.trust-cert-file-card .certificate-preview img{
  height:210px;
  min-height:210px;
}
.trust-cert-file-meta{
  border-top:1px solid rgba(232, 217, 190, 0.72);
  display:grid;
  gap:8px;
  margin:6px 0;
  padding-top:12px;
}
.trust-cert-file-meta:empty{
  display:none;
}
.trust-cert-file-meta div{
  display:grid;
  gap:10px;
  grid-template-columns:82px minmax(0, 1fr);
}
.trust-cert-file-meta dd,.trust-cert-file-meta dt{
  font-size:var(--font-size-meta);
  line-height:1.45;
  margin:0;
}
.trust-cert-file-meta dt{
  color:var(--color-muted-brown);
  font-weight:var(--font-weight-semibold);
}
.trust-cert-file-meta dd{
  color:var(--color-cocoa);
}
.trust-cert-preview-only,.trust-cert-visibility-note{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
  font-style:italic;
}
.trust-cert-timing-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.trust-certifications-page .trust-related-section{
  background:var(--color-soft-beige);
}
.trust-certifications-page .trust-related-section .trust-topic-card{
  background:var(--base-3);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
}
.trust-certifications-page .trust-faq-section .faq-list{
  align-items:start;
  gap:20px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-cert-final-section{
  background:var(--color-soft-beige);
}
.trust-cert-final-cta{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  margin:0 auto;
  max-width:900px;
  padding:56px;
  text-align:center;
}
.trust-cert-final-cta h2,.trust-cert-final-cta>p:not(.eyebrow){
  margin-left:auto;
  margin-right:auto;
  max-width:720px;
}
.trust-cert-final-cta h2{
  margin-bottom:18px;
}
.trust-cert-final-cta>p:not(.eyebrow){
  color:var(--color-muted-brown);
}
.trust-cert-final-cta>div{
  gap:14px;
}
.trust-cert-authority-links,.trust-cert-final-cta>div{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:28px;
}
.trust-cert-authority-links{
  gap:12px 24px;
}
.trust-cert-authority-links a{
  color:var(--color-cocoa);
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  text-decoration:underline;
  text-decoration-color:var(--color-champagne);
  text-underline-offset:4px;
}
@media (max-width: 900px){
  .trust-cert-hero{
    padding:72px 0;
  }

  .trust-cert-hero-grid{
    gap:44px;
    grid-template-columns:1fr;
  }

  .trust-cert-hero-placeholder{
    min-height:420px;
  }

  .trust-cert-gallery-grid,.trust-cert-overview-grid,.trust-cert-step-grid,.trust-cert-timing-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .trust-cert-library-layout{
    grid-template-columns:1fr;
  }

  .trust-cert-library-nav{
    display:flex;
    overflow-x:auto;
    padding-bottom:4px;
    position:static;
  }

  .trust-cert-library-nav button{
    flex:0 0 auto;
  }
}
@media (max-width: 600px){
  .trust-cert-hero-grid{
    gap:36px;
  }

  .trust-cert-hero-copy h1{
    font-size:clamp(2.35rem, 12vw, 3rem);
  }

  .trust-cert-hero-placeholder{
    min-height:340px;
    padding:32px 20px;
  }

  .trust-cert-hero-placeholder:after,.trust-cert-hero-placeholder:before{
    height:210px;
    width:150px;
  }

  .trust-cert-actions,.trust-cert-final-cta>div{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }

  .trust-cert-file-grid,.trust-cert-gallery-grid,.trust-cert-overview-grid,.trust-cert-step-grid,.trust-cert-timing-grid,.trust-certifications-page .trust-faq-section .faq-list{
    grid-template-columns:1fr;
  }

  .trust-cert-gallery-body{
    min-height:0;
  }

  .trust-cert-gallery-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .trust-cert-final-cta{
    padding:36px 20px;
  }
}
.trust-quality-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
}
.trust-quality-page .section{
  padding-block:92px;
}
.trust-quality-page .section-heading{
  margin-bottom:52px;
  margin-left:auto;
  margin-right:auto;
  max-width:820px;
  text-align:center;
}
.trust-quality-final-panel h2,.trust-quality-page .section-heading h2,.trust-quality-sample-copy h2{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:clamp(2rem, 3.2vw, 2.5rem);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.trust-quality-hero{
  background:radial-gradient(circle at 82% 20%, rgba(255, 227, 216, 0.55), transparent 30%), var(--color-warm-white);
  padding-block:72px 96px;
}
.trust-quality-hero-grid{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1fr) minmax(420px, 0.94fr);
}
.trust-quality-hero-copy{
  min-width:0;
}
.trust-quality-hero-copy .breadcrumbs{
  margin-bottom:28px;
}
.trust-quality-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  margin:0 0 22px;
  padding:7px 15px;
  text-transform:uppercase;
}
.trust-quality-hero h1{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:clamp(2.65rem, 4.3vw, 3.5rem);
  font-weight:var(--font-weight-semibold);
  line-height:1.08;
  margin-bottom:24px;
  max-width:720px;
}
.trust-quality-hero-answer{
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  line-height:1.68;
  margin:0;
  max-width:690px;
}
.trust-quality-hero-checks,.trust-quality-sample-notes{
  display:grid;
  gap:13px;
  list-style:none;
  margin:28px 0 0;
  padding:0;
}
.trust-quality-hero-checks li,.trust-quality-sample-notes li{
  align-items:start;
  display:grid;
  gap:11px;
  grid-template-columns:22px minmax(0, 1fr);
}
.trust-quality-hero-checks .lucide,.trust-quality-sample-notes .lucide{
  color:var(--color-coral);
  height:20px;
  margin-top:3px;
  width:20px;
}
.trust-quality-final-actions,.trust-quality-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}
.trust-quality-final-actions .button,.trust-quality-hero-actions .button{
  gap:9px;
}
.trust-quality-final-actions .lucide,.trust-quality-hero-actions .lucide{
  height:18px;
  width:18px;
}
.trust-quality-hero-media{
  background:var(--color-soft-beige);
  border:1px solid var(--border-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.trust-quality-hero-media img{
  aspect-ratio:4 / 3;
  display:block;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.trust-quality-checkpoint-section,.trust-quality-consistency-section,.trust-quality-page .trust-faq-section,.trust-quality-production-section,.trust-quality-proof-section{
  background:var(--color-ivory);
}
.trust-quality-checkpoint-grid,.trust-quality-consistency-grid,.trust-quality-packaging-grid,.trust-quality-production-grid,.trust-quality-proof-grid{
  display:grid;
  gap:22px;
}
.trust-quality-checkpoint-grid,.trust-quality-consistency-grid,.trust-quality-packaging-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.trust-quality-production-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.trust-quality-proof-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-quality-checkpoint-grid article,.trust-quality-consistency-grid article,.trust-quality-packaging-grid article,.trust-quality-production-grid article,.trust-quality-proof-grid article{
  background:var(--color-white);
  border:1px solid var(--border-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  min-width:0;
}
.trust-quality-checkpoint-grid article,.trust-quality-consistency-grid article,.trust-quality-packaging-grid article{
  padding:28px;
}
.trust-quality-checkpoint-grid article,.trust-quality-consistency-grid article{
  min-height:250px;
}
.trust-quality-page article h3{
  color:var(--color-espresso);
}
.trust-quality-page article p{
  color:var(--color-cocoa);
}
.trust-quality-packaging-section,.trust-quality-packing-section,.trust-quality-page .trust-related-section,.trust-quality-sample-section{
  background:var(--color-white);
}
.trust-quality-sample-grid{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1fr) minmax(420px, 0.92fr);
}
.trust-quality-sample-copy>p:not(.eyebrow,.trust-quality-scope-note){
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  max-width:650px;
}
.trust-quality-scope-note{
  background:var(--color-ivory);
  border-left:3px solid var(--color-champagne);
  color:var(--color-cocoa);
  display:grid;
  font-size:var(--font-size-small);
  gap:10px;
  grid-template-columns:20px minmax(0, 1fr);
  margin-top:28px;
  padding:16px 18px;
}
.trust-quality-scope-note .lucide{
  color:var(--color-coral);
  height:18px;
  margin-top:2px;
  width:18px;
}
.trust-quality-record{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  overflow:hidden;
  padding:34px;
  position:relative;
}
.trust-quality-record-label{
  background:var(--color-soft-peach);
  color:var(--color-coral);
  font-size:0.68rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.09em;
  padding:8px 16px;
  position:absolute;
  right:0;
  text-transform:uppercase;
  top:0;
}
.trust-quality-record header{
  border-bottom:1px solid var(--color-champagne-soft);
  margin-bottom:18px;
  padding:6px 150px 16px 0;
}
.trust-quality-record header h3,.trust-quality-record header p{
  margin:0;
}
.trust-quality-record header p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.trust-quality-record dl,.trust-quality-record dl div{
  margin:0;
}
.trust-quality-record dl div{
  border-bottom:1px solid rgba(232, 217, 190, 0.72);
  display:grid;
  gap:18px;
  grid-template-columns:minmax(0, 1fr) minmax(150px, 0.9fr);
  padding:10px 0;
}
.trust-quality-record dt{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
}
.trust-quality-record dd{
  color:var(--color-espresso);
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  text-align:right;
}
#qc-checkpoints{
  scroll-margin-top:110px;
}
.trust-quality-card-meta,.trust-quality-production-icon{
  align-items:center;
  display:flex;
  justify-content:space-between;
  margin-bottom:22px;
}
.trust-quality-card-meta span,.trust-quality-production-icon span{
  color:var(--color-coral);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
}
.trust-quality-card-meta .lucide,.trust-quality-production-icon .lucide{
  color:var(--color-champagne);
  height:22px;
  width:22px;
}
.trust-quality-packaging-grid ul{
  color:var(--color-muted-brown);
  display:grid;
  font-size:var(--font-size-small);
  gap:8px;
  list-style:none;
  margin:16px 0 0;
  padding:0;
}
.trust-quality-packaging-grid li{
  padding-left:16px;
  position:relative;
}
.trust-quality-packaging-grid li:before{
  background:var(--color-coral);
  border-radius:50%;
  content:"";
  height:5px;
  left:0;
  position:absolute;
  top:0.72em;
  width:5px;
}
.trust-quality-production-grid article{
  align-items:start;
  display:grid;
  gap:20px;
  grid-template-columns:58px minmax(0, 1fr);
  padding:28px;
}
.trust-quality-production-icon{
  background:var(--color-soft-peach);
  border-radius:50%;
  flex-direction:column;
  gap:3px;
  height:54px;
  justify-content:center;
  margin:0;
  width:54px;
}
.trust-quality-production-icon .lucide{
  color:var(--color-coral);
  height:18px;
  width:18px;
}
.trust-quality-production-grid h3,.trust-quality-production-grid p{
  margin-top:0;
}
.trust-quality-packing-timeline{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}
.trust-quality-packing-timeline:before{
  background:var(--color-champagne-soft);
  content:"";
  height:2px;
  left:8%;
  position:absolute;
  right:8%;
  top:20px;
}
.trust-quality-packing-timeline li{
  display:grid;
  gap:14px;
  justify-items:center;
  position:relative;
  text-align:center;
}
.trust-quality-packing-timeline span{
  background:var(--color-coral);
  border-radius:50%;
  box-shadow:var(--shadow-coral);
  color:var(--color-white);
  display:grid;
  height:40px;
  place-items:center;
  width:40px;
  z-index:1;
}
.trust-quality-packing-timeline p,.trust-quality-packing-timeline span{
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
}
.trust-quality-packing-timeline p{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  color:var(--color-espresso);
  margin:0;
  min-height:86px;
  padding:17px 12px;
  width:100%;
}
.trust-quality-proof-grid article{
  overflow:hidden;
}
.trust-quality-proof-placeholder{
  aspect-ratio:4 / 3;
  background:linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent), var(--color-soft-beige);
  color:var(--color-champagne);
  display:grid;
  place-items:center;
  position:relative;
}
.trust-quality-proof-placeholder .lucide{
  height:44px;
  stroke-width:1.5;
  width:44px;
}
.trust-quality-proof-placeholder span{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  font-size:0.65rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.07em;
  padding:5px 9px;
  position:absolute;
  right:14px;
  text-transform:uppercase;
  top:14px;
}
.trust-quality-proof-copy{
  padding:24px;
}
.trust-quality-proof-copy h3,.trust-quality-proof-copy p{
  margin-top:0;
}
.trust-quality-page .trust-faq-section .faq-list,.trust-quality-page .trust-related-section .trust-topic-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-quality-final-section{
  background:var(--color-soft-beige);
}
.trust-quality-final-panel{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:22px;
  box-shadow:var(--shadow-card);
  margin:0 auto;
  max-width:900px;
  padding:56px;
  text-align:center;
}
.trust-quality-final-panel>p:not(.eyebrow){
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  margin-left:auto;
  margin-right:auto;
  max-width:720px;
}
.trust-quality-final-actions{
  justify-content:center;
}
@media (max-width: 1100px){
  .trust-quality-checkpoint-grid,.trust-quality-consistency-grid,.trust-quality-packaging-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .trust-quality-packing-timeline{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    row-gap:28px;
  }

  .trust-quality-packing-timeline:before{
    display:none;
  }

  .about-document-grid,.about-material-grid,.about-page .faq-list,.about-process-grid,.about-product-grid,.trust-checklist-grid,.trust-checkpoint-grid,.trust-document-category-grid,.trust-faq-section .faq-list,.trust-quality-page .trust-faq-section .faq-list,.trust-quality-page .trust-related-section .trust-topic-grid,.trust-timing-grid,.trust-topic-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .trust-quality-hero-grid,.trust-quality-sample-grid{
    gap:44px;
    grid-template-columns:1fr;
  }

  .trust-quality-hero-media{
    margin:0 auto;
    width:min(100%, 720px);
  }

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

  .about-page .container{
    width:min(calc(100% - 64px), 1280px);
  }

  .about-hero-grid,.trust-feature-panel,.trust-hero-grid{
    grid-template-columns:1fr;
  }

  .about-hero-grid{
    gap:44px;
  }

  .about-hero-media,.about-hero-media img{
    height:440px;
    min-height:440px;
  }

  .about-buyer-grid,.about-fact-grid,.about-qc-grid,.about-team-grid,.trust-document-type-grid,.trust-pillar-grid,.trust-proof-grid,.trust-question-grid,.trust-verify-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .trust-quality-hero,.trust-quality-page .section{
    padding-block:64px;
  }

  .trust-quality-page .section-heading{
    margin-bottom:36px;
  }

  .trust-quality-hero h1{
    font-size:2.5rem;
  }

  .trust-quality-final-actions,.trust-quality-hero-actions{
    display:grid;
  }

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

  .trust-quality-checkpoint-grid,.trust-quality-consistency-grid,.trust-quality-packaging-grid,.trust-quality-page .trust-faq-section .faq-list,.trust-quality-page .trust-related-section .trust-topic-grid,.trust-quality-production-grid,.trust-quality-proof-grid{
    grid-template-columns:1fr;
  }

  .trust-quality-checkpoint-grid article,.trust-quality-consistency-grid article{
    min-height:auto;
  }

  .trust-quality-checkpoint-grid article,.trust-quality-consistency-grid article,.trust-quality-packaging-grid article,.trust-quality-production-grid article,.trust-quality-proof-copy,.trust-quality-record{
    padding:22px;
  }

  .trust-quality-record header{
    padding-right:0;
    padding-top:30px;
  }

  .trust-quality-record dl div{
    gap:3px;
    grid-template-columns:1fr;
  }

  .trust-quality-record dd{
    text-align:left;
  }

  .trust-quality-production-grid article{
    gap:15px;
    grid-template-columns:50px minmax(0, 1fr);
  }

  .trust-quality-production-icon{
    height:48px;
    width:48px;
  }

  .trust-quality-packing-timeline{
    gap:18px;
    grid-template-columns:1fr;
    padding-left:8px;
  }

  .trust-quality-packing-timeline:before{
    bottom:20px;
    display:block;
    height:auto;
    left:27px;
    top:20px;
    width:2px;
  }

  .trust-quality-packing-timeline li{
    gap:14px;
    grid-template-columns:40px minmax(0, 1fr);
    justify-items:start;
    text-align:left;
  }

  .trust-quality-packing-timeline p{
    min-height:0;
  }

  .trust-quality-final-panel{
    padding:38px 22px;
  }

  .about-page .container{
    width:min(calc(100% - 32px), 1280px);
  }

  .about-hero,.about-page .section,.trust-hero{
    padding-block:64px;
  }

  .about-page .section-heading{
    margin-bottom:36px;
  }

  .about-page .button{
    padding-inline:22px;
    width:100%;
  }

  .about-hero-media,.about-hero-media img{
    height:320px;
    min-height:320px;
  }

  .about-hero-media figcaption{
    bottom:10px;
    left:10px;
    right:10px;
  }

  .about-quick-answer{
    padding:26px 22px;
  }

  .about-inline-checks{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
    text-align:left;
  }

  .about-visit-media .about-image-placeholder,.about-visit-media img,.about-visit-media video{
    aspect-ratio:9 / 16;
    max-height:76vh;
    -o-object-fit:contain;
       object-fit:contain;
  }

  .about-buyer-grid,.about-document-grid,.about-fact-grid,.about-factory-grid,.about-material-grid,.about-page .faq-list,.about-process-grid,.about-product-grid,.about-qc-grid,.about-team-grid,.trust-checklist-grid,.trust-checkpoint-grid,.trust-document-category-grid,.trust-document-type-grid,.trust-faq-section .faq-list,.trust-pillar-grid,.trust-proof-grid,.trust-question-grid,.trust-step-grid,.trust-timing-grid,.trust-topic-grid,.trust-verify-grid{
    grid-template-columns:1fr;
  }

  .trust-dashboard-grid{
    grid-template-columns:1fr 1fr;
  }

  .about-buyer-grid article,.about-document-grid article,.about-fact-grid article,.about-qc-grid article,.about-quick-answer,.trust-checkpoint-grid article,.trust-dashboard,.trust-document-category-grid article,.trust-document-type-grid article,.trust-library-empty,.trust-pillar-grid article,.trust-proof-grid article,.trust-question-grid article,.trust-record-card,.trust-step-grid article,.trust-timing-grid article,.trust-topic-card,.trust-verify-grid article{
    padding:22px;
  }
}
@keyframes laeyo-badge-pulse{
  0%,to{
    opacity:1;
    transform:scale(1);
  }

  50%{
    opacity:0.45;
    transform:scale(0.82);
  }
}
.site-topbar{
  background:var(--color-espresso);
  color:var(--color-champagne-light);
  font-size:var(--font-size-label);
}
.cta-grid,.footer-bottom,.nav-shell,.row-heading,.topbar-inner{
  align-items:center;
  display:flex;
  gap:24px;
  justify-content:space-between;
}
.topbar-inner{
  min-height:40px;
}
.topbar-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.topbar-links a:hover{
  color:var(--base-3);
}
.site-header{
  backdrop-filter:blur(16px);
  background:rgba(255, 253, 248, 0.84);
  border-bottom:1px solid rgba(201, 164, 106, 0.18);
  box-shadow:0 10px 32px rgba(62, 39, 35, 0.06);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-shell{
  flex-wrap:nowrap;
  min-height:82px;
}
.footer-brand,.site-title{
  align-items:center;
  color:var(--contrast);
  display:inline-flex;
  font-family:var(--font-heading);
  font-size:var(--font-size-h3);
  font-weight:var(--font-weight-semibold);
  gap:10px;
  letter-spacing:-0.01em;
  line-height:1;
  white-space:nowrap;
}
.custom-logo{
  max-height:64px;
  width:auto;
}
.site-brand-logo{
  border-radius:10px;
  flex:0 0 auto;
  height:42px;
  -o-object-fit:contain;
     object-fit:contain;
  width:42px;
}
.footer-brand .site-brand-logo{
  filter:none;
  height:38px;
  width:38px;
}
.footer-list,.footer-menu,.primary-navigation .menu,.primary-navigation .sub-menu,.site-footer .menu{
  list-style:none;
  margin:0;
  padding:0;
}
.primary-navigation>.menu{
  align-items:center;
  color:var(--contrast);
  display:flex;
  flex-wrap:nowrap;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  gap:24px;
  letter-spacing:0.01em;
  line-height:1.2;
  text-transform:uppercase;
}
.primary-navigation>.menu>li{
  position:relative;
  white-space:nowrap;
}
.primary-navigation>.menu>.menu-item-has-children>a{
  align-items:center;
  display:inline-flex;
  gap:6px;
}
.primary-navigation>.menu>.menu-item-has-children>a:after{
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid currentColor;
  content:"";
  height:0;
  width:0;
}
.primary-navigation .sub-menu{
  background:rgba(255, 253, 248, 0.96);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  display:grid;
  gap:0;
  left:0;
  min-width:260px;
  opacity:0;
  padding:10px;
  position:absolute;
  top:calc(100% + 18px);
  transform:translateY(8px);
  transition:opacity 160ms ease,transform 160ms ease,visibility 160ms ease;
  visibility:hidden;
  z-index:60;
}
.primary-navigation .menu-item-has-children:focus-within>.sub-menu,.primary-navigation .menu-item-has-children:hover>.sub-menu{
  opacity:1;
  transform:translateY(0);
  visibility:visible;
}
.primary-navigation .sub-menu a{
  border-radius:var(--radius);
  color:var(--contrast);
  display:block;
  font-size:var(--font-size-label);
  line-height:1.35;
  padding:10px 12px;
  text-transform:none;
  white-space:nowrap;
}
.primary-navigation .sub-menu a:hover{
  background:var(--color-champagne-light);
  color:var(--accent);
}
.submenu-toggle{
  display:none;
}
.primary-navigation .current-menu-item>a,.primary-navigation a:hover{
  color:var(--accent);
}
.button,.header-cta{
  align-items:center;
  border:1px solid transparent;
  border-radius:var(--radius);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  justify-content:center;
  letter-spacing:0.01em;
  line-height:1.2;
  min-height:46px;
  padding:0 24px;
  transition:background 160ms ease,color 160ms ease,border-color 160ms ease,transform 160ms ease,box-shadow 160ms ease;
}
.button:hover,.header-cta:hover{
  transform:translateY(-1px);
}
.button-primary,.header-cta,.search-submit{
  background:var(--accent);
  box-shadow:var(--shadow-coral);
  color:#fff;
}
.button-primary:hover,.header-cta:hover,.search-submit:hover{
  background:var(--color-coral-hover);
  color:#fff;
}
.button-secondary{
  background:rgba(255, 253, 248, 0.82);
  border-color:var(--line);
  color:var(--contrast);
}
.button-secondary:hover{
  background:var(--color-champagne-light);
  border-color:var(--color-champagne);
  color:var(--color-coral-hover);
}
.button-light{
  background:var(--color-warm-white);
  color:var(--contrast);
  margin-top:22px;
}
.nav-toggle{
  align-items:center;
  background:transparent;
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast);
  display:none;
  height:44px;
  justify-content:center;
  padding:0;
  width:44px;
}
.nav-toggle-icon{
  height:22px;
  width:22px;
}
.nav-toggle-icon-close,.nav-toggle[aria-expanded=true] .nav-toggle-icon-menu{
  display:none;
}
.nav-toggle[aria-expanded=true] .nav-toggle-icon-close{
  display:block;
}
.article-hero,.page-hero,.section{
  padding:92px 0;
}
.compact-section{
  padding:64px 0;
}
.section-muted{
  background:var(--base-2);
}
.section-dark{
  background:var(--color-espresso);
  color:var(--color-ivory);
}
.section-dark .eyebrow,.section-dark h1,.section-dark h2,.section-dark h3{
  color:var(--base-3);
}
.section-dark .eyebrow{
  color:var(--color-champagne);
}
.section-dark p,.section-dark span{
  color:var(--color-champagne-light);
}
.section-heading{
  margin-bottom:42px;
  max-width:900px;
}
.section-heading h2{
  max-width:24ch;
}
.section-heading:not(.row-heading) h2{
  margin-inline:auto;
}
.article-content p,.empty-state p,.form-panel p,.hero-lede,.page-hero p,.post-card p,.section-heading p,.split-grid p{
  color:var(--contrast-2);
}
.article-hero,.page-hero,.section-hero{
  background:linear-gradient(180deg, var(--color-ivory) 0%, var(--color-warm-white) 100%);
}
.home-hero{
  align-items:center;
  background:var(--color-ivory);
  display:flex;
  min-height:calc(100vh - 83px);
  overflow:hidden;
  padding:108px 0 96px;
  position:relative;
}
.home-hero:after{
  background:radial-gradient(circle at 18% 20%, rgba(255, 227, 216, 0.72), transparent 28%), linear-gradient(90deg, rgba(255, 253, 248, 0.97), rgba(255, 248, 242, 0.84) 42%, rgba(255, 248, 242, 0.36) 72%, rgba(255, 248, 242, 0.12));
  content:"";
  inset:0;
  pointer-events:none;
  position:absolute;
  z-index:1;
}
.contact-page-grid,.home-hero-grid,.page-hero-grid,.split-grid{
  align-items:center;
  display:grid;
  gap:56px;
  grid-template-columns:minmax(0, 1fr) minmax(360px, 0.9fr);
}
.page-hero-grid{
  align-items:center;
}
.home-hero-grid{
  grid-template-columns:minmax(0, 680px);
}
.home-hero-copy,.home-hero-grid{
  position:relative;
  z-index:2;
}
.hero-lede{
  font-size:var(--font-size-lede);
  line-height:1.6;
  max-width:760px;
}
.article-links,.contact-actions,.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.guide-tags span,.market-tags span,.trust-strip span{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:1rem;
  color:var(--contrast);
  display:inline-flex;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  min-height:38px;
  padding:8px 14px;
}
.content-media,.hero-media{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.content-media img,.hero-media img{
  height:100%;
  min-height:380px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.hero-media-large img{
  min-height:500px;
}
.home-hero .hero-media{
  border:0;
  border-radius:0;
  box-shadow:none;
  height:100%;
  inset:0;
  margin:0;
  position:absolute;
  width:100%;
  z-index:0;
}
.home-hero-background{
  pointer-events:none;
}
.home-hero .hero-media img,.home-hero .hero-media-large img{
  height:100%;
  min-height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  -o-object-position:center;
     object-position:center;
  width:100%;
}
.category-grid,.post-grid,.product-card-grid,.proof-grid,.two-card-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.product-card-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.two-card-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.article-next-steps,.category-grid article,.contact-method,.empty-state,.faq-item,.feature-card,.form-panel,.info-panel,.post-card,.product-card,.proof-grid article,.spec-list div{
  background:var(--surface-glass);
  border:1px solid rgba(232, 217, 190, 0.75);
  border-radius:var(--radius);
  box-shadow:0 10px 32px var(--overlay-subtle);
  transition:transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease;
}
.article-next-steps,.category-grid article,.empty-state,.feature-card,.form-panel,.proof-grid article{
  padding:30px;
}
.category-card-link{
  display:block;
  height:100%;
}
.category-card-link strong{
  color:var(--accent);
  display:inline-flex;
  font-size:var(--font-size-small);
  margin-top:8px;
  text-decoration:underline;
  text-underline-offset:4px;
}
.category-grid article:hover,.feature-card:hover,.post-card:hover,.product-card:hover,.proof-grid article:hover{
  border-color:rgba(201, 164, 106, 0.75);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-4px);
}
.category-grid span,.feature-card span{
  color:var(--accent);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  margin-bottom:28px;
}
.category-grid p,.feature-card p,.proof-grid p{
  color:var(--contrast-2);
}
.product-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  padding:0;
  transition:border-color 160ms ease,box-shadow 160ms ease,transform 160ms ease;
}
.product-card:hover{
  transform:translateY(-2px);
}
.representative-product-card{
  cursor:pointer;
}
.representative-product-card.is-active{
  border-color:rgba(200, 150, 62, 0.88);
  box-shadow:0 24px 58px rgba(23, 37, 84, 0.14);
}
.product-card-media{
  aspect-ratio:4 / 3;
  background:var(--base);
  margin:0;
}
.product-card-media img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.product-card-media a{
  display:block;
  height:100%;
}
.product-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:24px;
}
.product-card h3{
  font-size:var(--font-size-h3);
}
.product-card h3 a{
  color:inherit;
  text-decoration:none;
}
.product-card h3 a:hover{
  color:var(--accent);
}
.product-card p{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
}
.decision-note-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.decision-note{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:grid;
  gap:12px;
  padding:24px;
}
.decision-note h3{
  font-size:var(--font-size-body);
  margin:0;
}
.decision-note p{
  color:var(--contrast-2);
  margin:0;
}
.product-spec-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:auto 0 20px;
  padding-top:4px;
}
.product-spec-tags span{
  align-items:center;
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  line-height:1.25;
  min-height:32px;
  padding:6px 10px;
}
.product-detail-button{
  justify-content:center;
  margin-top:0;
  width:100%;
}
.product-inquiry-button{
  margin-top:10px;
  text-align:center;
  width:100%;
}
.representative-product-details{
  display:grid;
  gap:22px;
  margin-top:30px;
}
.representative-product-detail{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 18px 46px rgba(23, 37, 84, 0.08);
  display:grid;
  gap:24px;
  padding:30px;
}
.representative-products-enhanced .representative-product-detail[hidden]{
  display:none;
}
.representative-detail-header{
  align-items:start;
  border-bottom:1px solid var(--line);
  display:flex;
  gap:24px;
  justify-content:space-between;
  padding-bottom:22px;
}
.representative-detail-header h3{
  font-size:var(--font-size-h3);
  margin:0;
  max-width:760px;
}
.representative-detail-content{
  display:grid;
  gap:24px;
}
.representative-detail-content h4{
  color:var(--contrast);
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  margin-bottom:14px;
}
.representative-detail-copy{
  color:var(--contrast-2);
  max-width:860px;
}
.representative-detail-copy p:last-child{
  margin-bottom:0;
}
.representative-detail-list div{
  box-shadow:none;
}
.representative-product-faq{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.representative-product-faq article{
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.representative-product-faq strong{
  color:var(--contrast);
  display:block;
  margin-bottom:8px;
}
.representative-product-faq p{
  color:var(--contrast-2);
  margin:0;
}
.product-detail-hero{
  background:linear-gradient(180deg, var(--base-2), var(--base-3));
  padding:96px 0 72px;
}
.product-detail-hero-grid{
  align-items:center;
  display:grid;
  gap:54px;
  grid-template-columns:minmax(0, 1.05fr) minmax(360px, 0.95fr);
}
.product-detail-hero h1{
  max-width:780px;
}
.product-detail-hero p{
  color:var(--contrast-2);
  max-width:720px;
}
.product-detail-media{
  aspect-ratio:4 / 3;
  background:var(--base);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.product-detail-media img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.product-media-note{
  color:var(--contrast-2);
  font-size:var(--font-size-meta);
  line-height:1.55;
  margin:12px 4px 0;
}
.product-service-tags{
  margin-top:20px;
}
.product-specification-grid{
  margin-bottom:4px;
}
.product-rating{
  align-items:center;
  color:var(--contrast-2);
  display:inline-flex;
  flex-wrap:wrap;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  margin:20px 0 6px;
}
.product-rating-stars{
  color:#cbd5e1;
  display:inline-flex;
  font-size:var(--font-size-body);
  gap:2px;
  line-height:1;
}
.product-rating-stars .is-filled{
  color:var(--accent);
}
.product-rating strong,.product-tag-row span{
  color:var(--contrast);
}
.product-tag-row span{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  min-height:30px;
  padding:6px 10px;
  text-transform:capitalize;
}
.product-detail-layout{
  align-items:start;
  display:grid;
  gap:44px;
  grid-template-columns:minmax(0, 1fr) minmax(300px, 360px);
}
.product-detail-main{
  display:grid;
  gap:28px;
}
.product-detail-main h3{
  font-size:var(--font-size-h3);
  margin:8px 0 -10px;
}
.product-detail-copy{
  max-width:860px;
}
.product-detail-tags{
  margin:0;
  padding:0;
}
.product-detail-sidebar{
  position:sticky;
  top:110px;
}
.product-detail-sidebar .product-inquiry-button{
  margin-top:18px;
}
.evidence-link-grid article{
  align-content:start;
  display:grid;
  gap:14px;
}
.evidence-link-grid img,.evidence-media-grid img{
  aspect-ratio:4 / 3;
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.evidence-media-grid{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.evidence-media-grid figure{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin:0;
  padding:14px;
}
.evidence-media-grid figcaption{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  margin-top:10px;
}
.inquiry-summary{
  background:var(--base-2);
  border:1px solid var(--line);
  border-left:4px solid var(--accent);
  border-radius:var(--radius);
  margin:18px 0;
}
.inquiry-summary p{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  margin:0;
}
.guide-roadmap-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.guide-roadmap-card{
  align-content:start;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  display:grid;
  gap:12px;
  padding:24px;
}
.guide-roadmap-card h3{
  font-size:var(--font-size-h3);
  margin-bottom:0;
}
.guide-roadmap-card p{
  color:var(--contrast-2);
  font-size:var(--font-size-body);
  margin-bottom:0;
}
.guide-roadmap-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  margin-top:4px;
}
.guides-hero{
  background:linear-gradient(90deg, #ffffff, #ffffff 52%, #eef7f3);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  padding:74px 0 70px;
  position:relative;
}
.guides-hero-layout{
  align-items:center;
  display:grid;
  gap:52px;
  grid-template-columns:minmax(0, 0.9fr) minmax(340px, 0.62fr);
  min-height:350px;
}
.guides-hero-copy>p{
  max-width:670px;
}
.guides-hero h1{
  line-height:1.08;
  margin-bottom:20px;
  max-width:18ch;
}
.guides-hero-visual{
  align-self:stretch;
  border-radius:var(--radius);
  min-height:300px;
  overflow:hidden;
}
.guides-hero-visual img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  -o-object-position:center;
     object-position:center;
  width:100%;
}
.guide-filter-section{
  background:#f4fbf8;
  padding:42px 0;
}
.guide-filter-panel{
  background:rgba(255, 255, 255, 0.92);
  border:1px solid rgba(217, 222, 232, 0.86);
  border-radius:var(--radius);
  box-shadow:0 14px 36px rgba(23, 37, 84, 0.06);
  display:grid;
  gap:18px;
  padding:22px;
}
.guide-filter-form{
  align-items:center;
  display:grid;
  gap:12px;
  grid-template-columns:minmax(220px, 1fr) minmax(190px, 0.28fr) auto auto;
}
.guide-channel-select,.guide-search-input{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast);
  font:inherit;
  min-height:50px;
  padding:0 14px;
  width:100%;
}
.guide-filter-reset{
  align-items:center;
  color:var(--accent);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  min-height:44px;
}
.guide-filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.guide-filter-chips a{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast-2);
  display:inline-flex;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  min-height:36px;
  padding:0 13px;
  transition:background 160ms ease,border-color 160ms ease,color 160ms ease;
}
.guide-filter-chips a.is-active,.guide-filter-chips a:hover{
  background:#fff8e8;
  border-color:rgba(200, 150, 62, 0.58);
  color:var(--contrast);
}
.guide-listing-section{
  background:linear-gradient(180deg, #f4fbf8, #ffffff 38%);
}
.guide-listing-heading{
  margin-bottom:34px;
}
.guide-listing-heading h2{
  font-size:var(--font-size-h2);
  margin-bottom:0;
}
.guide-result-count{
  color:var(--contrast-2);
  font-weight:var(--font-weight-semibold);
  margin:0;
}
.guides-hero-panel{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  border-top:4px solid var(--accent);
  box-shadow:0 18px 46px rgba(23, 37, 84, 0.08);
  display:grid;
  gap:14px;
  padding:26px;
}
.guide-channel-index,.guides-hero-panel span{
  color:var(--accent);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  text-transform:uppercase;
}
.guides-hero-panel strong{
  color:var(--contrast);
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-weight:var(--font-weight-semibold);
  line-height:1.35;
}
.guides-hero-panel ul{
  display:grid;
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
}
.guides-hero-panel li{
  border-top:1px solid var(--line);
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.45;
  padding-top:10px;
}
.guide-channel-strip{
  border-bottom:1px solid var(--line);
  border-top:1px solid var(--line);
  padding:58px 0;
}
.guide-channel-heading{
  align-items:end;
  display:grid;
  gap:28px;
  grid-template-columns:minmax(180px, 0.28fr) minmax(0, 1fr);
  margin-bottom:30px;
  max-width:none;
}
.guide-channel-heading h2{
  font-size:var(--font-size-h3);
  margin-bottom:0;
  max-width:620px;
}
.guide-channel-nav{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.guide-channel-nav a{
  align-content:start;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 10px 26px rgba(23, 37, 84, 0.035);
  display:grid;
  gap:9px;
  min-height:178px;
  padding:20px;
  transition:background 160ms ease,border-color 160ms ease,box-shadow 160ms ease,transform 160ms ease;
}
.article-sidebar-panel a:hover,.guide-card:hover,.guide-channel-nav a:hover,.guide-hub-card:hover,.guide-product-card:hover{
  border-color:rgba(200, 150, 62, 0.55);
  box-shadow:0 14px 30px rgba(23, 37, 84, 0.08);
}
.guide-channel-nav a:hover{
  background:#fffaf0;
  transform:translateY(-2px);
}
.guide-channel-kicker,.guide-hub-card span,.guide-product-card span{
  color:var(--accent);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  text-transform:uppercase;
}
.guide-channel-index{
  align-items:center;
  border-bottom:1px solid rgba(200, 150, 62, 0.45);
  display:inline-flex;
  min-height:26px;
  padding-right:12px;
  width:-moz-max-content;
  width:max-content;
}
.guide-channel-nav strong{
  color:var(--contrast);
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-weight:var(--font-weight-semibold);
  line-height:1.35;
}
.guide-channel-nav em{
  font-style:normal;
  line-height:1.45;
}
.guide-channel-nav em,.guide-channel-note{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
}
.guide-channel-note{
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:inline-flex;
  margin-top:4px;
  padding:8px 12px;
}
.guide-feature-layout{
  align-items:stretch;
  display:grid;
  gap:24px;
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, 0.65fr);
}
.guide-editor-section{
  background:linear-gradient(180deg, var(--base-3) 0%, #f8fafc 100%);
}
.guide-editor-section .section-heading{
  max-width:none;
}
.guide-editor-section .section-heading h2{
  font-size:var(--font-size-h2);
  max-width:680px;
}
.guide-heading-button{
  white-space:nowrap;
}
.guide-card-grid,.guide-feature-side,.guide-hub-grid,.guide-product-grid,.guide-section-layout{
  display:grid;
  gap:24px;
}
.guide-feature-side{
  align-content:start;
  gap:14px;
}
.guide-card-grid,.guide-hub-grid,.guide-product-grid{
  align-items:stretch;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.guide-listing-section .guide-card-grid{
  gap:28px;
}
.guide-hub-grid,.guide-product-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.guide-section-layout{
  align-items:stretch;
  display:grid;
  gap:22px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.article-sidebar-panel,.guide-card,.guide-editor-note,.guide-hub-card,.guide-product-card{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 10px 28px rgba(23, 37, 84, 0.045);
  overflow:hidden;
}
.guide-card{
  display:flex;
  flex-direction:column;
  height:100%;
  min-width:0;
  transition:border-color 160ms ease,box-shadow 160ms ease;
}
.guide-listing-section .guide-card{
  border:0;
  border-radius:var(--radius);
  box-shadow:0 18px 36px rgba(23, 37, 84, 0.09);
}
.guide-card-media{
  aspect-ratio:16 / 10;
  background:var(--base);
  color:var(--contrast);
  display:grid;
  font-weight:var(--font-weight-semibold);
  min-height:0;
  overflow:hidden;
  place-items:center;
}
.guide-card-media span{
  align-items:center;
  border-bottom:1px solid rgba(23, 37, 84, 0.18);
  border-top:1px solid rgba(23, 37, 84, 0.18);
  color:var(--contrast-2);
  display:inline-flex;
  font-size:var(--font-size-label);
  letter-spacing:0;
  min-height:38px;
  padding:8px 14px;
  text-transform:uppercase;
}
.guide-card-media img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.guide-card-featured{
  border-color:rgba(23, 37, 84, 0.18);
  box-shadow:0 20px 52px rgba(23, 37, 84, 0.08);
  display:grid;
  grid-template-columns:minmax(280px, 0.95fr) minmax(0, 1.05fr);
}
.guide-card-featured .guide-card-media,.guide-card-section-lead .guide-card-media{
  aspect-ratio:4 / 3;
  min-height:330px;
}
.guide-card-featured .guide-card-media img,.guide-card-section-lead .guide-card-media img{
  height:100%;
}
.article-sidebar-panel,.guide-card-body,.guide-editor-note,.guide-hub-card,.guide-product-card{
  padding:24px;
}
.guide-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
}
.guide-card h3{
  font-size:var(--font-size-h3);
  overflow:hidden;
  overflow-wrap:anywhere;
}
.guide-listing-section .guide-card h3{
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0;
  line-height:1.35;
}
.guide-card h3 a{
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.guide-listing-section .guide-card h3 a{
  color:#0b2a68;
}
.guide-card-featured h3{
  font-size:var(--font-size-h3);
}
.guide-card-featured h3 a{
  -webkit-line-clamp:4;
}
.guide-card-section-lead h3{
  font-size:var(--font-size-h3);
}
.article-mini-product-list span,.article-sidebar-panel p,.article-summary,.guide-card p,.guide-hub-card p,.guide-product-card p{
  color:var(--contrast-2);
}
.guide-card p{
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.guide-card .text-link{
  margin-top:auto;
}
.guide-card-compact{
  border-radius:0;
  box-shadow:none;
  min-height:auto;
}
.guide-card-compact .guide-card-media{
  display:none;
}
.guide-card-compact .guide-card-body{
  padding:24px;
}
.guide-card-compact h3{
  font-size:var(--font-size-body);
}
.guide-card-compact p{
  font-size:var(--font-size-small);
  -webkit-line-clamp:2;
  margin-bottom:14px;
}
.guide-card-section-lead{
  border-color:rgba(23, 37, 84, 0.16);
  box-shadow:0 14px 34px rgba(23, 37, 84, 0.055);
}
.guide-card-section-item{
  box-shadow:0 12px 30px rgba(23, 37, 84, 0.045);
}
.guide-card-section-item .guide-card-media{
  aspect-ratio:16 / 9;
}
.guide-card-section-item h3{
  font-size:var(--font-size-h3);
}
.guide-resource-section{
  border-top:1px solid rgba(217, 222, 232, 0.72);
  padding:76px 0;
}
.guide-resource-section .section-heading{
  margin-bottom:34px;
  max-width:none;
}
.guide-resource-section .section-heading h2{
  font-size:var(--font-size-h2);
  margin-bottom:12px;
}
.guide-resource-section .section-heading>div{
  border-left:4px solid var(--accent);
  max-width:760px;
  padding-left:18px;
}
.guide-section-layout .guide-card-compact{
  background:#fbfcff;
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.guide-feature-side .guide-card-compact{
  border-radius:var(--radius);
}
.guide-section-layout .guide-card-compact:hover{
  border-color:rgba(200, 150, 62, 0.45);
  box-shadow:0 12px 28px rgba(23, 37, 84, 0.06);
}
.guide-section-layout .guide-card-compact:last-child{
  border-bottom:1px solid var(--line);
}
.guide-editor-note{
  align-content:center;
  display:grid;
}
.guide-hub-card,.guide-product-card{
  align-content:start;
  box-shadow:none;
  display:grid;
  gap:10px;
  min-height:100%;
  transition:border-color 160ms ease,box-shadow 160ms ease;
}
.guide-hub-card h3,.guide-product-card h3{
  font-size:var(--font-size-h3);
  margin:0;
}
.guide-product-card strong{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:4px;
}
.article-content figure{
  margin:34px 0;
  max-width:100%;
}
.article-content figure img,.article-content p>img,.article-content>img{
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin-left:auto;
  margin-right:auto;
  max-height:620px;
  width:auto;
}
.article-content figcaption,.wp-caption-text{
  color:var(--contrast-3);
  font-size:var(--font-size-small);
  line-height:1.45;
  margin-top:10px;
}
.article-content .alignleft,.article-content .alignright{
  float:none;
  margin-left:0;
  margin-right:0;
}
.article-hero-inner{
  max-width:var(--container);
}
.article-hero-inner h1{
  max-width:980px;
}
.article-summary{
  font-size:var(--font-size-body);
  max-width:760px;
}
.article-tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}
.article-tag-row a{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:1rem;
  color:var(--contrast);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  min-height:34px;
  padding:6px 11px;
}
.article-shell{
  align-items:start;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 780px) minmax(300px, 360px);
  padding:72px 0 96px;
}
.article-shell .article-content{
  padding:0;
}
.article-lead-media{
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin:0 0 42px;
  overflow:hidden;
}
.article-lead-media img{
  height:clamp(300px, 34vw, 430px);
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.article-sidebar{
  display:grid;
  gap:18px;
  position:sticky;
  top:118px;
}
.article-sidebar-panel h2{
  font-size:var(--font-size-h3);
}
.article-mini-product-list,.article-sidebar-links{
  display:grid;
  gap:10px;
}
.article-mini-product-list a,.article-sidebar-links a{
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast);
  display:grid;
  font-weight:var(--font-weight-semibold);
  gap:4px;
  padding:13px 14px;
}
.article-mini-product-list span{
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-regular);
  line-height:1.45;
}
.comparison-table-wrap{
  background:var(--surface-glass);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 10px 32px var(--overlay-subtle);
  overflow-x:auto;
}
.comparison-table{
  background:var(--surface-glass);
  border-collapse:collapse;
  min-width:860px;
  width:100%;
}
.comparison-table td,.comparison-table th{
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  padding:16px;
  text-align:left;
  vertical-align:top;
}
.comparison-table td:last-child,.comparison-table th:last-child{
  border-right:0;
}
.comparison-table tr:last-child td{
  border-bottom:0;
}
.comparison-table th{
  background:var(--color-champagne-light);
  color:var(--contrast);
  font-weight:var(--font-weight-semibold);
  line-height:1.35;
}
.comparison-table td{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.5;
}
.comparison-table a{
  color:var(--accent);
  font-weight:var(--font-weight-semibold);
  text-decoration:underline;
  text-underline-offset:3px;
}
.table-note{
  color:var(--contrast-2);
  font-size:var(--font-size-body);
  margin:20px 0 0;
}
.contact-method strong,.info-panel strong,.proof-grid strong,.spec-list strong{
  color:var(--contrast);
  display:block;
  font-size:var(--font-size-body);
  margin-bottom:8px;
}
.capability-list,.contact-methods,.info-panel,.spec-list{
  display:grid;
  gap:16px;
}
.capability-list.four-columns,.capability-list.two-columns{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.capability-list div,.process-timeline div{
  background:rgba(255, 255, 255, 0.08);
  border:1px solid rgba(255, 255, 255, 0.22);
  border-radius:var(--radius);
  padding:24px;
}
.section-muted .capability-list div,.section:not(.section-dark) .capability-list div,.split-grid .capability-list div{
  background:var(--surface-glass);
  border-color:var(--line);
  box-shadow:0 10px 32px var(--overlay-subtle);
}
.capability-list strong,.process-timeline strong{
  color:inherit;
  display:block;
  margin-bottom:8px;
}
.capability-list span,.process-timeline span{
  color:inherit;
}
.home-intent-grid,.home-process-grid,.home-resource-grid{
  align-items:start;
  display:grid;
  gap:20px;
}
.fragrance-direction-card,.home-intent-card,.home-process-card,.home-resource-card{
  background:var(--surface-glass);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:0 10px 32px var(--overlay-subtle);
  display:grid;
  gap:12px;
  padding:26px;
}
.fragrance-direction-card strong,.home-intent-card strong,.home-process-card strong,.home-resource-card strong{
  color:var(--color-espresso);
}
.fragrance-direction-card span,.home-intent-card span,.home-process-card span{
  align-items:center;
  background:var(--color-soft-peach);
  border-radius:var(--radius);
  color:var(--color-espresso);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  min-height:32px;
  padding:6px 10px;
  text-transform:uppercase;
  width:-moz-fit-content;
  width:fit-content;
}
.home-process-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.home-process-card,.home-process-grid{
  position:relative;
}
.home-process-card span{
  background:var(--color-champagne-light);
}
.fragrance-direction-grid{
  align-items:stretch;
  display:grid;
  gap:20px;
}
.fragrance-direction-card{
  align-content:center;
  min-height:140px;
  text-align:center;
}
.fragrance-direction-card span{
  background:var(--color-champagne-light);
  justify-self:center;
}
.home-resource-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.home-resource-card p{
  color:var(--color-cocoa);
  margin-bottom:0;
}
.factory-gallery-section .row-heading{
  margin-bottom:28px;
}
.factory-gallery-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.factory-gallery-item{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  display:grid;
  grid-template-rows:auto auto;
  min-width:0;
  overflow:hidden;
}
.factory-gallery-item.is-wide{
  grid-column:1 /  -1;
  grid-template-columns:minmax(0, 1.45fr) minmax(260px, 0.55fr);
  grid-template-rows:auto;
}
.factory-gallery-item img{
  aspect-ratio:4 / 3;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.factory-gallery-item.is-wide img{
  aspect-ratio:16 / 7;
  height:100%;
}
.factory-gallery-item figcaption{
  display:grid;
  gap:7px;
  padding:18px;
}
.factory-gallery-item.is-wide figcaption{
  align-content:center;
  border-left:1px solid var(--line);
}
.factory-gallery-item strong{
  color:var(--contrast);
  font-size:var(--font-size-body);
  line-height:1.35;
}
.factory-gallery-item span{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.55;
}
.factory-filling-grid{
  gap:48px;
  grid-template-columns:minmax(280px, 0.74fr) minmax(0, 1fr);
}
.factory-filling-section .content-media{
  justify-self:start;
  max-width:500px;
  width:100%;
}
.factory-filling-section .content-media img{
  height:clamp(420px, 42vw, 560px);
  min-height:0;
  -o-object-position:center;
     object-position:center;
}
.factory-filling-copy{
  max-width:720px;
}
.factory-filling-copy h2{
  max-width:680px;
}
.factory-operation-section .row-heading{
  margin-bottom:28px;
}
.factory-operation-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.factory-operation-card{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  display:grid;
  grid-template-columns:minmax(0, 0.92fr) minmax(220px, 0.58fr);
  min-width:0;
  overflow:hidden;
}
.factory-operation-card:last-child:nth-child(odd){
  grid-column:1 /  -1;
  grid-template-columns:minmax(0, 1.2fr) minmax(260px, 0.8fr);
}
.factory-operation-card img{
  aspect-ratio:4 / 3;
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.factory-operation-card figcaption{
  align-content:center;
  border-left:1px solid var(--line);
  display:grid;
  gap:8px;
  padding:20px;
}
.factory-operation-card strong{
  color:var(--contrast);
  font-size:var(--font-size-body);
  line-height:1.35;
}
.factory-operation-card span{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.55;
}
.packaging-design-section .row-heading{
  margin-bottom:28px;
}
.packaging-design-grid{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.packaging-design-card{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  display:grid;
  min-width:0;
  overflow:hidden;
}
.packaging-design-card img{
  aspect-ratio:16 / 10;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.packaging-design-card figcaption{
  display:grid;
  gap:8px;
  padding:22px;
}
.packaging-design-card strong{
  color:var(--contrast);
  font-size:var(--font-size-body);
  line-height:1.35;
}
.packaging-design-card span{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.55;
}
.feature-card-with-media{
  display:grid;
  overflow:hidden;
  padding:0;
}
.feature-card-with-media img{
  aspect-ratio:3 / 2;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.feature-card-with-media>div{
  padding:28px;
}
.about-overview-layout,.process-brief-layout,.quality-compliance-layout{
  align-items:center;
  display:grid;
  gap:28px;
}
.process-brief-layout{
  grid-template-columns:minmax(0, 1fr) minmax(320px, 0.82fr);
}
.process-brief-layout .info-panel{
  grid-column:1 /  -1;
  grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
}
.about-overview-media img,.fragrance-family-media img,.oem-sample-layout .content-media img,.process-brief-media img,.quality-compliance-media img,.quality-control-media img{
  min-height:0;
  -o-object-fit:cover;
     object-fit:cover;
}
.process-brief-media img{
  height:clamp(320px, 34vw, 380px);
}
.compact-capability-list{
  margin-top:24px;
}
.oem-customization-grid{
  grid-template-columns:minmax(300px, 0.72fr) minmax(0, 1fr);
}
.oem-customization-grid .content-media img{
  height:clamp(360px, 38vw, 440px);
  min-height:0;
}
.oem-sample-layout{
  grid-template-columns:minmax(280px, 0.65fr) minmax(0, 1fr);
  margin-top:32px;
}
.oem-sample-layout .content-media img{
  height:clamp(320px, 34vw, 390px);
}
.quality-compliance-layout{
  grid-template-columns:minmax(0, 0.92fr) minmax(260px, 0.55fr) minmax(280px, 0.9fr);
}
.quality-compliance-media img{
  height:clamp(320px, 34vw, 400px);
}
.fragrance-family-panel{
  display:grid;
  gap:18px;
}
.fragrance-family-media img{
  height:clamp(260px, 28vw, 340px);
}
.about-overview-layout{
  grid-template-columns:minmax(0, 1fr) minmax(240px, 0.48fr) minmax(280px, 0.72fr);
}
.about-overview-media img{
  height:clamp(300px, 32vw, 360px);
}
.factory-mini-gallery{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin:28px 0 24px;
}
.factory-mini-gallery figure{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  margin:0;
  overflow:hidden;
}
.factory-mini-gallery img{
  aspect-ratio:16 / 10;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.factory-mini-gallery figcaption{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.45;
  padding:16px;
}
.quality-control-media{
  margin-top:24px;
}
.quality-control-media img{
  height:clamp(280px, 30vw, 360px);
}
.info-panel div,.spec-list div{
  padding:24px;
}
.info-panel span,.spec-list span{
  color:var(--contrast-2);
}
.inquiry-summary{
  background:var(--base);
  border:1px solid rgba(14, 42, 75, 0.14);
  display:grid;
  gap:8px;
  margin:0 0 18px;
  padding:16px;
}
.inquiry-summary strong{
  color:var(--contrast);
  font-size:var(--font-size-small);
}
.inquiry-summary span{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
}
.section-dark .spec-list div{
  background:rgba(255, 255, 255, 0.08);
  border-color:rgba(255, 255, 255, 0.22);
}
.section-dark .spec-list span,.section-dark .spec-list strong{
  color:var(--base-3);
}
.process-timeline{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.document-support-panel{
  align-items:start;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  display:grid;
  gap:44px;
  grid-template-columns:minmax(0, 0.82fr) minmax(420px, 1.18fr);
  padding:36px;
}
.document-support-copy p:not(.eyebrow){
  color:var(--contrast-2);
}
.document-support-note{
  border-top:1px solid var(--line);
  font-size:var(--font-size-small);
  margin-top:22px;
  padding-top:18px;
}
.document-support-list{
  display:grid;
  gap:12px;
}
.document-support-item{
  align-items:center;
  background:var(--base-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:grid;
  gap:14px;
  grid-template-columns:48px minmax(0, 1fr);
  min-height:76px;
  padding:14px 16px;
  transition:border-color 160ms ease,background 160ms ease;
}
.document-support-item:hover{
  background:var(--base-3);
  border-color:rgba(200, 150, 62, 0.55);
}
.document-support-item img{
  height:40px;
  -o-object-fit:contain;
     object-fit:contain;
  width:40px;
}
.document-support-item span,.document-support-item strong{
  display:block;
}
.document-support-item strong{
  color:var(--contrast);
  line-height:1.2;
}
.document-support-item span{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.45;
  margin-top:4px;
}
.certificate-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.trust-file-nav{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 14px 38px rgba(23, 37, 84, 0.06);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:-12px 0 34px;
  padding:12px;
}
.trust-file-nav a{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:1rem;
  color:var(--contrast);
  display:inline-flex;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  gap:9px;
  line-height:1.2;
  min-height:42px;
  padding:9px 15px;
}
.trust-file-nav a:hover{
  border-color:rgba(200, 150, 62, 0.65);
  color:var(--accent);
}
.trust-file-nav small{
  background:var(--base-2);
  border-radius:1rem;
  color:var(--contrast-2);
  display:inline-grid;
  font-size:var(--font-size-meta);
  min-height:24px;
  min-width:24px;
  padding:0 7px;
  place-items:center;
}
.trust-file-groups{
  display:grid;
  gap:46px;
}
.trust-file-group{
  scroll-margin-top:120px;
}
.trust-file-group-heading{
  align-items:end;
  border-bottom:1px solid var(--line);
  display:flex;
  gap:24px;
  justify-content:space-between;
  margin-bottom:20px;
  padding-bottom:18px;
}
.trust-file-group-heading h3{
  font-size:var(--font-size-h3);
  margin-bottom:8px;
}
.trust-file-group-heading p{
  color:var(--contrast-2);
  font-size:var(--font-size-body);
  margin:0;
  max-width:720px;
}
.trust-file-group-heading>span{
  color:var(--contrast-3);
  flex:0 0 auto;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  text-transform:uppercase;
}
.certificate-card{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 16px 42px rgba(23, 37, 84, 0.07);
  display:grid;
  overflow:hidden;
  transition:border-color 160ms ease,box-shadow 160ms ease,transform 160ms ease;
}
.certificate-card:hover{
  border-color:rgba(200, 150, 62, 0.55);
  box-shadow:0 22px 52px rgba(23, 37, 84, 0.11);
  transform:translateY(-2px);
}
.certificate-preview{
  background:linear-gradient(180deg, var(--base-3) 0%, var(--base-2) 100%);
  border-bottom:1px solid var(--line);
  display:grid;
  min-height:260px;
  padding:18px;
  place-items:center;
}
.certificate-preview img{
  height:260px;
  -o-object-fit:contain;
     object-fit:contain;
  width:100%;
}
.certificate-preview-file{
  align-content:center;
  color:var(--contrast);
  gap:16px;
  min-height:260px;
  text-align:center;
}
.certificate-preview-file span{
  background:var(--contrast);
  border-radius:var(--radius);
  color:var(--base-3);
  display:inline-grid;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  height:76px;
  margin-inline:auto;
  place-items:center;
  width:76px;
}
.certificate-preview-file strong{
  display:block;
  font-size:var(--font-size-body);
  line-height:1.35;
  margin-inline:auto;
  max-width:260px;
}
.certificate-card-body{
  align-content:start;
  display:grid;
  gap:10px;
  padding:24px;
}
.certificate-card-body span{
  color:var(--accent);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  text-transform:uppercase;
}
.certificate-card-body strong{
  color:var(--contrast);
  font-size:var(--font-size-body);
  line-height:1.25;
}
.certificate-card-body p{
  color:var(--contrast-2);
  font-size:var(--font-size-small);
  line-height:1.5;
  margin:0;
}
.guide-tags,.market-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.tag-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.tag-grid span{
  border-radius:var(--radius);
  justify-content:center;
}
.post-card{
  overflow:hidden;
}
.post-card-media{
  background:var(--base);
  color:var(--contrast);
  display:grid;
  font-weight:var(--font-weight-semibold);
  min-height:240px;
  place-items:center;
}
.post-card-media img{
  height:260px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.post-card-body{
  padding:28px;
}
.post-card h2{
  font-size:var(--font-size-h3);
  margin-bottom:12px;
}
.post-meta{
  color:var(--contrast-3);
  display:flex;
  flex-wrap:wrap;
  font-size:var(--font-size-small);
  gap:10px;
  margin-bottom:12px;
}
.text-link{
  color:var(--accent);
  font-weight:var(--font-weight-semibold);
  text-decoration:underline;
  text-underline-offset:4px;
}
.text-link:hover{
  color:var(--contrast);
}
.breadcrumbs{
  color:var(--contrast-3);
  display:flex;
  flex-wrap:wrap;
  font-size:var(--font-size-small);
  gap:8px;
  margin-bottom:22px;
}
.breadcrumbs a{
  color:var(--accent);
}
.blog-search{
  margin-top:30px;
  max-width:640px;
}
.search-form{
  display:flex;
  gap:10px;
}
.search-form label{
  flex:1;
}
.faq-search input,.form-panel input,.form-panel select,.form-panel textarea,.search-field,.search-submit{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast);
  font:inherit;
  min-height:50px;
  padding:0 14px;
  width:100%;
}
.form-panel textarea{
  min-height:140px;
  padding-top:12px;
}
.search-submit{
  border:0;
  border-radius:var(--radius);
  cursor:pointer;
  padding:0 20px;
  width:auto;
}
.article-content{
  padding:72px 0 96px;
}
.article-content a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}
.article-content h2,.article-content h3{
  margin-top:34px;
}
.article-content blockquote{
  background:var(--base-2);
  border-left:4px solid var(--accent);
  margin:30px 0;
  padding:28px 34px;
}
.article-next-steps{
  margin-top:48px;
}
.article-links a{
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--contrast);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  padding:10px 14px;
  text-decoration:none;
}
.article-links a:hover{
  border-color:var(--accent);
  color:var(--accent);
}
.faq-layout{
  align-items:start;
}
.faq-search{
  color:var(--contrast);
  display:grid;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  margin-top:28px;
  max-width:420px;
}
.faq-list{
  align-items:start;
  display:grid;
  gap:16px;
}
.faq-column{
  align-content:start;
  display:grid;
  gap:inherit;
  min-width:0;
}
.faq-item{
  overflow:hidden;
}
.faq-question{
  align-items:center;
  background:rgba(255, 255, 255, 0.72);
  border:0;
  color:var(--contrast);
  cursor:pointer;
  display:flex;
  font:inherit;
  font-weight:var(--font-weight-semibold);
  gap:16px;
  justify-content:space-between;
  min-height:68px;
  padding:0 24px;
  text-align:left;
  width:100%;
}
.faq-question .faq-chevron{
  color:var(--accent);
  flex:0 0 auto;
  height:20px;
  transition:transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width:20px;
}
.faq-item.is-open .faq-question .faq-chevron{
  transform:rotate(180deg);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer>*{
  color:var(--contrast-2);
  padding:0 24px 24px;
}
.faq-item.is-open .faq-answer{
  max-height:800px;
}
.faq-item.is-open{
  border-color:rgba(231, 111, 81, 0.48);
  box-shadow:0 10px 30px rgba(231, 111, 81, 0.08);
}
.cta-band h2,.cta-band p{
  max-width:760px;
}
.contact-page-grid{
  align-items:start;
}
.contact-method{
  display:block;
  padding:22px;
}
.contact-method span{
  color:var(--contrast-2);
  overflow-wrap:anywhere;
}
.contact-hints{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:28px;
}
.pagination{
  margin-top:48px;
}
.pagination .nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pagination a,.pagination span{
  align-items:center;
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:inline-flex;
  justify-content:center;
  min-height:46px;
  min-width:46px;
}
.pagination .current{
  background:var(--contrast);
  border-color:var(--contrast);
  color:var(--base-3);
}
.site-footer{
  background:var(--color-espresso);
  color:var(--color-ivory);
  padding:82px 0 34px;
}
.footer-grid{
  display:grid;
  gap:52px;
  grid-template-columns:minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
}
.footer-intro p{
  max-width:390px;
}
.site-footer h2,.site-footer h3{
  color:var(--base-3);
}
.footer-list,.footer-menu,.site-footer .menu,.site-footer p{
  color:var(--color-champagne-light);
}
.footer-list,.footer-menu,.site-footer .menu{
  display:grid;
  gap:10px;
}
.footer-list a:hover,.footer-menu a:hover,.footer-social a:hover,.site-footer .menu a:hover{
  color:var(--color-soft-peach);
}
.footer-utility{
  border-top:1px solid rgba(255, 255, 255, 0.14);
  margin-top:20px;
  padding-top:18px;
}
.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.footer-social a{
  border:1px solid rgba(232, 217, 190, 0.28);
  border-radius:var(--radius);
  color:var(--color-champagne-light);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  padding:8px 12px;
}
.footer-bottom{
  border-top:1px solid rgba(255, 255, 255, 0.14);
  color:#b8c5df;
  font-size:var(--font-size-small);
  margin-top:58px;
  padding-top:26px;
}
.footer-legal{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
.footer-legal a:hover{
  color:var(--color-soft-peach);
}
.floating-contact-bar{
  opacity:0;
  pointer-events:none;
  position:fixed;
  right:0;
  top:50%;
  transform:translate(12px, -50%);
  transition:opacity 180ms ease,transform 180ms ease,visibility 180ms ease;
  visibility:hidden;
  z-index:80;
}
.floating-contact-bar.is-visible{
  opacity:1;
  pointer-events:none;
  transform:translateY(-50%);
  visibility:visible;
}
.floating-contact-toggle{
  display:none;
}
.floating-contact-list{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:var(--radius) 0 0 var(--radius);
  border-right:0;
  box-shadow:0 18px 42px rgba(23, 37, 84, 0.14);
  display:grid;
  gap:0;
  overflow:hidden;
  pointer-events:auto;
}
.floating-contact-action{
  align-content:center;
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
  background:var(--base-3);
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  box-shadow:none;
  color:var(--contrast);
  cursor:pointer;
  display:grid;
  font:inherit;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  line-height:1;
  min-height:78px;
  padding:0;
  place-items:center;
  position:relative;
  transition:background 160ms ease,color 160ms ease;
  width:84px;
}
.floating-contact-action:focus-visible,.floating-contact-action:hover{
  background:var(--base-2);
  color:var(--contrast);
}
.floating-contact-rfq{
  color:var(--contrast);
}
.floating-contact-rfq:focus-visible,.floating-contact-rfq:hover{
  background:var(--base-2);
  color:var(--contrast);
}
.floating-contact-top{
  background:var(--base-3);
  border-bottom:0;
  color:var(--contrast);
}
.floating-contact-top:focus-visible,.floating-contact-top:hover{
  background:var(--base-2);
  color:var(--contrast);
}
.floating-contact-token{
  align-items:center;
  color:inherit;
  display:inline-flex;
  font-size:24px;
  height:26px;
  justify-content:center;
  letter-spacing:0;
  text-transform:uppercase;
  width:26px;
}
.floating-contact-token.dashicons{
  font-size:24px;
  height:26px;
  line-height:1;
  width:26px;
}
.floating-contact-label{
  align-items:center;
  color:inherit;
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-medium);
  line-height:1.2;
  min-height:auto;
  opacity:1;
  transform:none;
  visibility:visible;
  white-space:normal;
}
@media (max-width: 1180px){
  .nav-shell{
    gap:14px;
  }

  .footer-brand,.site-title{
    font-size:var(--font-size-h3);
  }

  .primary-navigation>.menu{
    font-size:var(--font-size-label);
    gap:12px;
  }

  .primary-navigation>.menu>.menu-item-has-children>a{
    gap:4px;
  }

  .header-cta{
    font-size:var(--font-size-label);
    min-height:42px;
    padding-inline:18px;
  }
}
@media (max-width: 1100px){
  .primary-navigation>.menu{
    gap:10px;
  }

  .category-grid,.certificate-grid,.decision-note-grid,.evidence-media-grid,.factory-gallery-grid,.fragrance-direction-grid,.guide-card-grid,.guide-channel-nav,.guide-hub-grid,.guide-product-grid,.guide-roadmap-grid,.home-intent-grid,.home-process-grid,.home-resource-grid,.post-grid,.product-card-grid,.proof-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .article-shell,.guide-feature-layout,.guide-section-layout,.guides-hero-layout,.product-detail-hero-grid,.product-detail-layout{
    grid-template-columns:1fr;
  }

  .guides-hero-layout{
    min-height:0;
  }

  .guides-hero-visual{
    min-height:280px;
  }

  .guide-filter-form{
    grid-template-columns:minmax(0, 1fr) minmax(210px, 0.36fr) auto auto;
  }

  .guide-card-section-lead{
    grid-column:auto;
    grid-row:auto;
  }

  .guide-section-layout .guide-card-compact{
    grid-column:auto;
  }

  .factory-gallery-item.is-wide{
    grid-column:1 /  -1;
  }

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

  .article-sidebar,.product-detail-sidebar{
    position:static;
  }
}
@media (max-width: 900px){
  .container{
    width:min(100% - 28px, var(--container));
  }

  .nav-shell{
    position:relative;
  }

  .footer-brand,.site-title{
    font-size:var(--font-size-h3);
  }

  .representative-detail-header{
    display:grid;
  }

  .header-cta,.site-topbar{
    display:none;
  }

  .nav-toggle{
    display:inline-flex;
    margin-left:auto;
  }

  .primary-navigation{
    background:var(--base-3);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow-card);
    display:none;
    left:0;
    padding:14px;
    position:absolute;
    right:0;
    top:calc(100% + 8px);
  }

  .primary-navigation.is-open{
    display:block;
  }

  .primary-navigation>.menu{
    display:grid;
    gap:10px;
  }

  .primary-navigation a{
    display:block;
    padding:10px 4px;
  }

  .primary-navigation .menu-item-has-children{
    align-items:center;
    display:grid;
    grid-template-columns:minmax(0, 1fr) 34px;
  }

  .primary-navigation .menu-item-has-children>a{
    min-width:0;
  }

  .primary-navigation>.menu>.menu-item-has-children>a:after{
    display:none;
  }

  .submenu-toggle{
    align-items:center;
    background:transparent;
    border:0;
    border-radius:var(--radius);
    color:var(--accent);
    cursor:pointer;
    display:inline-flex;
    height:28px;
    justify-content:center;
    padding:0;
    width:28px;
  }

  .submenu-toggle-icon{
    height:20px;
    width:20px;
  }

  .menu-item-has-children.is-submenu-open>.submenu-toggle .submenu-toggle-icon-open,.submenu-toggle-icon-close{
    display:none;
  }

  .menu-item-has-children.is-submenu-open>.submenu-toggle .submenu-toggle-icon-close{
    display:block;
  }

  .primary-navigation .sub-menu{
    border:0;
    box-shadow:none;
    display:grid;
    grid-column:1 /  -1;
    max-height:0;
    min-width:0;
    opacity:0;
    overflow:hidden;
    padding:0 0 0 16px;
    position:static;
    transform:translateY(-6px);
    transition:max-height 220ms ease,opacity 180ms ease,padding-top 220ms ease,transform 220ms ease;
    visibility:visible;
  }

  .primary-navigation .menu-item-has-children.is-submenu-open>.sub-menu{
    max-height:420px;
    opacity:1;
    padding-top:4px;
    transform:translateY(0);
  }

  .primary-navigation .sub-menu a{
    font-size:var(--font-size-small);
    line-height:1.45;
    min-height:44px;
    padding:10px 4px;
    white-space:normal;
  }

  .contact-page-grid,.cta-grid,.footer-grid,.home-hero-grid,.page-hero-grid,.row-heading,.split-grid{
    display:grid;
    grid-template-columns:1fr;
  }

  .guide-card-featured,.guide-channel-heading{
    grid-template-columns:1fr;
  }

  .guides-hero{
    padding:66px 0 58px;
  }

  .guide-filter-form{
    grid-template-columns:1fr 1fr;
  }

  .guide-filter-form .button,.guide-filter-reset{
    justify-content:center;
  }

  .about-overview-layout,.capability-list.four-columns,.capability-list.two-columns,.contact-hints,.document-support-panel,.factory-gallery-grid,.factory-mini-gallery,.factory-operation-grid,.oem-sample-layout,.packaging-design-grid,.process-brief-layout,.process-timeline,.quality-compliance-layout,.two-card-grid{
    grid-template-columns:1fr;
  }

  .process-brief-layout .info-panel{
    grid-column:auto;
  }

  .factory-gallery-item.is-wide{
    grid-column:auto;
    grid-template-columns:1fr;
  }

  .factory-gallery-item.is-wide figcaption{
    border-left:0;
    border-top:1px solid var(--line);
  }

  .factory-gallery-item.is-wide img{
    aspect-ratio:16 / 9;
  }

  .factory-filling-section .content-media{
    max-width:100%;
  }

  .factory-filling-section .content-media img{
    height:clamp(320px, 58vw, 460px);
  }

  .content-media img,.hero-media img,.hero-media-large img{
    min-height:320px;
  }

  .about-overview-media img,.fragrance-family-media img,.oem-customization-grid .content-media img,.oem-sample-layout .content-media img,.process-brief-media img,.quality-compliance-media img,.quality-control-media img{
    height:auto;
    min-height:320px;
  }

  .floating-contact-bar{
    bottom:auto;
    left:auto;
    right:0;
    top:56%;
    transform:translate(10px, -50%);
  }

  .floating-contact-bar.is-visible{
    transform:translateY(-50%);
  }

  .floating-contact-list{
    background:rgba(255, 255, 255, 0.96);
    border:1px solid var(--line);
    border-radius:var(--radius) 0 0 var(--radius);
    border-right:0;
    box-shadow:0 14px 34px rgba(23, 37, 84, 0.14);
    gap:0;
    max-height:320px;
    opacity:1;
    padding:0;
    transform:translateY(0);
    transition:max-height 280ms cubic-bezier(0.22, 1, 0.36, 1),opacity 180ms ease,transform 240ms cubic-bezier(0.22, 1, 0.36, 1),visibility 0s linear 0s;
    visibility:visible;
  }

  .floating-contact-toggle{
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
    background:var(--base-3);
    border:1px solid var(--line);
    border-radius:16px 0 0 16px;
    border-right:0;
    box-shadow:0 14px 34px rgba(23, 37, 84, 0.14);
    color:var(--contrast);
    cursor:pointer;
    display:none;
    min-height:46px;
    padding:0;
    place-items:center;
    transition:background 160ms ease,color 160ms ease,border-radius 180ms ease,box-shadow 180ms ease,width 240ms cubic-bezier(0.22, 1, 0.36, 1);
    width:46px;
  }

  .floating-contact-toggle:focus-visible,.floating-contact-toggle:hover{
    background:var(--base-2);
    color:var(--contrast);
  }

  .floating-contact-bar.is-collapsible .floating-contact-toggle{
    display:grid;
    pointer-events:auto;
  }

  .floating-contact-bar.is-collapsible .floating-contact-list{
    max-height:0;
    opacity:0;
    pointer-events:none;
    transform:translateY(-8px);
    transition-delay:0s, 0s, 0s, 280ms;
    visibility:hidden;
  }

  .floating-contact-bar.is-collapsible.is-expanded .floating-contact-toggle{
    border-bottom:0;
    border-radius:var(--radius) 0 0 0;
    box-shadow:none;
    min-height:44px;
    width:72px;
  }

  .floating-contact-bar.is-collapsible.is-expanded .floating-contact-list{
    border-radius:0 0 0 var(--radius);
    border-top:0;
    max-height:320px;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
    transition-delay:0s;
    visibility:visible;
  }

  .floating-contact-toggle .floating-contact-token{
    transition:transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .floating-contact-bar.is-expanded .floating-contact-toggle .floating-contact-token{
    transform:rotate(180deg);
  }

  .floating-contact-action{
    border-bottom:1px solid var(--line);
    border-radius:0;
    border-right:0;
    box-shadow:none;
    display:grid;
    gap:6px;
    min-height:62px;
    padding:0;
    width:72px;
  }

  .floating-contact-action:focus-visible,.floating-contact-action:hover{
    background:var(--base-2);
  }

  .floating-contact-label{
    font-size:var(--font-size-meta);
    line-height:1.15;
    min-height:auto;
  }
}
.related-category-grid{
  display:grid;
  gap:16px;
}
.related-category-card{
  background:#fff;
  border:1px solid rgba(40, 34, 30, 0.12);
  color:inherit;
  display:grid;
  gap:8px;
  min-height:150px;
  padding:18px;
  text-decoration:none;
}
.related-category-card strong{
  font-size:var(--font-size-body);
}
.related-category-card span{
  color:var(--color-muted-brown);
}
@media (max-width: 900px){
  .related-category-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .article-hero,.page-hero,.section{
    padding:64px 0;
  }

  .home-hero{
    padding:70px 0 64px;
  }

  .product-detail-hero{
    padding:66px 0 56px;
  }

  .category-grid,.certificate-grid,.decision-note-grid,.evidence-media-grid,.fragrance-direction-grid,.guide-card-grid,.guide-channel-nav,.guide-hub-grid,.guide-product-grid,.guide-roadmap-grid,.home-intent-grid,.home-process-grid,.home-resource-grid,.post-grid,.product-card-grid,.proof-grid,.tag-grid{
    grid-template-columns:1fr;
  }

  .guide-feature-side{
    grid-template-rows:auto;
  }

  .guide-channel-nav a{
    min-height:0;
  }

  .guides-hero-visual{
    min-height:220px;
  }

  .guide-filter-panel{
    padding:18px;
  }

  .guide-card-compact,.guide-filter-form{
    grid-template-columns:1fr;
  }

  .guide-card-featured .guide-card-media,.guide-card-section-lead .guide-card-media{
    min-height:230px;
  }

  .article-shell{
    gap:32px;
    padding:56px 0 72px;
  }

  .article-links,.contact-actions,.hero-actions,.search-form{
    display:grid;
  }

  .button,.search-submit{
    width:100%;
  }

  .article-next-steps,.category-grid article,.empty-state,.feature-card,.form-panel,.guide-roadmap-card,.proof-grid article{
    padding:24px;
  }

  .product-card-body,.representative-product-detail{
    padding:22px;
  }

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

  .document-support-panel{
    padding:24px;
  }

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

  .factory-operation-card figcaption{
    border-left:0;
    border-top:1px solid var(--line);
  }

  .trust-file-nav{
    display:grid;
  }

  .trust-file-group-heading,.trust-file-nav a{
    align-items:start;
  }

  .trust-file-nav a{
    border-radius:var(--radius);
    justify-content:space-between;
  }

  .trust-file-group-heading{
    display:grid;
    gap:10px;
  }

  .document-support-item{
    grid-template-columns:42px minmax(0, 1fr);
  }

  .document-support-item img{
    height:34px;
    width:34px;
  }

  .content-media img,.hero-media img,.hero-media-large img{
    min-height:250px;
  }

  .certificate-preview,.certificate-preview img{
    height:220px;
    min-height:220px;
  }

  .comparison-table-wrap{
    overflow-x:auto;
  }

  .floating-contact-bar{
    right:0;
    top:58%;
  }

  .floating-contact-action{
    gap:0;
    min-height:44px;
    width:46px;
  }

  .floating-contact-bar.is-collapsible.is-expanded .floating-contact-toggle{
    min-height:40px;
    width:46px;
  }

  .floating-contact-token,.floating-contact-token.dashicons{
    font-size:20px;
    height:20px;
    width:20px;
  }

  .floating-contact-label{
    display:none;
  }

  .comparison-table{
    background:#fff;
    border-collapse:collapse;
    width:100%;
  }

  .comparison-table td,.comparison-table th{
    border:1px solid rgba(40, 34, 30, 0.12);
    padding:16px;
    text-align:left;
    vertical-align:top;
  }

  .comparison-table a,.comparison-table th{
    font-weight:var(--font-weight-semibold);
  }

  .comparison-table a{
    color:inherit;
    text-decoration:underline;
    text-underline-offset:3px;
  }

}
@media (max-width: 560px){
  .related-category-grid{
    grid-template-columns:1fr;
  }

  .comparison-table td,.comparison-table th{
    padding:12px;
  }
}
@media (prefers-reduced-motion: reduce){

  .floating-contact-action,.floating-contact-label,.floating-contact-list,.floating-contact-toggle,.floating-contact-toggle .floating-contact-token{
    transition:none;
  }
}
.home-prototype-page .section{
  padding:88px 0;
}
.home-prototype-page .section-heading{
  margin:0 auto 44px;
  max-width:820px;
  text-align:center;
}
.home-prototype-page .row-heading{
  margin:0 0 42px;
  max-width:none;
  text-align:left;
}
.home-prototype-page .row-heading p{
  max-width:780px;
}
.home-prototype-page .home-hero{
  align-items:flex-start;
  background:var(--color-ivory);
  min-height:calc(100vh - var(--home-hero-reserved-height, 288px) - 20px);
  min-height:calc(100svh - var(--home-hero-reserved-height, 288px) - 20px);
  padding:clamp(96px, 12vh, 132px) 0 clamp(72px, 8vh, 96px);
}
.home-prototype-page .home-hero:after{
  background:radial-gradient(circle at 18% 22%, rgba(255, 227, 216, 0.7), transparent 30%), linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 242, 0.82) 42%, rgba(255, 248, 242, 0.34) 72%, rgba(255, 248, 242, 0.08));
}
.home-prototype-page .home-hero .hero-media img,.home-prototype-page .home-hero .hero-media-large img{
  height:100%;
  margin-left:0;
  margin-top:0;
  min-height:100%;
  -o-object-position:60% 48%;
     object-position:60% 48%;
  width:100%;
}
.home-prototype-page .home-hero-copy{
  max-width:690px;
  padding:0 0 30px;
}
.home-prototype-page .home-hero h1{
  max-width:18ch;
}
.home-prototype-page .hero-lede{
  color:var(--color-cocoa);
  max-width:660px;
}
@media (min-width: 901px) and (max-height: 860px){
  .home-prototype-page .home-hero{
    min-height:calc(100vh - var(--home-hero-reserved-height, 288px) - 20px);
    min-height:calc(100svh - var(--home-hero-reserved-height, 288px) - 20px);
    padding:48px 0 44px;
  }

  .home-prototype-page .hero-actions{
    margin-top:22px;
  }
}
.home-trust-bar{
  background:var(--color-ivory);
  border-bottom:1px solid rgba(201, 164, 106, 0.2);
  border-top:1px solid rgba(201, 164, 106, 0.2);
}
.home-trust-bar-inner{
  padding-bottom:32px;
  padding-top:32px;
  width:min(100% - 40px, 1440px);
}
.home-trust-bar-grid{
  display:flex;
  flex-wrap:wrap;
  gap:24px clamp(28px, 4vw, 56px);
  margin-inline:auto;
  text-align:center;
  width:min(100%, 1180px);
}
.home-trust-bar-grid,.home-trust-item{
  align-items:center;
  justify-content:center;
}
.home-trust-item{
  color:var(--color-muted-brown);
  display:inline-flex;
  gap:12px;
  min-width:0;
}
.home-trust-item span{
  color:inherit;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  line-height:1.35;
  text-transform:uppercase;
}
.home-trust-item .laeyo-icon{
  color:var(--color-champagne);
  flex:0 0 auto;
  height:20px;
  stroke:currentColor;
  width:20px;
}
.home-project-card,.home-prototype-page .fragrance-direction-card,.home-prototype-page .home-intent-card,.home-service-card,.home-work-card{
  background:rgba(255, 255, 255, 0.84);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:0 10px 32px var(--overlay-subtle);
  transition:border-color 180ms ease,box-shadow 180ms ease,transform 180ms ease;
}
.home-product-card:hover,.home-project-card:hover,.home-prototype-page .fragrance-direction-card:hover,.home-prototype-page .home-intent-card:hover,.home-service-card:hover,.home-work-card:hover{
  border-color:rgba(201, 164, 106, 0.78);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.home-prototype-page .home-intent-card{
  color:inherit;
  display:flex;
  flex-direction:column;
  min-height:300px;
  padding:40px;
}
.home-prototype-page .home-intent-card .home-intent-icon{
  align-items:center;
  background:transparent;
  border-radius:1rem;
  color:var(--color-champagne);
  display:inline-flex;
  height:40px;
  justify-content:center;
  margin-bottom:24px;
  min-height:0;
  padding:0;
  transition:color 180ms ease,transform 180ms ease;
  width:40px;
}
.home-prototype-page .home-intent-card .home-intent-icon .laeyo-icon{
  height:40px;
  stroke:currentColor;
  width:40px;
}
.home-prototype-page .home-intent-card:hover .home-intent-icon{
  color:var(--color-coral);
  transform:translateY(-2px);
}
.home-prototype-page .home-intent-card strong{
  color:var(--color-espresso);
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-weight:var(--font-weight-semibold);
  line-height:1.35;
  margin-bottom:16px;
}
.home-prototype-page .home-intent-card p{
  color:var(--color-muted-brown);
  flex-grow:1;
  font-size:var(--font-size-body);
  line-height:1.62;
  margin-bottom:0;
}
.home-prototype-page .home-intent-card em{
  align-items:center;
  color:var(--color-coral);
  display:inline-flex;
  font-style:normal;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  line-height:1.2;
  margin-top:28px;
  width:-moz-fit-content;
  width:fit-content;
}
.home-prototype-page .home-intent-card em .laeyo-icon{
  height:18px;
  transition:transform 180ms ease;
  width:18px;
}
.home-prototype-page .home-intent-card:hover em .laeyo-icon{
  transform:translateX(4px);
}
.home-product-card{
  background:rgba(255, 253, 248, 0.9);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.06);
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  transition:border-color 180ms ease,box-shadow 180ms ease,transform 180ms ease;
}
.home-product-card figure{
  background:var(--color-champagne-light);
  height:256px;
  margin:0;
  overflow:hidden;
}
.home-product-card figure a{
  display:block;
  height:100%;
}
.home-product-card img{
  height:100%;
  min-height:0;
  -o-object-fit:cover;
     object-fit:cover;
  transition:transform 220ms ease;
  width:100%;
}
.home-product-card:hover img{
  transform:scale(1.035);
}
.home-product-card>div{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
  padding:32px;
}
.home-project-card span{
  align-items:center;
  background:var(--color-soft-peach);
  border-radius:var(--radius);
  color:var(--color-espresso);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0;
  line-height:1;
  min-height:30px;
  padding:6px 10px;
  text-transform:uppercase;
  width:-moz-fit-content;
  width:fit-content;
}
.home-product-title-row{
  align-items:center;
  display:flex;
  gap:12px;
  margin-bottom:16px;
  padding:0;
}
.home-product-title-row .laeyo-icon{
  color:var(--color-champagne);
  flex:0 0 auto;
  height:24px;
  stroke:currentColor;
  transition:color 180ms ease;
  width:24px;
}
.home-product-card:hover .home-product-title-row .laeyo-icon{
  color:var(--color-coral);
}
.home-product-card h3,.home-product-card p{
  margin-bottom:0;
}
.home-product-card h3{
  color:var(--color-espresso);
  font-size:var(--font-size-h3);
  line-height:1.35;
}
.home-product-card p{
  color:var(--color-muted-brown);
  line-height:1.62;
}
.home-product-card p,.home-product-text-link{
  font-size:var(--font-size-small);
  margin-bottom:28px;
}
.home-product-text-link{
  align-items:center;
  color:var(--color-coral);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  gap:8px;
  line-height:1.25;
  margin-top:auto;
  width:-moz-fit-content;
  width:fit-content;
}
.home-product-text-link .laeyo-icon{
  height:16px;
  transition:transform 180ms ease;
  width:16px;
}
.home-product-text-link:hover .laeyo-icon{
  transform:translateX(4px);
}
.home-product-quote-link{
  align-items:center;
  background:var(--color-coral);
  border-radius:var(--radius);
  box-shadow:var(--shadow-coral);
  color:#fff;
  display:inline-flex;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  justify-content:center;
  line-height:1.2;
  min-height:48px;
  padding:12px 18px;
  text-align:center;
  transition:background 180ms ease,box-shadow 180ms ease,transform 180ms ease;
  width:100%;
}
.home-product-quote-link:hover{
  background:var(--color-coral-hover);
  box-shadow:0 16px 34px rgba(231, 111, 81, 0.26);
  color:#fff;
  transform:translateY(-1px);
}
.home-service-copy{
  display:flex;
  flex-direction:column;
  gap:20px;
  min-width:0;
}
.home-service-layout{
  align-items:stretch;
  display:grid;
  gap:48px;
  grid-template-columns:minmax(0, 7fr) minmax(380px, 5fr);
  padding-top:16px;
}
.home-service-copy h2,.home-service-copy p{
  margin-bottom:0;
}
.home-service-grid{
  align-items:stretch;
  display:grid;
  gap:32px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.home-service-card{
  align-items:flex-start;
  display:flex;
  gap:16px;
  height:auto;
  padding:16px;
}
.home-service-card strong,.home-work-card strong{
  color:var(--color-espresso);
}
.home-service-card strong{
  display:block;
  font-size:var(--font-size-body);
  line-height:1.35;
  margin-bottom:8px;
}
.home-service-card p,.home-work-card p{
  color:var(--color-cocoa);
  margin-bottom:0;
}
.home-service-card p{
  font-size:var(--font-size-small);
  line-height:1.58;
}
.home-service-card>div{
  min-width:0;
}
.home-service-icon{
  align-items:center;
  background:var(--color-champagne-light);
  border:1px solid rgba(201, 164, 106, 0.3);
  border-radius:1rem;
  color:var(--color-coral);
  display:inline-flex;
  flex:0 0 48px;
  height:48px;
  justify-content:center;
  transition:background 180ms ease,border-color 180ms ease,color 180ms ease,transform 180ms ease;
  width:48px;
}
.home-service-icon .laeyo-icon{
  height:24px;
  stroke:currentColor;
  width:24px;
}
.home-service-card:hover .home-service-icon{
  background:var(--color-soft-peach);
  border-color:rgba(231, 111, 81, 0.38);
  color:var(--color-coral-hover);
  transform:translateY(-2px);
}
.home-service-media{
  align-self:stretch;
  background:var(--color-warm-white);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.home-service-media img{
  height:100%;
  min-height:460px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.home-process-track{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  padding-top:8px;
  position:relative;
}
.home-process-track:before{
  background:linear-gradient(90deg, transparent, var(--color-champagne), transparent);
  content:"";
  height:2px;
  left:8.4%;
  position:absolute;
  right:8.4%;
  top:32px;
}
.home-process-step{
  display:grid;
  gap:12px;
  justify-items:center;
  min-width:0;
  position:relative;
  text-align:center;
}
.home-process-node{
  align-items:center;
  background:var(--color-coral);
  border:3px solid var(--color-warm-white);
  border-radius:1rem;
  box-shadow:var(--shadow-coral);
  color:#fff;
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  height:48px;
  justify-content:center;
  position:relative;
  width:48px;
  z-index:1;
}
.home-process-step strong{
  color:var(--color-espresso);
}
.home-process-step p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-small);
  margin-bottom:0;
  max-width:180px;
}
.home-manufacturing-gallery figure{
  background:var(--color-warm-white);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.06);
  margin:0;
  overflow:hidden;
  position:relative;
}
.home-manufacturing-gallery figcaption{
  backdrop-filter:blur(10px);
  background:rgba(255, 253, 248, 0.9);
  border:1px solid rgba(201, 164, 106, 0.3);
  border-radius:var(--radius);
  bottom:16px;
  box-shadow:0 8px 22px rgba(62, 39, 35, 0.1);
  color:var(--color-coral);
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  left:16px;
  line-height:1.2;
  opacity:0;
  padding:8px 14px;
  position:absolute;
  transform:translateY(6px);
  transition:opacity 180ms ease,transform 180ms ease;
}
.home-manufacturing-gallery figure:hover figcaption{
  opacity:1;
  transform:translateY(0);
}
.home-manufacturing-gallery figure.is-wide{
  grid-column:1 /  -1;
}
.home-manufacturing-gallery img{
  height:100%;
  min-height:210px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.home-manufacturing-gallery .is-wide img{
  min-height:360px;
}
.home-qc-panel{
  background:rgba(255, 255, 255, 0.86);
  border:1px solid var(--border-soft);
  border-left:4px solid var(--color-champagne);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  display:grid;
  gap:24px;
  padding:34px;
}
.home-qc-panel p{
  color:var(--color-cocoa);
  margin-bottom:0;
}
.home-check-list{
  display:grid;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
}
.home-check-list li{
  align-items:flex-start;
  color:var(--color-cocoa);
  display:flex;
  gap:10px;
  position:relative;
}
.home-check-list li:before{
  display:none;
}
.home-check-list li>.laeyo-icon{
  color:var(--color-champagne);
  flex:0 0 auto;
  height:18px;
  margin-top:0.24em;
  stroke:currentColor;
  width:18px;
}
.home-qc-focus-card{
  background:rgba(255, 253, 248, 0.92);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:0 10px 28px var(--overlay-subtle);
  display:grid;
  gap:12px;
  padding:28px;
}
.home-qc-focus-card span{
  color:var(--color-coral);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.home-qc-focus-card strong{
  color:var(--color-espresso);
  font-size:var(--font-size-body);
  line-height:1.35;
}
.home-proof-links{
  display:grid;
  gap:0;
}
.home-proof-links a{
  align-items:center;
  border-bottom:1px solid rgba(232, 217, 190, 0.9);
  color:var(--color-espresso);
  display:flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  gap:16px;
  justify-content:space-between;
  line-height:1.25;
  min-height:52px;
  padding:12px 0;
}
.home-proof-links a .laeyo-icon{
  color:var(--color-coral);
  height:16px;
  transition:transform 180ms ease;
  width:16px;
}
.home-proof-links a:hover .laeyo-icon{
  transform:translateX(4px);
}
.home-fragrance-media{
  background:var(--color-warm-white);
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card-hover);
  margin:0;
  overflow:hidden;
}
.home-fragrance-media img{
  min-height:460px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.home-proof-links a:hover{
  color:var(--color-coral);
}
.home-prototype-page .fragrance-direction-card{
  height:100%;
  min-height:148px;
  padding:24px;
  place-content:center;
  text-align:center;
}
.home-prototype-page .fragrance-direction-card h3{
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-weight:var(--font-weight-semibold);
  margin-bottom:10px;
}
.home-prototype-page .fragrance-direction-card p{
  font-size:var(--font-size-label);
  line-height:1.45;
  margin-bottom:0;
}
.home-work-card{
  align-content:center;
  display:grid;
  gap:14px;
  justify-items:center;
  min-height:220px;
  padding:40px;
  text-align:center;
}
.home-work-card>.laeyo-icon{
  color:var(--color-champagne);
  height:48px;
  stroke:currentColor;
  transition:color 180ms ease,transform 180ms ease;
  width:48px;
}
.home-work-card:hover>.laeyo-icon{
  color:var(--color-coral);
  transform:translateY(-2px);
}
.home-project-card{
  border:2px solid rgba(201, 164, 106, 0.1);
  display:grid;
  gap:16px;
  padding:40px;
}
.home-project-card h3,.home-project-card p{
  margin-bottom:0;
}
.home-project-card p strong{
  color:var(--color-espresso);
}
.home-project-card span{
  background:transparent;
  color:var(--color-coral);
  font-size:var(--font-size-meta);
  letter-spacing:0.12em;
  min-height:0;
  padding:0;
}
.home-about-copy h2,.home-about-copy p{
  margin-bottom:0;
}
.home-about-points article{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  box-shadow:0 10px 28px rgba(62, 39, 35, 0.04);
  min-width:0;
  padding:24px;
}
.home-about-points strong{
  color:var(--color-coral);
  display:block;
  font-weight:var(--font-weight-semibold);
  margin-bottom:8px;
}
.home-about-points p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-meta);
  line-height:1.5;
}
.home-about-gallery{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.home-about-gallery img{
  aspect-ratio:1 / 1;
  border:1px solid rgba(232, 217, 190, 0.78);
  border-radius:var(--radius);
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.06);
  min-height:190px;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.home-about-gallery img:first-child{
  aspect-ratio:16 / 9;
  grid-column:1 /  -1;
}
.home-faq-resource-layout{
  align-items:start;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 7fr) minmax(320px, 5fr);
}
.home-faq-list-panel{
  min-width:0;
}
.home-resource-panel{
  align-content:start;
  align-self:start;
  background:linear-gradient(135deg, var(--color-coral), var(--color-coral-hover));
  border-radius:var(--radius);
  box-shadow:var(--shadow-coral);
  color:#fff;
  display:grid;
  gap:28px;
  padding:36px;
}
.home-resource-panel h3{
  color:#fff;
}
.home-resource-links{
  display:grid;
  gap:0;
}
.home-resource-links a{
  align-items:center;
  border-bottom:1px solid rgba(255, 255, 255, 0.26);
  color:#fff;
  display:flex;
  font-weight:var(--font-weight-semibold);
  gap:18px;
  justify-content:space-between;
  padding:16px 0;
}
.home-resource-links a .laeyo-icon{
  flex:0 0 auto;
  height:18px;
  transition:transform 180ms ease;
  width:18px;
}
.home-resource-links a:hover .laeyo-icon{
  transform:translateX(4px);
}
.home-rfq-shell{
  max-width:1180px;
}
.home-rfq-form-wrap{
  display:flex;
  min-width:0;
}
.home-rfq-form{
  background:rgba(255, 255, 255, 0.9);
  border:1px solid rgba(206, 166, 110, 0.24);
  border-radius:var(--radius);
  box-shadow:0 22px 48px rgba(62, 36, 31, 0.08);
  display:grid;
  gap:28px;
  margin:0;
  padding:clamp(28px, 4vw, 42px);
  width:100%;
}
.home-rfq-form .wpcf7-form{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:0;
}
.home-rfq-form .wpcf7-form>p{
  margin:0;
  min-width:0;
}
.home-rfq-form .wpcf7-form>p:has(.wpcf7-submit),.home-rfq-form .wpcf7-form>p:has(textarea),.home-rfq-form .wpcf7-response-output{
  grid-column:1 /  -1;
}
.home-rfq-form input,.home-rfq-form select,.home-rfq-form textarea{
  background:var(--color-warm-white);
  border-color:rgba(206, 166, 110, 0.34);
  color:var(--color-espresso);
}
.home-rfq-form input:focus,.home-rfq-form select:focus,.home-rfq-form textarea:focus{
  border-color:var(--color-coral);
  box-shadow:0 0 0 3px rgba(231, 111, 81, 0.14);
  outline:none;
}
.home-rfq-form textarea{
  min-height:148px;
  resize:vertical;
}
.home-rfq-form .wpcf7-submit{
  min-height:58px;
  width:100%;
}
.home-rfq-sidebar{
  align-content:start;
  background:var(--color-espresso);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  color:var(--color-champagne-light);
  display:grid;
  gap:30px;
  padding:clamp(30px, 4vw, 42px);
}
.home-rfq-sidebar h3{
  color:var(--color-warm-white);
  font-family:var(--font-body);
  font-size:var(--font-size-body);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0;
  line-height:1.35;
  margin:0;
}
.home-rfq-sidebar .home-check-list li,.home-rfq-sidebar p{
  color:var(--color-champagne-light);
}
.home-rfq-sidebar .home-check-list{
  gap:24px;
}
.home-rfq-sidebar .home-check-list li{
  gap:16px;
}
.home-rfq-sidebar .home-check-list li>.laeyo-icon{
  color:var(--color-coral);
  height:24px;
  margin-top:0;
  width:24px;
}
.home-rfq-sidebar .home-check-list strong{
  color:var(--color-warm-white);
  display:block;
  margin-bottom:4px;
}
.home-rfq-sidebar-note{
  align-items:start;
  background:rgba(255, 255, 255, 0.06);
  border:1px solid rgba(246, 221, 190, 0.18);
  border-radius:var(--radius);
  display:grid;
  gap:14px;
  grid-template-columns:34px minmax(0, 1fr);
  padding:18px;
}
.home-rfq-sidebar-note .laeyo-icon{
  color:var(--color-champagne);
  height:24px;
  width:24px;
}
.home-rfq-sidebar-note p{
  font-size:var(--font-size-small);
  line-height:1.62;
  margin:0;
}
.home-rfq-sidebar>p{
  border-top:1px solid rgba(255, 255, 255, 0.12);
  font-size:var(--font-size-meta);
  font-style:normal;
  line-height:1.5;
  margin:0;
  padding-top:22px;
}
@media (max-width: 1100px){

  .home-product-grid,.home-prototype-page .fragrance-direction-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .home-about-layout,.home-faq-resource-layout,.home-fragrance-layout,.home-manufacturing-layout,.home-rfq-layout,.home-service-layout{
    grid-template-columns:1fr;
  }

  .home-faq-resource-layout{
    gap:36px;
  }

  .home-service-layout{
    align-items:start;
  }

  .home-prototype-page .row>[class*=col-]{
    grid-column:1 /  -1;
  }

  .home-process-track{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    row-gap:30px;
  }

  .home-process-track:before{
    display:none;
  }

  .home-project-grid,.home-work-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .home-prototype-page .home-hero{
    min-height:660px;
    padding:70px 0 68px;
  }

  .home-prototype-page .home-hero:after{
    background:radial-gradient(circle at 22% 24%, rgba(255, 227, 216, 0.72), transparent 30%), linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 242, 0.86) 58%, rgba(255, 248, 242, 0.36));
  }

  .home-prototype-page .section{
    padding:72px 0;
  }

  .home-service-media img{
    min-height:340px;
  }

  .home-process-track{
    gap:20px;
    grid-template-columns:1fr;
    padding-left:28px;
  }

  .home-process-track:before{
    background:linear-gradient(180deg, transparent, var(--color-champagne), transparent);
    bottom:24px;
    display:block;
    height:auto;
    left:23px;
    right:auto;
    top:24px;
    width:2px;
  }

  .home-process-step{
    gap:6px 14px;
    grid-template-columns:48px minmax(0, 1fr);
    justify-items:start;
    text-align:left;
  }

  .home-process-node{
    grid-row:1 / span 2;
  }

  .home-process-step p{
    max-width:none;
  }

  .home-proof-links{
    grid-template-columns:1fr;
  }
}
@media (max-width: 600px){
  .home-prototype-page .home-hero{
    min-height:calc(100vh - 83px);
    padding:58px 0 58px;
  }

  .home-prototype-page .hero-lede{
    font-size:var(--font-size-lede);
    line-height:1.6;
  }

  .home-service-grid{
    gap:20px;
    grid-template-columns:minmax(0, 1fr);
  }
  .home-about-gallery,.home-rfq-form .wpcf7-form{
    grid-template-columns:1fr;
  }

  .home-trust-bar-grid{
    gap:18px 28px;
    justify-content:center;
  }

  .home-trust-bar-inner{
    padding-bottom:28px;
    padding-top:28px;
  }

  .home-prototype-page .row-heading{
    gap:18px;
  }

  .home-product-card>div,.home-project-card,.home-qc-panel,.home-resource-panel,.home-rfq-form,.home-rfq-sidebar{
    padding:24px;
  }

  .home-about-gallery img:first-child,.home-manufacturing-gallery figure.is-wide{
    grid-column:auto;
  }

  .home-manufacturing-gallery .is-wide img,.home-manufacturing-gallery img{
    min-height:260px;
  }
}
.about-page .container,.trust-page .container{
  width:min(100% - 40px, var(--container));
}
.about-page .section,.trust-page .section{
  padding:88px 0;
}
.about-page .section-heading:not(.row-heading),.trust-page .section-heading:not(.row-heading){
  margin:0 auto 44px;
  max-width:820px;
  text-align:center;
}
.about-page .section-heading:not(.row-heading)>p:not(.eyebrow),.trust-page .section-heading:not(.row-heading)>p:not(.eyebrow){
  margin-left:auto;
  margin-right:auto;
  max-width:780px;
}
.about-page .row-heading,.trust-page .row-heading{
  margin:0 0 42px;
  max-width:none;
  text-align:left;
}
.about-page .eyebrow,.trust-page .eyebrow{
  font-size:var(--font-size-meta);
  letter-spacing:0.1em;
  line-height:1.3;
  margin-bottom:14px;
}
.about-page .button,.trust-page .button{
  border-radius:var(--radius);
  font-size:var(--font-size-label);
  gap:8px;
  letter-spacing:0.01em;
  line-height:1.2;
  min-height:46px;
  padding:0 24px;
}
.about-hero,.trust-hero,.trust-hub-hero,.trust-page .page-hero{
  padding:88px 0;
}
.about-hero-badge,.trust-hub-badge{
  border-radius:var(--radius);
  font-size:var(--font-size-meta);
  letter-spacing:0.12em;
  line-height:1.5;
  margin-bottom:24px;
  min-height:28px;
  padding:4px 16px;
  text-transform:uppercase;
}
.about-page article h3{
  font-size:var(--font-size-h3);
}
.about-page article h3,.trust-hub-verify-grid h3{
  font-family:var(--font-heading);
  letter-spacing:-0.01em;
  line-height:1.35;
}
.trust-hub-verify-grid h3{
  font-size:1.125rem;
  min-height:0;
  text-transform:none;
}
.trust-hub-document-card h3,.trust-hub-pillar-grid h3,.trust-hub-question-grid h3,.trust-hub-topic-grid h3{
  font-size:var(--font-size-h3);
  line-height:1.35;
}
.about-buyer-grid,.about-document-grid,.about-fact-grid,.about-factory-grid,.about-material-grid,.about-process-grid,.about-product-grid,.about-qc-grid,.about-team-grid,.trust-checklist-grid,.trust-checkpoint-grid,.trust-document-category-grid,.trust-document-type-grid,.trust-hub-document-grid,.trust-hub-pillar-grid,.trust-hub-question-grid,.trust-hub-topic-grid,.trust-hub-verify-grid,.trust-pillar-grid,.trust-proof-grid,.trust-question-grid,.trust-step-grid,.trust-timing-grid,.trust-topic-grid,.trust-verify-grid{
  gap:24px;
}
.about-hero-media,.about-related-links a,.trust-hub-authority-links,.trust-hub-document-card,.trust-hub-final-cta,.trust-hub-pillar-grid article,.trust-hub-question-grid article,.trust-hub-topic-grid .trust-topic-card,.trust-hub-visual,.trust-support-links a{
  border-radius:var(--radius);
}
@media (max-width: 900px){
  .about-page .container,.trust-page .container{
    width:min(100% - 40px, var(--container));
  }

  .about-hero,.about-page .section,.trust-hero,.trust-hub-hero,.trust-page .page-hero,.trust-page .section{
    padding:72px 0;
  }
}
@media (max-width: 600px){
  .about-page .button,.trust-page .button{
    padding:0 20px;
    width:100%;
  }

  .about-page .section-heading:not(.row-heading),.trust-page .section-heading:not(.row-heading){
    margin-bottom:36px;
  }

  .about-page article h3,.trust-hub-document-card h3,.trust-hub-pillar-grid h3,.trust-hub-question-grid h3,.trust-hub-topic-grid h3{
    font-size:1.25rem;
  }
}
.oem-odm-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.6;
  overflow:clip;
}
.oem-odm-page .section{
  padding-block:84px;
}
.oem-odm-page .section-heading{
  margin:0 auto 44px;
  max-width:850px;
  text-align:center;
}
.oem-odm-page h1,.oem-odm-page h2,.oem-odm-page h3{
  color:var(--color-espresso);
  font-family:var(--font-heading);
}
.oem-odm-page h2{
  font-size:var(--font-size-h2);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.oem-hero{
  background:radial-gradient(circle at 84% 15%, rgba(255, 227, 216, 0.58), transparent 32%), var(--color-ivory);
  padding-block:56px 76px;
}
.oem-hero-copy{
  min-width:0;
}
.oem-hero-copy .breadcrumbs{
  margin-bottom:26px;
}
.oem-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  letter-spacing:0.08em;
  margin:0 0 20px;
  padding:7px 14px;
  text-transform:uppercase;
}
.oem-badge,.oem-hero h1{
  font-weight:var(--font-weight-semibold);
}
.oem-hero h1{
  font-size:var(--font-size-h1);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:700px;
}
.oem-hero-answer{
  font-size:var(--font-size-lede);
  margin-bottom:26px;
  max-width:680px;
}
.oem-card-tags,.oem-eeat-links,.oem-hero-actions,.oem-product-actions,.oem-tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.oem-tag-list{
  margin-bottom:32px;
}
.oem-card-tags span,.oem-tag-list span{
  background:rgba(255, 255, 255, 0.72);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.74rem;
  font-weight:var(--font-weight-semibold);
  padding:6px 11px;
}
.oem-hero-actions{
  gap:14px;
}
.oem-odm-page .button{
  gap:9px;
  min-height:50px;
  padding-inline:23px;
}
.oem-odm-page .button svg,.oem-odm-page .text-link svg{
  height:18px;
  width:18px;
}
.oem-hero-media,.oem-packaging-grid figure{
  background:var(--color-soft-beige);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.oem-hero-media img{
  aspect-ratio:4 / 3;
  display:block;
  -o-object-fit:cover;
     object-fit:cover;
  -o-object-position:62% center;
     object-position:62% center;
  width:100%;
}
.oem-buyers-section,.oem-packaging-section,.oem-production-section,.oem-products-section,.oem-quick-section,.oem-rfq-section{
  background:var(--color-warm-white);
}
.oem-comparison-section,.oem-export-section,.oem-faq-section,.oem-scent-section{
  background:var(--color-soft-beige);
}
.oem-checklist-section,.oem-timeline-section{
  background:var(--color-ivory);
}
.oem-quick-answer{
  margin:0 auto 44px;
  max-width:900px;
  padding:0;
  text-align:center;
}
.oem-quick-answer h2{
  margin-bottom:18px;
}
.oem-buyers-grid article,.oem-export-grid article,.oem-quick-grid article,.oem-scent-grid article{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:0 10px 28px rgba(62, 39, 35, 0.05);
  min-width:0;
  padding:24px;
}
.oem-icon{
  align-items:center;
  background:var(--color-soft-peach);
  border-radius:14px;
  color:var(--color-coral);
  display:inline-flex;
  height:46px;
  justify-content:center;
  margin-bottom:20px;
  width:46px;
}
.oem-icon svg{
  height:23px;
  width:23px;
}
.oem-odm-page article h3{
  font-size:1.12rem;
  line-height:1.35;
  margin-bottom:10px;
}
.oem-odm-page article p{
  font-size:0.94rem;
  margin-bottom:0;
}
.oem-intent-nav{
  margin-top:32px;
}
.oem-intent-nav a{
  align-items:center;
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  color:var(--color-espresso);
  display:grid;
  font-size:0.9rem;
  font-weight:var(--font-weight-semibold);
  gap:10px;
  grid-template-columns:34px minmax(0, 1fr) 18px;
  min-width:0;
  padding:18px;
}
.oem-intent-nav a>svg:first-child{
  background:var(--color-soft-peach);
  border-radius:10px;
  color:var(--color-coral);
  height:34px;
  padding:8px;
  width:34px;
}
.oem-intent-nav a>svg:last-child{
  color:var(--color-champagne);
  height:18px;
  width:18px;
}
.oem-table-wrap{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(62, 39, 35, 0.05);
  overflow-x:auto;
  scrollbar-color:var(--color-champagne) var(--color-soft-beige);
}
.oem-table-wrap:focus-visible{
  outline:2px solid var(--color-coral);
  outline-offset:3px;
}
.oem-table-wrap table{
  border-collapse:collapse;
  margin:0;
  min-width:820px;
  width:100%;
}
.oem-service-table{
  min-width:1180px !important;
}
.oem-table-wrap caption{
  height:1px;
  overflow:hidden;
  position:absolute;
  width:1px;
  clip:rect(0, 0, 0, 0);
}
.oem-table-wrap td,.oem-table-wrap th{
  border-bottom:1px solid var(--color-champagne-soft);
  color:var(--color-cocoa);
  font-size:0.84rem;
  line-height:1.5;
  padding:17px 18px;
  text-align:left;
  vertical-align:top;
}
.oem-table-wrap thead th{
  background:var(--color-champagne-light);
}
.oem-table-wrap tbody th,.oem-table-wrap thead th{
  color:var(--color-espresso);
  font-weight:var(--font-weight-semibold);
}
.oem-table-wrap tbody th{
  background:rgba(255, 248, 242, 0.7);
}
.oem-product-grid{
  margin-top:48px;
}
.oem-product-grid>article{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:0 10px 30px rgba(62, 39, 35, 0.05);
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
}
.oem-product-visual{
  align-items:center;
  background:linear-gradient(135deg, var(--color-soft-peach), var(--color-ivory));
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:center;
  min-height:118px;
  padding:20px;
  text-align:center;
}
.oem-product-visual svg{
  color:var(--color-coral);
  height:36px;
  width:36px;
}
.oem-product-visual h3{
  font-size:1.35rem !important;
  margin:0 !important;
}
.oem-product-copy{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:22px;
}
.oem-card-tags{
  margin:16px 0 20px;
}
.oem-product-actions{
  margin-top:auto;
}
.oem-product-actions .button{
  flex:1 1 130px;
  font-size:0.78rem;
  min-height:42px;
  padding:10px 14px;
}
.oem-scent-grid dd,.oem-scent-grid dl{
  margin:0;
}
.oem-scent-grid dl{
  display:grid;
  gap:13px;
}
.oem-scent-grid dl div{
  border-top:1px solid var(--color-champagne-soft);
  padding-top:12px;
}
.oem-scent-grid dt{
  color:var(--color-muted-brown);
  font-size:0.72rem;
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.oem-scent-grid dd{
  color:var(--color-cocoa);
  font-size:0.88rem;
}
.oem-packaging-grid{
  align-items:center;
  -moz-column-gap:clamp(40px, 4vw, 64px);
       column-gap:clamp(40px, 4vw, 64px);
  display:grid;
  grid-template-columns:minmax(390px, 0.88fr) minmax(0, 1.12fr);
}
.oem-packaging-grid figure img{
  aspect-ratio:1 / 1;
  display:block;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.oem-packaging-list{
  display:grid;
  gap:14px;
  margin-top:30px;
}
.oem-packaging-list article{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  display:grid;
  gap:15px;
  grid-template-columns:42px minmax(0, 1fr);
  padding:18px;
}
.oem-packaging-list article>svg{
  background:var(--color-soft-peach);
  border-radius:12px;
  color:var(--color-coral);
  height:42px;
  padding:10px;
  width:42px;
}
.oem-packaging-list h3{
  font-family:var(--font-body) !important;
  font-size:0.98rem !important;
  margin-bottom:4px !important;
}
.oem-timeline{
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}
.oem-timeline:before{
  background:var(--color-champagne);
  content:"";
  height:1px;
  left:12.5%;
  position:absolute;
  right:12.5%;
  top:49px;
}
.oem-timeline li{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  padding:28px;
  position:relative;
  z-index:1;
}
.oem-timeline li>span{
  align-items:center;
  background:var(--color-coral);
  border-radius:50%;
  color:var(--color-white);
  display:inline-flex;
  font-size:0.78rem;
  font-weight:var(--font-weight-semibold);
  height:42px;
  justify-content:center;
  margin-bottom:20px;
  width:42px;
}
.oem-timeline p{
  font-size:0.86rem;
}
.oem-timeline strong{
  color:var(--color-espresso);
}
.oem-section-link{
  margin:34px 0 0;
  text-align:center;
}
.oem-odm-page .text-link{
  align-items:center;
  display:inline-flex;
  gap:7px;
}
.oem-production-grid>article{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  padding:34px;
}
.oem-production-grid>article>h3{
  font-size:1.45rem;
}
.oem-production-items{
  margin:24px 0;
}
.oem-production-grid li,.oem-production-items span{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:11px;
  font-size:0.88rem;
  padding:13px;
}
.oem-production-grid ul{
  display:grid;
  gap:10px;
  list-style:none;
  margin:24px 0;
  padding:0;
}
.oem-production-grid li{
  align-items:center;
  display:flex;
  gap:10px;
}
.oem-production-grid li svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:18px;
  width:18px;
}
.oem-rfq-note,.oem-scope-note{
  align-items:flex-start;
  background:var(--color-champagne-light);
  border-left:3px solid var(--color-champagne);
  border-radius:8px;
  display:flex;
  font-size:0.88rem;
  gap:10px;
  margin:28px 0 0;
  padding:16px 18px;
}
.oem-scope-note svg{
  flex:0 0 auto;
  height:18px;
  width:18px;
}
.oem-export-grid article .text-link{
  margin-top:20px;
}
.oem-checklist-grid{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  display:grid;
  gap:12px 24px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-inline:auto;
  max-width:920px;
  padding:32px;
}
.oem-checklist-grid div{
  align-items:center;
  color:var(--color-espresso);
  display:flex;
  font-size:0.9rem;
  font-weight:var(--font-weight-medium);
  gap:10px;
  padding:10px 0;
}
.oem-checklist-grid svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:19px;
  width:19px;
}
.oem-eeat-links{
  justify-content:center;
  margin-top:36px;
}
.oem-eeat-links a{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.8rem;
  font-weight:var(--font-weight-semibold);
  padding:8px 13px;
}
.oem-faq-section .faq-list{
  align-items:start;
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.oem-rfq-grid{
  align-items:start;
  -moz-column-gap:clamp(40px, 4vw, 64px);
       column-gap:clamp(40px, 4vw, 64px);
  display:grid;
  grid-template-columns:minmax(390px, 0.88fr) minmax(0, 1.12fr);
}
.oem-rfq-guide{
  padding:12px 0;
}
.oem-rfq-guide ul{
  display:grid;
  gap:13px;
  list-style:none;
  margin:28px 0 0;
  padding:0;
}
.oem-rfq-guide li{
  align-items:center;
  display:flex;
  gap:10px;
}
.oem-rfq-guide li svg{
  color:var(--color-coral);
  height:18px;
  width:18px;
}
.oem-rfq-form{
  background:var(--color-ivory);
  border-color:var(--color-champagne-soft);
  border-radius:22px;
  box-shadow:var(--shadow-card);
}
.oem-rfq-form .wpcf7-form{
  display:grid;
  gap:18px 20px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:26px;
}
.oem-rfq-form .wpcf7-form>p{
  margin:0;
  min-width:0;
}
.oem-rfq-form .wpcf7-form>p:has(.wpcf7-submit),.oem-rfq-form .wpcf7-form>p:has(textarea),.oem-rfq-form .wpcf7-response-output{
  grid-column:1 /  -1;
}
.oem-rfq-form .wpcf7-form-control-wrap,.oem-rfq-form .wpcf7-form-control:not(.wpcf7-submit){
  width:100%;
}
.oem-rfq-form textarea{
  min-height:132px;
}
@media (max-width: 1024px){
  .oem-hero-grid,.oem-packaging-grid,.oem-rfq-grid{
    gap:40px;
  }

  .oem-buyers-grid,.oem-export-grid,.oem-faq-section .faq-list,.oem-hero-grid,.oem-intent-nav,.oem-packaging-grid,.oem-product-grid,.oem-quick-grid,.oem-rfq-grid,.oem-scent-grid,.oem-timeline{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px){
  .oem-odm-page .section{
    padding-block:64px;
  }

  .oem-odm-page .section-heading{
    margin-bottom:36px;
  }

  .oem-hero{
    padding-block:42px 58px;
  }

  .oem-hero-grid,.oem-packaging-grid,.oem-production-grid,.oem-rfq-grid{
    gap:40px;
    grid-template-columns:1fr;
  }

  .oem-hero h1{
    font-size:clamp(2.35rem, 11vw, 2.6rem);
  }

  .oem-hero-media{
    order:-1;
  }

  .oem-quick-answer{
    padding:0;
  }

  .oem-checklist-grid{
    grid-template-columns:1fr;
    padding:24px;
  }

  .oem-table-wrap{
    margin-right:-4px;
  }

  .oem-table-wrap td,.oem-table-wrap th{
    padding:14px;
  }

  .oem-timeline:before{
    display:none;
  }

  .oem-rfq-form .wpcf7-form{
    grid-template-columns:1fr;
  }

  .oem-rfq-form .wpcf7-form>p:has(.wpcf7-submit),.oem-rfq-form .wpcf7-form>p:has(textarea),.oem-rfq-form .wpcf7-response-output{
    grid-column:1;
  }
}
@media (max-width: 600px){
  .oem-buyers-grid,.oem-export-grid,.oem-faq-section .faq-list,.oem-intent-nav,.oem-product-grid,.oem-production-items,.oem-quick-grid,.oem-scent-grid,.oem-timeline{
    grid-template-columns:1fr;
  }

  .oem-hero-actions,.oem-product-actions{
    flex-direction:column;
  }

  .oem-odm-page .button,.oem-product-actions .button{
    width:100%;
  }

  .oem-product-actions .button{
    flex:0 0 auto;
  }
}
.product-list-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.65;
  overflow:clip;
}
.product-list-page .section{
  padding-block:88px;
}
.product-list-page h1,.product-list-page h2,.product-list-page h3{
  color:var(--color-espresso);
  font-family:var(--font-heading);
}
.product-list-page h2{
  font-size:var(--font-size-h2);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.product-list-page .section-heading{
  margin:0 auto 44px;
  max-width:850px;
  text-align:center;
}
.product-list-hero{
  background:radial-gradient(circle at 84% 14%, rgba(255, 227, 216, 0.7), transparent 34%), var(--color-ivory);
  padding-block:52px 76px;
}
.product-list-hero-copy,.product-list-qc-grid>*,.product-list-rfq-grid>*{
  min-width:0;
}
.product-list-hero-copy .breadcrumbs{
  margin-bottom:25px;
}
.product-list-badge,.product-list-scope{
  align-items:center;
  border-radius:999px;
  display:inline-flex;
  width:-moz-fit-content;
  width:fit-content;
}
.product-list-badge{
  background:var(--color-soft-peach);
  color:var(--color-coral);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  margin:0 0 20px;
  padding:7px 14px;
  text-transform:uppercase;
}
.product-list-hero h1{
  font-size:var(--font-size-h1);
  font-weight:var(--font-weight-semibold);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:720px;
}
.product-list-hero-answer{
  font-size:var(--font-size-lede);
  margin-bottom:24px;
  max-width:700px;
}
.product-list-checks,.product-list-hero-points,.product-list-rfq-guide ul{
  list-style:none;
  padding:0;
}
.product-list-hero-points{
  display:grid;
  gap:10px 20px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin:0 0 30px;
}
.product-list-checks li,.product-list-hero-points li,.product-list-rfq-guide li{
  align-items:flex-start;
  display:flex;
  gap:10px;
}
.product-list-checks svg,.product-list-hero-points svg,.product-list-rfq-guide svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:18px;
  margin-top:4px;
  stroke-width:2.3;
  width:18px;
}
.product-list-actions,.product-list-card-actions,.product-list-eeat-links,.product-list-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.product-list-actions{
  gap:14px;
}
.product-list-page .button{
  gap:9px;
  min-height:50px;
  padding-inline:23px;
}
.product-list-page .button svg,.product-list-page .text-link svg,.product-list-related-grid svg{
  height:18px;
  width:18px;
}
.product-list-hero-media,.product-list-qc-grid figure{
  background:var(--color-soft-beige);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.product-list-hero-media{
  aspect-ratio:4 / 3;
}
.product-list-hero-media img,.product-list-qc-grid figure img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.product-list-image-placeholder{
  align-items:center;
  background:linear-gradient(145deg, var(--color-ivory), var(--color-soft-beige));
  color:var(--color-muted-brown);
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
  justify-content:center;
  min-height:220px;
  width:100%;
}
.product-list-image-placeholder svg{
  color:var(--color-champagne);
  height:36px;
  width:36px;
}
.product-list-custom-section,.product-list-faq-section,.product-list-oem-section,.product-list-overview-section,.product-list-planning-section{
  background:var(--color-warm-white);
}
.product-list-categories-section,.product-list-compare-section,.product-list-qc-section,.product-list-related-section{
  background:var(--color-ivory);
}
.product-list-intent-section,.product-list-process-section,.product-list-rfq-section{
  background:var(--color-soft-beige);
}
.product-list-quick-answer{
  align-items:center;
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-left:4px solid var(--color-coral);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  display:grid;
  gap:40px;
  grid-template-columns:minmax(260px, 0.72fr) minmax(0, 1.28fr);
  padding:34px 38px;
}
.product-list-icon-card h3,.product-list-icon-card p,.product-list-quick-answer h2,.product-list-quick-answer p{
  margin-bottom:0;
}
.product-list-category-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:30px;
}
.product-list-category-nav a,.product-list-scope,.product-list-tags span{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.78rem;
  font-weight:var(--font-weight-semibold);
  padding:7px 12px;
}
.product-list-category-nav a:focus-visible,.product-list-category-nav a:hover{
  border-color:var(--color-coral);
  color:var(--color-coral);
}
.product-list-card,.product-list-icon-card,.product-list-planning-grid article{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  overflow:hidden;
  transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease;
}
.product-list-card:hover,.product-list-icon-card:hover{
  border-color:rgba(231, 111, 81, 0.45);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.product-list-card-media{
  aspect-ratio:4 / 3;
  background:var(--color-soft-beige);
  display:block;
  overflow:hidden;
}
.product-list-card-media img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  transition:transform 240ms ease;
  width:100%;
}
.product-list-card:hover .product-list-card-media img{
  transform:scale(1.025);
}
.product-list-card-body{
  display:flex;
  flex-direction:column;
  min-height:340px;
  padding:25px;
}
.product-list-card h3{
  font-size:var(--font-size-h3);
  margin-bottom:10px;
}
.product-list-card-body>p,.product-list-tags{
  margin-bottom:18px;
}
.product-list-best{
  border-top:1px solid var(--color-champagne-soft);
  font-size:var(--font-size-small);
  padding-top:16px;
}
.product-list-card-actions{
  justify-content:space-between;
  margin-top:auto;
  padding-top:4px;
}
.product-list-card-actions .text-link,.product-list-icon-card>span,.product-list-related-grid a{
  align-items:center;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  gap:7px;
}
.product-list-icon-card{
  align-items:flex-start;
  color:var(--color-cocoa);
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:24px;
  position:relative;
}
.product-list-icon-card>svg,.product-list-planning-grid article>svg{
  background:var(--color-soft-peach);
  border-radius:12px;
  color:var(--color-coral);
  height:42px;
  margin-bottom:20px;
  padding:10px;
  width:42px;
}
.product-list-icon-card h3{
  font-size:1.2rem;
  line-height:1.25;
  margin-bottom:9px;
}
.product-list-icon-card p{
  flex:1;
  font-size:var(--font-size-small);
}
.product-list-icon-card>span{
  margin-top:18px;
}
.product-list-icon-card .product-list-scope{
  color:var(--color-muted-brown);
}
.product-list-table-wrap{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  overflow-x:auto;
  scrollbar-width:thin;
}
.product-list-table-wrap:focus-visible{
  outline:3px solid rgba(231, 111, 81, 0.28);
  outline-offset:3px;
}
.product-list-table-wrap table{
  border-collapse:collapse;
  min-width:980px;
  width:100%;
}
.product-list-table-wrap td,.product-list-table-wrap th{
  border-bottom:1px solid var(--color-champagne-soft);
  padding:17px 18px;
  text-align:left;
  vertical-align:top;
}
.product-list-table-wrap thead th{
  background:var(--color-soft-beige);
  color:var(--color-espresso);
  font-size:var(--font-size-label);
}
.product-list-table-wrap tbody th{
  font-family:var(--font-heading);
  min-width:190px;
}
.product-list-table-wrap tbody tr:last-child>*{
  border-bottom:0;
}
.product-list-centered-link{
  margin:36px 0 0;
  text-align:center;
}
.product-list-timeline{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  position:relative;
}
.product-list-timeline:before{
  background:var(--color-champagne-soft);
  content:"";
  height:1px;
  left:8%;
  position:absolute;
  right:8%;
  top:24px;
}
.product-list-timeline article{
  padding:0 10px;
  position:relative;
}
.product-list-timeline article>span{
  background:var(--color-coral);
  border-radius:50%;
  box-shadow:0 0 0 7px var(--color-soft-beige);
  color:var(--color-white);
  display:grid;
  font-weight:var(--font-weight-bold);
  height:48px;
  margin-bottom:20px;
  place-items:center;
  position:relative;
  width:48px;
  z-index:1;
}
.product-list-timeline h3{
  font-size:1.2rem;
}
.product-list-timeline p{
  font-size:0.88rem;
}
.product-list-eeat-links{
  margin-top:30px;
}
.product-list-eeat-links a{
  border-bottom:1px solid var(--color-champagne);
  color:var(--color-espresso);
  font-weight:var(--font-weight-semibold);
  padding-bottom:2px;
}
.product-list-qc-grid figure{
  aspect-ratio:57 / 62;
}
.product-list-qc-grid h2{
  margin-bottom:18px;
}
.product-list-checks{
  display:grid;
  gap:12px;
  margin:24px 0 0;
}
.product-list-planning-grid article{
  padding:34px;
}
.product-list-planning-grid h2{
  font-size:clamp(1.55rem, 1vw + 1.3rem, 2rem);
}
.product-list-related-grid a{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  color:var(--color-espresso);
  justify-content:space-between;
  min-height:74px;
  padding:18px 20px;
}
.product-list-related-grid a:focus-visible,.product-list-related-grid a:hover{
  border-color:var(--color-coral);
  color:var(--color-coral);
}
.product-list-faq-section .faq-list{
  display:grid;
  gap:14px 20px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.product-list-faq-section .faq-item{
  align-self:start;
  margin:0;
  min-width:0;
}
.product-list-rfq-grid{
  align-items:start;
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  grid-template-columns:minmax(280px, 4fr) minmax(0, 8fr);
  padding:42px;
}
.product-list-rfq-guide ul{
  display:grid;
  gap:12px;
  margin:24px 0;
}
.product-list-rfq-note{
  background:var(--color-soft-peach);
  border-left:3px solid var(--color-coral);
  border-radius:0 10px 10px 0;
  font-size:var(--font-size-small);
  padding:16px 18px;
}
.product-list-rfq-form{
  background:var(--color-white);
  margin:0;
}
.product-list-rfq-form .wpcf7-form{
  display:grid;
  gap:14px 16px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.product-list-rfq-form .wpcf7-form>p{
  margin:0;
  min-width:0;
}
.product-list-rfq-form .wpcf7-form>p:has(.wpcf7-submit),.product-list-rfq-form .wpcf7-form>p:has(textarea),.product-list-rfq-form .wpcf7-response-output{
  grid-column:1 /  -1;
}
@media (max-width: 1120px){

  .product-list-intent-grid,.product-list-related-grid,.product-list-support-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .product-list-timeline{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .product-list-timeline:before{
    display:none;
  }
}
@media (max-width: 900px){
  .product-list-hero-grid,.product-list-qc-grid,.product-list-rfq-grid{
    gap:38px;
  }

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

  .product-list-card-grid,.product-list-custom-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .product-list-card-body{
    min-height:325px;
  }
}
@media (max-width: 767px){
  .product-list-page .section{
    padding-block:64px;
  }

  .product-list-page .section-heading{
    margin-bottom:34px;
  }

  .product-list-hero{
    padding-block:40px 58px;
  }

  .product-list-hero-grid,.product-list-planning-grid,.product-list-qc-grid,.product-list-quick-answer,.product-list-rfq-grid{
    grid-template-columns:1fr;
  }

  .product-list-hero h1{
    font-size:clamp(2.35rem, 11vw, 2.6rem);
  }

  .product-list-hero-media{
    order:-1;
  }

  .product-list-quick-answer{
    gap:12px;
    padding:27px 24px;
  }

  .product-list-timeline{
    gap:28px;
    grid-template-columns:1fr;
  }

  .product-list-timeline article{
    padding-left:66px;
  }

  .product-list-timeline article>span{
    left:0;
    position:absolute;
    top:0;
  }

  .product-list-faq-section .faq-list{
    grid-template-columns:1fr;
  }

  .product-list-rfq-grid{
    padding:28px;
  }

  .product-list-rfq-form .wpcf7-form{
    grid-template-columns:1fr;
  }

  .product-list-rfq-form .wpcf7-form>p:has(.wpcf7-submit),.product-list-rfq-form .wpcf7-form>p:has(textarea),.product-list-rfq-form .wpcf7-response-output{
    grid-column:1;
  }
}
@media (max-width: 600px){
  .product-list-card-grid,.product-list-custom-grid,.product-list-hero-points,.product-list-intent-grid,.product-list-related-grid,.product-list-support-grid{
    grid-template-columns:1fr;
  }

  .product-list-actions,.product-list-card-actions{
    align-items:stretch;
    flex-direction:column;
  }

  .product-list-page .button{
    width:100%;
  }

  .product-list-card-body{
    min-height:0;
  }

  .product-list-card-actions .text-link{
    justify-content:space-between;
    padding-block:5px;
  }

  .product-list-category-nav{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .product-list-category-nav a{
    display:grid;
    min-height:42px;
    padding:8px 10px;
    place-items:center;
    text-align:center;
  }

  .product-list-rfq-grid{
    padding:24px 18px;
  }
}
@media (max-width: 390px){
  .product-list-category-nav{
    grid-template-columns:1fr;
  }
}
.product-category-detail-page{
  background:var(--color-warm-white);
  max-width:100%;
  overflow-x:hidden;
  overflow:clip;
  width:100%;
}
.product-category-detail-page .container{
  max-width:100%;
  width:min(calc(100% - 40px), var(--container));
}
.product-category-detail-page .section{
  padding-block:92px;
}
.product-category-detail-page .section-muted{
  background:var(--color-soft-beige);
}
.product-category-detail-page .section-heading{
  margin:0 auto 44px;
  max-width:760px;
  text-align:center;
}
.product-category-detail-page .section-heading>p:last-child{
  color:var(--color-muted-brown);
}
.product-category-hero{
  background:linear-gradient(135deg, var(--color-warm-white), var(--color-ivory) 54%, var(--color-soft-beige));
  padding:48px 0 88px;
}
.product-category-hero-grid{
  align-items:center;
  display:grid;
  gap:64px;
  grid-template-columns:minmax(0, 1.05fr) minmax(420px, 0.95fr);
}
.product-category-brief-grid>*,.product-category-hero-grid>*{
  max-width:100%;
  min-width:0;
}
.product-category-breadcrumb{
  align-items:center;
  color:var(--color-muted-brown);
  display:flex;
  font-size:0.8125rem;
  gap:8px;
  margin-bottom:40px;
}
.product-category-breadcrumb svg{
  height:14px;
  width:14px;
}
.product-category-breadcrumb a:focus-visible,.product-category-breadcrumb a:hover{
  color:var(--color-coral);
}
.product-category-hero h1{
  font-size:clamp(2.5rem, 4.5vw, 3.5rem);
  max-width:15ch;
}
.product-category-hero-answer{
  color:var(--color-cocoa);
  font-size:var(--font-size-lede);
  max-width:68ch;
  overflow-wrap:anywhere;
}
.product-category-hero-tags,.product-category-spec-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.product-category-hero-tags{
  margin:28px 0 34px;
}
.product-category-hero-tags span,.product-category-spec-tags span{
  background:rgba(255, 255, 255, 0.72);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.75rem;
  font-weight:600;
  padding:7px 12px;
}
.product-category-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.product-category-actions .button{
  gap:9px;
  min-width:0;
}
.product-category-actions svg{
  height:18px;
  width:18px;
}
.product-category-hero-media{
  min-width:0;
  position:relative;
}
.product-category-hero-media>.product-category-image-placeholder,.product-category-hero-media>img{
  aspect-ratio:1 / 1;
  border-radius:24px;
  box-shadow:var(--shadow-card-hover);
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.product-category-facts{
  backdrop-filter:blur(14px);
  background:rgba(255, 253, 248, 0.94);
  border:1px solid rgba(201, 164, 106, 0.42);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  display:grid;
  gap:0;
  margin:-72px auto 0;
  position:relative;
  width:calc(100% - 48px);
}
.product-category-facts span{
  color:var(--color-muted-brown);
  display:grid;
  font-size:0.8125rem;
  gap:12px;
  grid-template-columns:120px 1fr;
  padding:13px 18px;
}
.product-category-facts span+span{
  border-top:1px solid var(--color-champagne-light);
}
.product-category-facts strong{
  color:var(--color-espresso);
}
.product-category-image-placeholder{
  background:linear-gradient(145deg, var(--color-ivory), var(--color-soft-beige));
  border:1px dashed var(--color-champagne);
  color:var(--color-muted-brown);
  display:grid;
  gap:12px;
  min-height:260px;
  place-content:center;
  text-align:center;
}
.product-category-image-placeholder svg{
  color:var(--color-coral);
  height:44px;
  margin-inline:auto;
  width:44px;
}
.product-category-brief-grid{
  align-items:start;
  display:grid;
  gap:48px;
  grid-template-columns:minmax(0, 7fr) minmax(420px, 5fr);
}
.product-category-brief-copy{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  padding:40px;
}
.product-category-brief-stack{
  display:grid;
  gap:22px;
  min-width:0;
}
.product-category-brief-notes{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:0 12px 30px rgba(62, 39, 35, 0.05);
  padding:28px 30px;
}
.product-category-brief-notes>div{
  align-items:start;
  display:grid;
  gap:12px;
  grid-template-columns:36px minmax(0, 1fr);
  padding-block:13px;
}
.product-category-brief-notes>div+div{
  border-top:1px solid var(--color-champagne-light);
}
.product-category-brief-notes svg{
  color:var(--color-coral);
  width:20px;
}
.product-category-brief-notes span,.product-category-brief-notes strong{
  display:block;
}
.product-category-brief-notes span{
  color:var(--color-muted-brown);
  font-size:0.875rem;
}
.product-category-brief-notes strong{
  color:var(--color-espresso);
  margin-bottom:2px;
}
.product-category-brief-notes p{
  border-top:1px solid var(--color-champagne-light);
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  margin:0;
  padding-top:14px;
}
.product-category-brief-notes a{
  color:var(--color-coral);
  font-size:0.875rem;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}
.product-category-check-list{
  display:grid;
  gap:14px 24px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  list-style:none;
  margin:30px 0 0;
  padding:0;
}
.product-category-check-list li{
  align-items:flex-start;
  color:var(--color-cocoa);
  display:flex;
  gap:10px;
}
.product-category-check-list svg{
  color:var(--color-coral);
  flex:0 0 auto;
  width:19px;
}
.product-category-brief-decisions{
  border-top:1px solid var(--color-champagne-light);
  margin-top:32px;
  padding-top:28px;
}
.product-category-brief-decisions h3{
  font-size:1.2rem;
  margin-bottom:18px;
}
.product-category-brief-decisions ol{
  counter-reset:brief-decision;
  display:grid;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
}
.product-category-brief-decisions li{
  align-items:start;
  color:var(--color-cocoa);
  counter-increment:brief-decision;
  display:grid;
  gap:12px;
  grid-template-columns:34px minmax(0, 1fr);
  line-height:1.65;
}
.product-category-brief-decisions li:before{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:50%;
  color:var(--color-coral);
  content:counter(brief-decision, decimal-leading-zero);
  display:grid;
  font-size:0.75rem;
  font-weight:700;
  height:32px;
  place-items:center;
  width:32px;
}
.product-category-brief-example{
  background:var(--color-warm-white);
  border-left:3px solid var(--color-coral);
  border-radius:0 14px 14px 0;
  margin-top:26px;
  padding:22px 24px;
}
.product-category-brief-example .eyebrow{
  margin-bottom:8px;
}
.product-category-brief-example blockquote{
  color:var(--color-cocoa);
  font-size:0.925rem;
  line-height:1.7;
  margin:0;
}
.product-category-sticky-form{
  min-width:0;
}
.product-category-rfq-form{
  background:var(--color-warm-white);
  border-color:var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  padding:28px;
}
.product-category-rfq-form h3{
  font-size:1.75rem;
  margin-bottom:8px;
}
.product-category-rfq-form>p{
  color:var(--color-muted-brown);
  margin-bottom:16px;
}
.product-category-rfq-form .inquiry-summary{
  border-radius:12px;
  margin-bottom:18px;
  padding:14px 16px;
}
.product-category-rfq-form .inquiry-summary p{
  font-size:0.8125rem;
  line-height:1.5;
  margin:5px 0 0;
}
.product-category-rfq-form .wpcf7-form{
  display:grid;
  gap:13px 16px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.product-category-rfq-form .wpcf7-form>p{
  font-size:0.8125rem;
  margin:0;
  min-width:0;
}
.product-category-rfq-form .wpcf7-form>p:nth-of-type(n+5){
  grid-column:1 /  -1;
}
.product-category-rfq-form input,.product-category-rfq-form select,.product-category-rfq-form textarea{
  width:100%;
}
.product-category-rfq-form input,.product-category-rfq-form select{
  min-height:44px;
}
.product-category-rfq-form textarea{
  min-height:108px;
}
.product-category-rfq-form input[type=submit]{
  background:var(--color-coral);
  border:0;
  box-shadow:var(--shadow-coral);
  color:var(--color-white);
  cursor:pointer;
  font-weight:700;
  min-height:46px;
}
.product-category-rfq-form input[type=submit]:focus-visible,.product-category-rfq-form input[type=submit]:hover{
  background:var(--color-coral-hover);
}
.product-category-answer-panel,.product-category-checklist-grid,.product-category-example,.product-category-two-card{
  align-items:center;
  display:grid;
  gap:56px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.product-category-answer-panel{
  background:var(--color-warm-white);
  border-left:4px solid var(--color-coral);
  border-radius:0 20px 20px 0;
  box-shadow:var(--shadow-card);
  padding:44px 48px;
}
.product-category-answer-panel p:last-child{
  color:var(--color-cocoa);
  font-size:var(--font-size-lede);
  margin:0;
}
.product-category-card-grid{
  align-items:stretch;
  display:grid;
  gap:22px;
}
.application-grid,.buyer-grid,.direction-grid,.sku-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.customization-grid,.manufacturing-grid,.packaging-grid,.quality-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.related-category-grid{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}
.product-category-direction-card,.product-category-icon-card,.product-category-related-card,.product-category-sku-card,.product-category-two-card article{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:0 12px 34px rgba(62, 39, 35, 0.055);
  min-width:0;
}
.product-category-direction-card,.product-category-icon-card,.product-category-related-card,.product-category-sku-card{
  height:100%;
}
.product-category-direction-card,.product-category-icon-card,.product-category-related-card,.product-category-two-card article{
  padding:28px;
}
.product-category-icon-card>svg,.product-category-two-card article>svg{
  background:var(--color-soft-peach);
  border:1px solid rgba(231, 111, 81, 0.16);
  border-radius:13px;
  box-sizing:border-box;
  color:var(--color-coral);
  height:46px;
  margin-bottom:20px;
  padding:11px;
  width:46px;
}
.product-category-direction-card h3,.product-category-icon-card h3,.product-category-related-card>span{
  font-size:1.25rem;
}
.product-category-direction-card p,.product-category-icon-card p,.product-category-related-card p{
  color:var(--color-muted-brown);
  margin-bottom:0;
}
.product-category-icon-card{
  transition:transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease;
}
.product-category-icon-card:hover{
  border-color:rgba(201, 164, 106, 0.72);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.product-category-direction-card>span,.product-category-sku-card>div>span{
  color:var(--color-coral);
  display:inline-flex;
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.08em;
  margin-bottom:14px;
  text-transform:uppercase;
}
.product-category-direction-card dl,.product-category-example dl{
  display:grid;
  gap:12px;
  margin:22px 0 0;
}
.product-category-direction-card dl div,.product-category-example dl div{
  border-top:1px solid var(--color-champagne-light);
  padding-top:12px;
}
.product-category-direction-card dt,.product-category-example dt{
  color:var(--color-espresso);
  font-size:0.75rem;
  font-weight:700;
  margin-bottom:4px;
  text-transform:uppercase;
}
.product-category-direction-card dd,.product-category-example dd{
  color:var(--color-muted-brown);
  font-size:0.875rem;
  margin:0;
}
.product-category-sku-card{
  overflow:hidden;
}
.product-category-sku-media{
  aspect-ratio:4 / 3;
  background:var(--color-ivory);
  display:block;
  overflow:hidden;
}
.product-category-sku-media .product-category-image-placeholder,.product-category-sku-media img{
  height:100%;
  min-height:0;
  -o-object-fit:cover;
     object-fit:cover;
  transition:transform 220ms ease;
  width:100%;
}
.product-category-sku-card:hover .product-category-sku-media img{
  transform:scale(1.025);
}
.product-category-sku-card>div{
  padding:26px;
}
.product-category-spec-tags{
  margin-top:20px;
}
.product-category-table-wrap{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  overflow-x:auto;
}
.product-category-table-wrap table{
  border-collapse:collapse;
  min-width:680px;
  width:100%;
}
.product-category-table-wrap td,.product-category-table-wrap th{
  border-bottom:1px solid var(--color-champagne-light);
  padding:17px 22px;
  text-align:left;
  vertical-align:top;
}
.product-category-table-wrap thead th{
  background:var(--color-espresso);
  color:var(--color-warm-white);
  font-family:var(--font-body);
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.product-category-table-wrap tbody th{
  color:var(--color-espresso);
  width:28%;
}
.product-category-table-wrap tbody td{
  color:var(--color-muted-brown);
}
.product-category-process{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  list-style:none;
  margin:0;
  padding:0;
}
.product-category-process li{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:0 10px 28px rgba(62, 39, 35, 0.045);
  padding:30px 24px;
  position:relative;
}
.product-category-process li>span{
  background:var(--color-coral);
  border-radius:50%;
  color:var(--color-white);
  display:grid;
  font-weight:700;
  height:42px;
  margin-bottom:20px;
  place-items:center;
  width:42px;
}
.product-category-process p{
  color:var(--color-muted-brown);
  margin:0;
}
.product-category-evidence-links,.product-category-inline-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin:36px 0 0;
}
.product-category-evidence-links a,.product-category-inline-links a{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.875rem;
  font-weight:600;
  padding:10px 16px;
}
.product-category-two-card article{
  align-self:stretch;
  padding:40px;
}
.product-category-checklist-grid{
  align-items:start;
}
.product-category-checklist{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  list-style:none;
  margin:0;
  padding:0;
}
.product-category-checklist li{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:12px;
  display:flex;
  gap:10px;
  padding:13px 15px;
}
.product-category-checklist svg{
  color:var(--color-coral);
  flex:0 0 auto;
  width:18px;
}
.product-category-example{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  padding:48px;
}
.product-category-scope-note{
  background:var(--color-soft-beige);
  border-radius:12px;
  color:var(--color-cocoa);
  display:flex;
  font-size:0.875rem;
  gap:10px;
  margin:26px 0 0;
  padding:14px 16px;
}
.product-category-scope-note svg{
  color:var(--color-coral);
  flex:0 0 auto;
  width:18px;
}
.product-category-related-card{
  display:flex;
  flex-direction:column;
  transition:transform 180ms ease,box-shadow 180ms ease;
}
.product-category-related-card:focus-visible,.product-category-related-card:hover{
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.product-category-related-card strong{
  align-items:center;
  color:var(--color-coral);
  display:flex;
  font-size:0.875rem;
  gap:8px;
  margin-top:auto;
  padding-top:20px;
}
.product-category-related-card strong svg{
  width:16px;
}
.product-category-detail-page .faq-list{
  align-items:start;
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.product-category-detail-page .faq-item{
  background:var(--color-warm-white);
  border-color:var(--color-champagne-soft);
  height:auto;
}
.product-category-evidence{
  background:var(--color-espresso);
}
.product-category-evidence .eyebrow,.product-category-evidence h2{
  color:var(--color-warm-white);
}
.product-category-evidence-links a{
  background:rgba(255, 255, 255, 0.08);
  border-color:rgba(232, 217, 190, 0.36);
  color:var(--color-warm-white);
}
.product-category-final-panel{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  max-width:920px;
  padding:56px;
  text-align:center;
}
.product-category-final-panel h2{
  margin-inline:auto;
  max-width:18ch;
}
.product-category-final-panel>p:not(.eyebrow){
  color:var(--color-muted-brown);
  margin-inline:auto;
  max-width:65ch;
}
.product-category-final-panel .product-category-actions{
  justify-content:center;
}
@media (min-width: 1100px){
  .product-category-sticky-form{
    position:sticky;
    top:110px;
  }
}
@media (max-width: 1099px){
  .product-category-brief-grid,.product-category-hero-grid{
    grid-template-columns:minmax(0, 1fr);
  }

  .product-category-hero-grid{
    gap:48px;
  }

  .product-category-hero-media{
    margin-inline:auto;
    max-width:680px;
  }

  .application-grid,.buyer-grid,.customization-grid,.direction-grid,.manufacturing-grid,.packaging-grid,.product-category-process,.quality-grid,.related-category-grid,.sku-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px){
  .product-category-detail-page .container{
    width:min(calc(100% - 28px), var(--container));
  }

  .product-category-detail-page .section{
    padding-block:64px;
  }

  .product-category-detail-page .section-heading{
    margin-bottom:32px;
  }

  .product-category-hero{
    padding:28px 0 64px;
  }

  .product-category-hero-grid{
    gap:36px;
  }

  .product-category-breadcrumb{
    margin-bottom:28px;
    overflow-x:auto;
    white-space:nowrap;
  }

  .product-category-hero h1{
    font-size:clamp(2.25rem, 10vw, 2.5rem);
    max-width:100%;
    overflow-wrap:anywhere;
  }

  .product-category-actions,.product-category-brief-copy,.product-category-brief-notes,.product-category-brief-stack,.product-category-hero-copy,.product-category-hero-tags,.product-category-rfq-form{
    max-width:100%;
    min-width:0;
  }

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

  .product-category-actions .button{
    justify-content:center;
    padding-inline:16px;
    text-align:center;
    white-space:normal;
  }

  .product-category-hero-tags span{
    max-width:100%;
  }

  .product-category-facts{
    margin-top:-38px;
    width:calc(100% - 24px);
  }

  .product-category-facts span{
    gap:2px;
    grid-template-columns:1fr;
  }

  .product-category-answer-panel,.product-category-brief-copy,.product-category-example,.product-category-final-panel,.product-category-two-card article{
    padding:28px 22px;
  }

  .product-category-rfq-form{
    padding:24px 20px;
  }

  .product-category-brief-example{
    padding:18px;
  }

  .product-category-rfq-form .wpcf7-form{
    grid-template-columns:minmax(0, 1fr);
  }

  .product-category-rfq-form .wpcf7-form>p{
    grid-column:1;
  }

  .product-category-answer-panel,.product-category-check-list,.product-category-checklist,.product-category-checklist-grid,.product-category-detail-page .faq-list,.product-category-example,.product-category-two-card{
    grid-template-columns:1fr;
  }

  .product-category-answer-panel,.product-category-checklist-grid,.product-category-example,.product-category-two-card{
    gap:28px;
  }

  .application-grid,.buyer-grid,.customization-grid,.direction-grid,.manufacturing-grid,.packaging-grid,.product-category-process,.quality-grid,.related-category-grid,.sku-grid{
    grid-template-columns:1fr;
  }

  .product-category-table-wrap{
    border-radius:16px;
    max-width:100%;
  }
}
@media (prefers-reduced-motion: reduce){
  .product-category-icon-card,.product-category-related-card,.product-category-sku-media img{
    transition:none;
  }
}
.guides-hub-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.65;
  overflow:clip;
}
.guides-hub-page .section{
  padding-block:88px;
}
.guides-hub-page h1,.guides-hub-page h2,.guides-hub-page h3{
  color:var(--color-espresso);
  font-family:var(--font-heading);
}
.guides-hub-page h2{
  font-size:var(--font-size-h2);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.guides-hub-page .section-heading{
  margin:0 auto 44px;
  max-width:850px;
  text-align:center;
}
.guides-hub-page .section-heading.row-heading{
  max-width:none;
  text-align:left;
}
.guides-hub-hero{
  background:radial-gradient(circle at 88% 12%, rgba(255, 227, 216, 0.68), transparent 32%), var(--color-ivory);
  padding-block:52px 76px;
}
.guides-hub-hero-grid{
  align-items:center;
  display:grid;
  gap:58px;
  grid-template-columns:minmax(0, 1.05fr) minmax(380px, 0.95fr);
}
.guides-hub-featured-card>*,.guides-hub-hero-copy{
  min-width:0;
}
.guides-hub-hero-copy .breadcrumbs{
  margin-bottom:25px;
}
.guides-hub-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  letter-spacing:0.08em;
  margin:0 0 20px;
  padding:7px 14px;
  text-transform:uppercase;
  width:-moz-fit-content;
  width:fit-content;
}
.guides-hub-badge,.guides-hub-hero h1{
  font-weight:var(--font-weight-semibold);
}
.guides-hub-hero h1{
  font-size:var(--font-size-h1);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:720px;
}
.guides-hub-answer{
  font-size:var(--font-size-lede);
  margin-bottom:28px;
  max-width:700px;
}
.guides-hub-actions,.guides-hub-eeat-links,.guides-hub-featured-actions,.guides-hub-tags{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
}
.guides-hub-actions{
  gap:14px;
}
.guides-hub-page .button{
  gap:9px;
  min-height:50px;
  padding-inline:23px;
}
.guides-hub-browse-grid strong svg,.guides-hub-page .button svg,.guides-hub-page .text-link svg,.guides-hub-product-grid a svg,.guides-hub-service-grid a>span svg,.guides-hub-stage-card span svg{
  height:18px;
  width:18px;
}
.guides-hub-tags{
  margin-top:24px;
}
.guides-hub-browse-grid>a>span,.guides-hub-meta span,.guides-hub-tags span{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.74rem;
  font-weight:var(--font-weight-semibold);
  padding:6px 11px;
}
.guides-hub-hero-media{
  aspect-ratio:4 / 3;
  background:var(--color-soft-beige);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
  position:relative;
}
.guides-hub-hero-media>img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.guides-hub-hero-media figcaption{
  align-items:center;
  backdrop-filter:blur(10px);
  background:rgba(255, 253, 248, 0.9);
  border:1px solid rgba(255, 255, 255, 0.7);
  border-radius:14px;
  bottom:18px;
  color:var(--color-espresso);
  display:flex;
  font-size:0.78rem;
  gap:12px;
  left:18px;
  line-height:1.4;
  padding:15px 17px;
  position:absolute;
  right:18px;
}
.guides-hub-hero-media figcaption svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:30px;
  width:30px;
}
.guides-hub-hero-media figcaption span{
  display:grid;
}
.guides-hub-image-placeholder{
  align-items:center;
  background:linear-gradient(145deg, var(--color-ivory), var(--color-soft-beige));
  color:var(--color-muted-brown);
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
  justify-content:center;
  min-height:240px;
  width:100%;
}
.guides-hub-image-placeholder svg{
  color:var(--color-champagne);
  height:38px;
  width:38px;
}
.guides-hub-faq-section,.guides-hub-featured-section,.guides-hub-overview-section,.guides-hub-products-section{
  background:var(--color-warm-white);
}
.guides-hub-browse-section,.guides-hub-checklist-section,.guides-hub-cta-section,.guides-hub-pathway-section,.guides-hub-stage-section{
  background:var(--color-soft-beige);
}
.guides-hub-latest-section,.guides-hub-services-section,.guides-hub-topic-section{
  background:var(--color-ivory);
}
.guides-hub-browse-grid>a,.guides-hub-icon-card,.guides-hub-pathway-card,.guides-hub-product-grid article,.guides-hub-stage-card,.guides-hub-topic-card{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  min-width:0;
  transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease;
}
.guides-hub-browse-grid>a,.guides-hub-icon-card,.guides-hub-pathway-card,.guides-hub-stage-card,.guides-hub-topic-card{
  align-items:flex-start;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:25px;
}
.guides-hub-browse-grid>a:hover,.guides-hub-icon-card:hover,.guides-hub-pathway-card:hover,.guides-hub-product-grid article:hover,.guides-hub-stage-card:hover,.guides-hub-topic-card:hover{
  border-color:rgba(231, 111, 81, 0.45);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.guides-hub-icon-card>svg,.guides-hub-stage-card>svg,.guides-hub-topic-card>svg{
  background:var(--color-soft-peach);
  border-radius:12px;
  color:var(--color-coral);
  height:44px;
  margin-bottom:20px;
  padding:10px;
  width:44px;
}
.guides-hub-browse-grid h3,.guides-hub-icon-card h3,.guides-hub-pathway-card h3,.guides-hub-product-grid h3,.guides-hub-stage-card h3,.guides-hub-topic-card h3{
  font-size:1.2rem;
  line-height:1.28;
  margin-bottom:10px;
}
.guides-hub-browse-grid p,.guides-hub-icon-card p,.guides-hub-pathway-card p,.guides-hub-product-grid p,.guides-hub-stage-card p,.guides-hub-topic-card p{
  color:var(--color-muted-brown);
  flex:1;
  font-size:var(--font-size-small);
  margin-bottom:0;
}
.guides-hub-browse-grid strong,.guides-hub-product-grid a,.guides-hub-service-grid a>span,.guides-hub-stage-card>span{
  align-items:center;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  gap:7px;
  margin-top:20px;
}
.guides-hub-pathway-card>div,.guides-hub-topic-card>div{
  border-top:1px solid var(--color-champagne-soft);
  display:grid;
  gap:7px;
  margin-top:20px;
  padding-top:15px;
  width:100%;
}
.guides-hub-pathway-card>div a,.guides-hub-topic-card>div a{
  color:var(--color-coral);
  font-size:0.78rem;
  font-weight:var(--font-weight-semibold);
}
.guides-hub-featured-card{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card-hover);
  display:grid;
  grid-template-columns:minmax(320px, 5fr) minmax(0, 7fr);
  overflow:hidden;
}
.guides-hub-featured-media{
  background:var(--color-soft-beige);
  display:grid;
  min-height:480px;
  overflow:hidden;
  place-items:center;
}
.guides-hub-featured-media>img{
  height:100%;
  -o-object-fit:contain;
     object-fit:contain;
  -o-object-position:center;
     object-position:center;
  width:100%;
}
.guides-hub-featured-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:44px;
}
.guides-hub-meta{
  align-items:center;
  color:var(--color-muted-brown);
  display:flex;
  flex-wrap:wrap;
  font-size:0.78rem;
  gap:10px;
  margin-bottom:20px;
}
.guides-hub-featured-body h3{
  font-size:clamp(1.65rem, 1.4vw + 1.3rem, 2.25rem);
  line-height:1.2;
  margin-bottom:16px;
}
.guides-hub-learn{
  display:grid;
  gap:9px;
  margin:22px 0 28px;
}
.guides-hub-learn span{
  align-items:flex-start;
  display:flex;
  font-size:var(--font-size-small);
  gap:9px;
}
.guides-hub-learn svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:18px;
  margin-top:3px;
  width:18px;
}
.guides-hub-browse-grid>a>span{
  color:var(--color-muted-brown);
  letter-spacing:0.06em;
  margin-bottom:18px;
  text-transform:uppercase;
}
.guides-hub-filter-panel{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  display:grid;
  gap:18px;
  margin-bottom:38px;
  padding:24px;
}
.guides-hub-page .guide-filter-form{
  grid-template-columns:minmax(240px, 1fr) minmax(210px, 0.34fr) auto auto;
}
.guides-hub-page .guide-channel-select,.guides-hub-page .guide-search-input{
  background:var(--color-warm-white);
  border-color:var(--color-champagne-soft);
  border-radius:12px;
  color:var(--color-espresso);
}
.guides-hub-page .guide-filter-chips a{
  background:var(--color-warm-white);
  border-color:var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
}
.guides-hub-page .guide-filter-chips a.is-active,.guides-hub-page .guide-filter-chips a:hover{
  background:var(--color-soft-peach);
  border-color:var(--color-coral);
  color:var(--color-coral);
}
.guides-hub-results-heading{
  align-items:end;
  display:flex;
  gap:24px;
  justify-content:space-between;
  margin-bottom:30px;
}
.guides-hub-results-heading h3,.guides-hub-results-heading p{
  margin-bottom:0;
}
.guides-hub-results-heading h3{
  font-size:1.5rem;
}
.guides-hub-page .guide-card-grid{
  gap:24px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.guides-hub-page .guide-card{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
}
.guides-hub-page .guide-card-media{
  aspect-ratio:4 / 3;
  background:var(--color-soft-beige);
  color:var(--color-muted-brown);
}
.guides-hub-page .guide-card-media span{
  border:0;
  color:var(--color-muted-brown);
  display:flex;
  flex-direction:column;
  gap:9px;
}
.guides-hub-page .guide-card-media span svg{
  color:var(--color-champagne);
  height:30px;
  width:30px;
}
.guides-hub-page .guide-card-body{
  padding:23px;
}
.guides-hub-page .guide-card h3,.guides-hub-page .guide-listing-section .guide-card h3{
  font-family:var(--font-heading);
  font-size:1.25rem;
  line-height:1.3;
}
.guides-hub-page .guide-card h3 a,.guides-hub-page .guide-listing-section .guide-card h3 a{
  color:var(--color-espresso);
}
.guides-hub-page .post-meta{
  color:var(--color-muted-brown);
  font-size:0.72rem;
}
.guides-hub-page .guide-card .text-link{
  color:var(--color-coral);
}
.guides-hub-product-grid article{
  display:flex;
  flex-direction:column;
  min-height:250px;
  padding:22px;
}
.guides-hub-service-grid .guides-hub-icon-card{
  color:var(--color-cocoa);
}
.guides-hub-eeat-links{
  justify-content:center;
  margin-top:34px;
}
.guides-hub-eeat-links a{
  border-bottom:1px solid var(--color-champagne);
  color:var(--color-espresso);
  font-weight:var(--font-weight-semibold);
  padding-bottom:2px;
}
.guides-hub-faq-section .faq-list{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.guides-hub-faq-section .faq-item{
  align-self:start;
  margin:0;
  min-width:0;
}
.guides-hub-cta{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin-inline:auto;
  max-width:920px;
  padding:48px;
  text-align:center;
}
.guides-hub-cta p:not(.eyebrow){
  margin-inline:auto;
  max-width:700px;
}
.guides-hub-cta .guides-hub-actions{
  justify-content:center;
  margin-top:28px;
}
@media (max-width: 1120px){
  .guides-hub-browse-grid,.guides-hub-overview-grid,.guides-hub-pathway-grid,.guides-hub-service-grid,.guides-hub-stage-grid,.guides-hub-topic-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .guides-hub-product-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .guides-hub-hero-grid{
    gap:38px;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .guides-hub-featured-card{
    grid-template-columns:1fr;
  }

  .guides-hub-featured-media{
    aspect-ratio:16 / 9;
    min-height:380px;
  }

  .guides-hub-checklist-grid,.guides-hub-faq-section .faq-list,.guides-hub-page .guide-card-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px){
  .guides-hub-page .section{
    padding-block:64px;
  }

  .guides-hub-page .section-heading{
    margin-bottom:34px;
  }

  .guides-hub-hero{
    padding-block:40px 58px;
  }

  .guides-hub-hero-grid{
    grid-template-columns:1fr;
  }

  .guides-hub-hero h1{
    font-size:clamp(2.35rem, 11vw, 2.6rem);
  }

  .guides-hub-hero-media{
    order:-1;
  }

  .guides-hub-featured-body{
    padding:30px;
  }

  .guides-hub-page .guide-filter-form{
    grid-template-columns:1fr;
  }

  .guides-hub-results-heading{
    align-items:flex-start;
    flex-direction:column;
  }

  .guides-hub-cta{
    padding:34px 24px;
  }
}
@media (max-width: 600px){
  .guides-hub-browse-grid,.guides-hub-checklist-grid,.guides-hub-faq-section .faq-list,.guides-hub-overview-grid,.guides-hub-page .guide-card-grid,.guides-hub-pathway-grid,.guides-hub-product-grid,.guides-hub-service-grid,.guides-hub-stage-grid,.guides-hub-topic-grid{
    grid-template-columns:1fr;
  }

  .guides-hub-actions,.guides-hub-featured-actions{
    flex-direction:column;
  }

  .guides-hub-page .button{
    width:100%;
  }

  .guides-hub-featured-media{
    min-height:260px;
  }

  .guides-hub-featured-body{
    padding:26px 22px;
  }

  .guides-hub-product-grid article{
    min-height:0;
  }

  .guides-hub-eeat-links{
    align-items:center;
    flex-direction:column;
  }
}
.guide-detail-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.7;
  overflow:clip;
}
.guide-detail-page .section{
  padding-block:84px;
}
.guide-detail-page h1,.guide-detail-page h2,.guide-detail-page h3,.guide-detail-page h4{
  color:var(--color-espresso);
  font-family:var(--font-heading);
}
.guide-detail-page h2{
  font-weight:var(--font-weight-semibold);
  line-height:1.22;
}
.guide-detail-hero{
  background:radial-gradient(circle at 86% 12%, rgba(255, 227, 216, 0.64), transparent 32%), var(--color-ivory);
  padding-block:44px 68px;
}
.guide-detail-hero .breadcrumbs{
  margin-bottom:34px;
}
.guide-detail-hero-grid{
  align-items:center;
  display:grid;
  gap:54px;
  grid-template-columns:minmax(0, 1.08fr) minmax(380px, 0.92fr);
}
.guide-detail-hero-copy,.guide-detail-shell>*{
  min-width:0;
}
.guide-detail-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  margin:0 0 18px;
  padding:7px 13px;
  text-transform:uppercase;
  width:-moz-fit-content;
  width:fit-content;
}
.guide-detail-hero h1{
  font-size:clamp(2.6rem, 3vw + 1rem, 3.5rem);
  font-weight:var(--font-weight-semibold);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:22px;
  max-width:760px;
}
.guide-detail-summary{
  color:var(--color-muted-brown);
  font-size:var(--font-size-lede);
  margin-bottom:22px;
  max-width:720px;
}
.guide-detail-actions,.guide-detail-meta,.guide-detail-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.guide-detail-meta{
  color:var(--color-muted-brown);
  font-size:0.78rem;
}
.guide-detail-meta span{
  align-items:center;
  display:inline-flex;
  gap:6px;
}
.guide-detail-meta svg{
  color:var(--color-champagne);
  height:15px;
  width:15px;
}
.guide-detail-tags{
  margin-top:19px;
}
.guide-detail-tags a{
  background:rgba(255, 255, 255, 0.78);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  font-size:0.74rem;
  font-weight:var(--font-weight-semibold);
  padding:6px 11px;
}
.guide-detail-actions{
  margin-top:27px;
}
.guide-detail-page .button{
  gap:9px;
  min-height:49px;
  padding-inline:22px;
}
.guide-detail-page .button svg,.guide-detail-page .text-link svg,.guide-detail-service-grid a>span svg{
  height:18px;
  width:18px;
}
.guide-detail-hero-media{
  background:linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 231, 220, 0.88));
  border:1px solid var(--color-champagne-soft);
  border-radius:22px;
  box-shadow:var(--shadow-card);
  display:grid;
  isolation:isolate;
  margin:0;
  min-height:clamp(340px, 30vw, 440px);
  overflow:hidden;
  padding:20px;
  place-items:center;
  position:relative;
}
.guide-detail-hero-media>img{
  background:var(--color-white);
  border:1px solid rgba(111, 78, 55, 0.18);
  border-radius:10px;
  box-shadow:0 20px 48px rgba(67, 42, 31, 0.2);
  box-sizing:border-box;
  display:block;
  height:auto;
  max-height:460px;
  max-width:88%;
  -o-object-fit:contain;
     object-fit:contain;
  -o-object-position:center;
     object-position:center;
  position:relative;
  width:auto;
  z-index:1;
}
.guide-detail-hero-media.is-landscape{
  min-height:0;
  padding:10px;
}
.guide-detail-hero-media.is-landscape>img{
  border:0;
  border-radius:14px;
  box-shadow:none;
  max-height:none;
  max-width:100%;
  width:100%;
}
.guide-detail-image-placeholder{
  align-items:center;
  background:linear-gradient(145deg, var(--color-ivory), var(--color-soft-beige));
  color:var(--color-muted-brown);
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
  justify-content:center;
  min-height:280px;
  position:relative;
  width:100%;
  z-index:1;
}
.guide-detail-image-placeholder svg{
  color:var(--color-champagne);
  height:40px;
  width:40px;
}
.guide-detail-mobile-toc-wrap{
  display:none;
}
.guide-detail-shell{
  align-items:start;
  display:grid;
  gap:52px;
  grid-template-columns:minmax(0, 780px) minmax(290px, 340px);
  padding-block:68px 88px;
}
.guide-detail-main{
  min-width:0;
}
.guide-detail-editorial-note,.guide-detail-inline-cta,.guide-detail-quick-answer,.guide-detail-sidebar-panel{
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
}
.guide-detail-quick-answer{
  border-left:4px solid var(--color-coral);
  margin-bottom:42px;
  overflow:hidden;
  padding:32px 34px;
  position:relative;
}
.guide-detail-quick-answer h2{
  font-size:1.75rem;
  margin-bottom:13px;
}
.guide-detail-quick-answer h3{
  font-size:1.2rem;
  margin-bottom:12px;
  margin-top:24px;
}
.guide-detail-quick-answer ul,.guide-detail-toc ul{
  list-style:none;
  margin:0;
  padding:0;
}
.guide-detail-quick-answer ul{
  display:grid;
  gap:9px;
}
.guide-detail-quick-answer li{
  align-items:flex-start;
  display:flex;
  gap:9px;
}
.guide-detail-quick-answer li svg{
  color:var(--color-coral);
  flex:0 0 auto;
  height:18px;
  margin-top:4px;
  width:18px;
}
.guide-detail-page .article-content{
  color:var(--color-cocoa);
  min-width:0;
  padding:0;
}
.guide-detail-page .article-content>:first-child{
  margin-top:0;
}
.guide-detail-page .article-content h2{
  font-size:clamp(1.75rem, 1.2vw + 1.45rem, 2.25rem);
  margin-bottom:17px;
  margin-top:46px;
  scroll-margin-top:120px;
}
.guide-detail-page .article-content h3{
  font-size:1.45rem;
  margin-bottom:13px;
  margin-top:32px;
  scroll-margin-top:120px;
}
.guide-detail-page .article-content h4{
  font-size:1.18rem;
  margin-top:25px;
}
.guide-detail-page .article-content li,.guide-detail-page .article-content p{
  color:var(--color-cocoa);
  font-size:1rem;
}
.guide-detail-page .article-content ol,.guide-detail-page .article-content ul{
  display:grid;
  gap:8px;
  padding-left:24px;
}
.guide-detail-page .article-content blockquote{
  background:var(--color-ivory);
  border-left:4px solid var(--color-coral);
  margin:30px 0;
  padding:25px 28px;
}
.guide-detail-page .article-content figure,.guide-detail-page .article-content p>img,.guide-detail-page .article-content>img{
  max-width:100%;
}
.guide-detail-page .article-content figure img,.guide-detail-page .article-content p>img,.guide-detail-page .article-content>img{
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  margin-inline:auto;
  max-height:620px;
  max-width:100%;
  width:auto;
}
.guide-detail-page .article-content table{
  border-collapse:collapse;
  display:block;
  max-width:100%;
  overflow-x:auto;
  scrollbar-width:thin;
  width:100%;
}
.guide-detail-page .article-content td,.guide-detail-page .article-content th{
  border:1px solid var(--color-champagne-soft);
  min-width:150px;
  padding:14px 16px;
  text-align:left;
  vertical-align:top;
}
.guide-detail-page .article-content th{
  background:var(--color-soft-beige);
  color:var(--color-espresso);
}
.guide-detail-sources{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  margin-top:44px;
  padding:28px 30px;
  scroll-margin-top:110px;
}
.guide-detail-sources h2{
  font-size:1.65rem;
  margin-bottom:9px;
}
.guide-detail-sources>p:not(.eyebrow){
  margin-bottom:17px;
}
.guide-detail-sources ol{
  display:grid;
  gap:9px;
  margin:0;
  padding-left:22px;
}
.guide-detail-sources a{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-semibold);
  overflow-wrap:anywhere;
  text-decoration:underline;
  text-decoration-color:var(--color-champagne);
  text-underline-offset:3px;
}
.guide-detail-inline-cta{
  align-items:center;
  background:var(--color-ivory);
  display:flex;
  gap:26px;
  justify-content:space-between;
  margin-top:48px;
  padding:30px;
}
.guide-detail-inline-cta h2{
  font-size:1.65rem;
  margin-bottom:8px;
}
.guide-detail-inline-cta p{
  margin-bottom:0;
}
.guide-detail-inline-cta .button{
  flex:0 0 auto;
}
.guide-detail-faq{
  margin-top:54px;
  scroll-margin-top:110px;
}
.guide-detail-faq>h2{
  font-size:clamp(1.75rem, 1.2vw + 1.45rem, 2.25rem);
  margin-bottom:28px;
}
.guide-detail-faq .faq-list{
  display:grid;
  gap:12px;
}
.guide-detail-faq .faq-item{
  background:var(--color-white);
  margin:0;
}
.guide-detail-editorial-note{
  align-items:flex-start;
  background:var(--color-soft-beige);
  display:flex;
  gap:13px;
  margin-top:36px;
  padding:20px 22px;
}
.guide-detail-editorial-note svg{
  color:var(--color-champagne);
  flex:0 0 auto;
  height:21px;
  margin-top:3px;
  width:21px;
}
.guide-detail-editorial-note p{
  font-size:var(--font-size-small);
  margin:0;
}
.guide-detail-sidebar{
  display:grid;
  gap:18px;
  position:sticky;
  top:112px;
}
.guide-detail-sidebar-panel{
  padding:23px;
}
.guide-detail-sidebar-panel h2{
  font-size:1.35rem;
  margin-bottom:16px;
}
.guide-detail-toc ul{
  display:grid;
  gap:9px;
}
.guide-detail-toc li{
  line-height:1.35;
}
.guide-detail-toc li.is-level-3{
  padding-left:13px;
}
.guide-detail-toc a{
  color:var(--color-cocoa);
  font-size:0.85rem;
}
.guide-detail-toc a:focus-visible,.guide-detail-toc a:hover{
  color:var(--color-coral);
}
.guide-detail-support{
  background:var(--color-soft-beige);
}
.guide-detail-support>svg{
  background:var(--color-soft-peach);
  border-radius:10px;
  color:var(--color-coral);
  height:34px;
  margin-bottom:14px;
  padding:7px;
  width:34px;
}
.guide-detail-support .button{
  margin-top:8px;
  width:100%;
}
.guide-detail-product-links{
  display:grid;
  gap:9px;
}
.guide-detail-product-links a{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:12px;
  color:var(--color-espresso);
  display:grid;
  gap:3px;
  padding:12px 13px;
}
.guide-detail-product-links span{
  color:var(--color-muted-brown);
  font-size:0.75rem;
  font-weight:var(--font-weight-regular);
}
.guide-detail-related-section{
  background:var(--color-soft-beige);
  scroll-margin-top:100px;
}
.guide-detail-related-section .section-heading{
  max-width:none;
}
.guide-detail-related-section .guide-card-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.guide-detail-related-section .guide-card{
  background:var(--color-white);
  border-color:var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
}
.guide-detail-related-section .guide-card-media{
  aspect-ratio:16 / 9;
  background:var(--color-ivory);
}
.guide-detail-related-section .guide-card-body{
  padding:23px;
}
.guide-detail-related-section .guide-card h3{
  font-size:1.25rem;
}
.guide-detail-services-section{
  background:var(--color-ivory);
}
.guide-detail-services-section .section-heading{
  margin-inline:auto;
  text-align:center;
}
.guide-detail-service-grid{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.guide-detail-service-grid>a{
  align-items:flex-start;
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  color:var(--color-cocoa);
  display:flex;
  flex-direction:column;
  min-height:100%;
  min-width:0;
  padding:25px;
  transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease;
}
.guide-detail-service-grid>a:hover{
  border-color:rgba(231, 111, 81, 0.45);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-3px);
}
.guide-detail-service-grid>a>svg{
  background:var(--color-soft-peach);
  border-radius:12px;
  color:var(--color-coral);
  height:44px;
  margin-bottom:19px;
  padding:10px;
  width:44px;
}
.guide-detail-service-grid h3{
  font-size:1.2rem;
  margin-bottom:10px;
}
.guide-detail-service-grid p{
  color:var(--color-muted-brown);
  flex:1;
  font-size:var(--font-size-small);
}
.guide-detail-service-grid a>span{
  align-items:center;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  gap:7px;
  margin-top:14px;
}
.guide-detail-cta-section{
  background:var(--color-soft-beige);
}
.guide-detail-final-cta{
  background:var(--color-espresso);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card-hover);
  margin-inline:auto;
  max-width:940px;
  padding:48px;
  text-align:center;
}
.guide-detail-final-cta .eyebrow,.guide-detail-final-cta h2{
  color:var(--color-ivory);
}
.guide-detail-final-cta p{
  color:var(--color-champagne-light);
  margin-inline:auto;
  max-width:720px;
}
.guide-detail-final-cta .guide-detail-actions{
  justify-content:center;
}
.guide-detail-final-cta .button-secondary{
  background:transparent;
  border-color:var(--color-champagne);
  color:var(--color-ivory);
}
@media (max-width: 1024px){
  .guide-detail-hero-grid{
    gap:38px;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .guide-detail-shell{
    grid-template-columns:1fr;
    max-width:820px;
  }

  .guide-detail-sidebar{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    position:static;
  }

  .guide-detail-toc{
    display:none;
  }

  .guide-detail-mobile-toc-wrap{
    display:block;
    max-width:820px;
    padding-top:44px;
  }

  .guide-detail-mobile-toc{
    background:var(--color-white);
    border:1px solid var(--color-champagne-soft);
    border-radius:14px;
    box-shadow:var(--shadow-card);
  }

  .guide-detail-mobile-toc summary{
    align-items:center;
    color:var(--color-espresso);
    cursor:pointer;
    display:flex;
    font-weight:var(--font-weight-semibold);
    gap:20px;
    justify-content:space-between;
    list-style:none;
    padding:17px 20px;
  }

  .guide-detail-mobile-toc summary::-webkit-details-marker{
    display:none;
  }

  .guide-detail-mobile-toc summary svg{
    height:19px;
    transition:transform 180ms ease;
    width:19px;
  }

  .guide-detail-mobile-toc[open] summary svg{
    transform:rotate(180deg);
  }

  .guide-detail-mobile-toc nav{
    border-top:1px solid var(--color-champagne-soft);
    padding:0 20px 18px;
  }

  .guide-detail-mobile-toc ul{
    display:grid;
    gap:8px;
    list-style:none;
    margin:0;
    padding:17px 0 0;
  }

  .guide-detail-mobile-toc li.is-level-3{
    padding-left:13px;
  }

  .guide-detail-mobile-toc a{
    color:var(--color-cocoa);
    font-size:0.88rem;
  }

  .guide-detail-service-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px){
  .guide-detail-page .section{
    padding-block:64px;
  }

  .guide-detail-hero{
    padding-block:38px 52px;
  }

  .guide-detail-hero .breadcrumbs{
    margin-bottom:28px;
  }

  .guide-detail-hero-grid{
    grid-template-columns:1fr;
  }

  .guide-detail-hero h1{
    font-size:clamp(2.3rem, 10vw, 2.6rem);
  }

  .guide-detail-hero-media{
    min-height:0;
    order:-1;
    padding:14px;
  }

  .guide-detail-hero-media.is-portrait>img{
    border-radius:8px;
    box-shadow:0 12px 28px rgba(67, 42, 31, 0.14);
    max-height:420px;
    max-width:92%;
  }

  .guide-detail-shell{
    gap:34px;
    padding-block:34px 64px;
  }

  .guide-detail-quick-answer{
    padding:27px 24px;
  }

  .guide-detail-inline-cta{
    align-items:flex-start;
    flex-direction:column;
  }

  .guide-detail-related-section .guide-card-grid,.guide-detail-sidebar{
    grid-template-columns:1fr;
  }

  .guide-detail-final-cta{
    padding:36px 26px;
  }
}
@media (max-width: 600px){
  .guide-detail-actions{
    flex-direction:column;
  }

  .guide-detail-page .button{
    width:100%;
  }

  .guide-detail-meta{
    display:grid;
  }

  .guide-detail-meta,.guide-detail-service-grid{
    grid-template-columns:1fr;
  }

  .guide-detail-inline-cta{
    padding:25px 22px;
  }

  .guide-detail-final-cta{
    padding:32px 20px;
  }
}
.contact-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.65;
  overflow:clip;
}
.contact-page .section{
  padding-block:88px;
}
.contact-page .section-heading{
  margin:0 auto 44px;
  max-width:820px;
  text-align:center;
}
.contact-page h1,.contact-page h2,.contact-page h3{
  color:var(--color-espresso);
  font-family:var(--font-heading);
}
.contact-page h2{
  font-size:var(--font-size-h2);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.contact-page h3{
  font-size:var(--font-size-h3);
  line-height:1.3;
}
.contact-page svg{
  flex:0 0 auto;
  height:20px;
  stroke-width:1.8;
  width:20px;
}
.contact-hero{
  background:radial-gradient(circle at 88% 10%, rgba(255, 227, 216, 0.72), transparent 30%), var(--color-ivory);
  padding-block:56px 84px;
}
.contact-hero-copy,.contact-rfq-grid>*{
  min-width:0;
}
.contact-hero-copy .breadcrumbs{
  margin-bottom:26px;
}
.contact-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  letter-spacing:0.09em;
  margin:0 0 20px;
  padding:7px 14px;
  text-transform:uppercase;
}
.contact-badge,.contact-hero h1{
  font-weight:var(--font-weight-semibold);
}
.contact-hero h1{
  font-size:var(--font-size-h1);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:680px;
}
.contact-hero-answer{
  font-size:var(--font-size-lede);
  margin-bottom:26px;
  max-width:720px;
}
.contact-brief-panel ul,.contact-hero-points,.contact-rfq-guide ul{
  display:grid;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
}
.contact-hero-points{
  margin-bottom:32px;
}
.contact-brief-panel li,.contact-hero-points li,.contact-rfq-guide li{
  align-items:flex-start;
  display:flex;
  gap:10px;
}
.contact-brief-panel li svg,.contact-hero-points svg,.contact-rfq-guide li svg{
  color:var(--color-coral);
  margin-top:3px;
}
.contact-final-panel>div,.contact-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.contact-final-panel .button,.contact-hero-actions .button{
  align-items:center;
  display:inline-flex;
  gap:9px;
  justify-content:center;
}
.contact-brief-panel{
  background:rgba(255, 253, 248, 0.94);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  padding:36px;
  position:relative;
}
.contact-brief-panel:before{
  border:1px solid rgba(201, 164, 106, 0.2);
  border-radius:17px;
  content:"";
  inset:10px;
  pointer-events:none;
  position:absolute;
}
.contact-brief-panel>*{
  position:relative;
  z-index:1;
}
.contact-brief-heading{
  align-items:center;
  display:flex;
  gap:16px;
  margin-bottom:20px;
}
.contact-brief-heading>span{
  background:var(--color-soft-peach);
  border-radius:15px;
  color:var(--color-coral);
  display:grid;
  flex:0 0 48px;
  height:48px;
  place-items:center;
  width:48px;
}
.contact-brief-heading h2,.contact-brief-heading p{
  margin:0;
}
.contact-brief-heading p{
  color:var(--color-coral);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.contact-brief-heading h2{
  font-size:1.75rem;
}
.contact-brief-panel>p:not(.contact-scope-note){
  margin-bottom:24px;
}
.contact-scope-note{
  background:var(--color-soft-beige);
  border-radius:12px;
  color:var(--color-muted-brown);
  display:flex;
  font-size:var(--font-size-small);
  gap:10px;
  margin:24px 0 0;
  padding:14px 16px;
}
.contact-scope-note svg{
  color:var(--color-champagne);
  margin-top:2px;
}
.contact-categories-section,.contact-direct-section,.contact-faq-section,.contact-rfq-section{
  background:var(--color-warm-white);
}
.contact-rfq-grid{
  align-items:stretch;
  display:grid;
  gap:32px;
  grid-template-columns:minmax(280px, 0.72fr) minmax(0, 1.28fr);
}
.contact-rfq-form,.contact-rfq-guide{
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  padding:34px;
}
.contact-rfq-guide{
  background:var(--color-soft-beige);
}
.contact-rfq-guide h3{
  font-size:1.85rem;
  margin-bottom:14px;
}
.contact-rfq-guide>p:not(.eyebrow,.contact-rfq-note){
  margin-bottom:24px;
}
.contact-rfq-note{
  border-top:1px solid var(--color-champagne-soft);
  color:var(--color-muted-brown);
  font-size:var(--font-size-small);
  margin:26px 0 0;
  padding-top:20px;
}
.contact-rfq-form{
  background:var(--color-white);
  box-shadow:var(--shadow-card);
}
.contact-rfq-form>h3{
  font-size:1.9rem;
  margin-bottom:10px;
}
.contact-rfq-form .wpcf7-form{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  margin-top:24px;
}
.contact-rfq-form .wpcf7-form>p{
  margin:0;
  min-width:0;
}
.contact-rfq-form .wpcf7-form>p:has(.wpcf7-submit),.contact-rfq-form .wpcf7-form>p:has(textarea),.contact-rfq-form .wpcf7-response-output{
  grid-column:1 /  -1;
}
.contact-rfq-form .rfq-field{
  min-width:0;
}
.contact-rfq-form .rfq-field-wide{
  grid-column:1 /  -1;
}
.contact-rfq-form .rfq-field label{
  color:var(--color-cocoa);
  display:block;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-medium);
  margin-bottom:7px;
}
.contact-rfq-form .wpcf7-form-control-wrap,.contact-rfq-form .wpcf7-form-control:not(.wpcf7-submit){
  max-width:none;
  width:100%;
}
.contact-buyers-section,.contact-final-section,.contact-notes-section,.contact-workflow-section{
  background:var(--color-ivory);
}
.contact-related-section,.contact-services-section{
  background:var(--color-soft-beige);
}
.contact-workflow-grid{
  position:relative;
}
.contact-workflow-grid:before{
  background:var(--color-champagne-soft);
  content:"";
  height:1px;
  left:10%;
  position:absolute;
  right:10%;
  top:34px;
}
.contact-workflow-grid article{
  position:relative;
  text-align:center;
  z-index:1;
}
.contact-step-number{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:50%;
  color:var(--color-coral);
  display:grid;
  font-weight:var(--font-weight-semibold);
  height:52px;
  margin:0 auto 18px;
  place-items:center;
  width:52px;
}
.contact-workflow-grid article>svg{
  color:var(--color-champagne);
  height:24px;
  margin-bottom:12px;
  width:24px;
}
.contact-buyers-grid article,.contact-notes-grid article,.contact-services-grid article{
  align-items:flex-start;
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(62, 39, 35, 0.05);
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:28px;
}
.contact-buyers-grid article>svg,.contact-notes-grid article>svg,.contact-services-grid article>svg{
  background:var(--color-soft-peach);
  border-radius:14px;
  box-sizing:content-box;
  color:var(--color-coral);
  height:34px;
  margin-bottom:20px;
  padding:7px;
  width:34px;
}
.contact-buyers-grid p,.contact-notes-grid p,.contact-services-grid p{
  margin-bottom:18px;
}
.contact-services-grid .text-link{
  align-items:center;
  display:inline-flex;
  gap:6px;
  margin-top:auto;
}
.contact-services-grid .text-link svg{
  height:16px;
  width:16px;
}
.contact-category-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.contact-category-list a{
  align-items:center;
  background:var(--color-soft-peach);
  border:1px solid var(--color-champagne-soft);
  border-radius:999px;
  color:var(--color-cocoa);
  display:inline-flex;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-medium);
  gap:7px;
  padding:10px 15px;
}
.contact-category-list a:focus-visible,.contact-category-list a:hover{
  background:var(--color-white);
  border-color:var(--color-champagne);
  color:var(--color-coral-hover);
}
.contact-category-list svg{
  height:15px;
  width:15px;
}
.contact-notes-grid article{
  align-items:center;
  text-align:center;
}
.contact-direct-section .contact-methods{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.contact-direct-section .contact-method{
  align-items:center;
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:16px;
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:25px 18px;
  text-align:center;
}
.contact-direct-section .contact-method>svg{
  color:var(--color-coral);
  height:28px;
  margin-bottom:14px;
  width:28px;
}
.contact-direct-section .contact-method span{
  overflow-wrap:anywhere;
}
.contact-methods-empty{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  margin:0 auto;
  max-width:680px;
  padding:32px;
  text-align:center;
}
.contact-methods-empty>svg{
  color:var(--color-coral);
  height:34px;
  margin-bottom:14px;
  width:34px;
}
.contact-eeat-links{
  margin-top:28px;
}
.contact-eeat-links a{
  border-bottom:1px solid var(--color-champagne-soft);
  color:var(--color-cocoa);
  font-weight:var(--font-weight-medium);
  padding:13px 15px;
  text-align:center;
}
.contact-buyers-grid article:nth-child(4),.contact-buyers-grid article:nth-child(5){
  transform:translateX(50%);
}
.contact-related-grid a{
  align-items:center;
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  color:var(--color-espresso);
  display:flex;
  font-family:var(--font-heading);
  font-size:1.05rem;
  font-weight:var(--font-weight-semibold);
  gap:12px;
  justify-content:space-between;
  padding:20px;
}
.contact-related-grid svg{
  color:var(--color-coral);
}
.contact-faq-section .faq-list{
  align-items:start;
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.contact-faq-section .faq-item{
  margin:0;
  min-width:0;
}
.contact-final-panel{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin:0 auto;
  max-width:920px;
  padding:56px;
  text-align:center;
}
.contact-final-panel p:not(.eyebrow){
  margin:18px auto 28px;
  max-width:720px;
}
.contact-final-panel>div{
  justify-content:center;
}
@media (max-width: 1024px){
  .contact-hero-grid{
    gap:40px;
  }

  .contact-brief-panel ul,.contact-hero-points{
    grid-template-columns:1fr;
  }

  .contact-direct-section .contact-methods,.contact-eeat-links,.contact-related-grid,.contact-workflow-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .contact-workflow-grid:before{
    display:none;
  }

  .contact-buyers-grid,.contact-faq-section .faq-list,.contact-services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .contact-buyers-grid article:nth-child(4),.contact-buyers-grid article:nth-child(5){
    transform:none;
  }
}
@media (max-width: 900px){
  .contact-hero-grid,.contact-rfq-grid{
    gap:36px;
    grid-template-columns:1fr;
  }

  .contact-brief-panel{
    max-width:720px;
  }
}
@media (max-width: 767px){
  .contact-page .section{
    padding-block:64px;
  }

  .contact-page .section-heading{
    margin-bottom:32px;
  }

  .contact-hero{
    padding-block:38px 64px;
  }

  .contact-hero-grid,.contact-rfq-grid{
    gap:32px;
    grid-template-columns:1fr;
  }

  .contact-hero h1{
    font-size:clamp(2.35rem, 11vw, 2.75rem);
  }

  .contact-brief-panel,.contact-rfq-form,.contact-rfq-guide{
    padding:26px;
  }

  .contact-buyers-grid,.contact-direct-section .contact-methods,.contact-eeat-links,.contact-faq-section .faq-list,.contact-notes-grid,.contact-related-grid,.contact-rfq-form .wpcf7-form,.contact-services-grid,.contact-workflow-grid{
    grid-template-columns:1fr;
  }

  .contact-rfq-form .rfq-field-wide,.contact-rfq-form .wpcf7-form>p{
    grid-column:1;
  }

  .contact-category-list{
    display:grid;
    grid-template-columns:1fr;
  }

  .contact-category-list a{
    border-radius:12px;
    justify-content:space-between;
  }

  .contact-final-panel{
    padding:36px 24px;
  }
}
@media (max-width: 420px){
  .contact-final-panel>div,.contact-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

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

  .contact-brief-heading{
    align-items:flex-start;
  }
}
.faq-page{
  color:var(--color-cocoa);
  font-family:var(--font-body);
  line-height:1.65;
  overflow:clip;
}
.faq-page .section{
  padding-block:88px;
}
.faq-page .section-heading{
  margin:0 auto 44px;
  max-width:840px;
  text-align:center;
}
.faq-page h1,.faq-page h2,.faq-page h3{
  color:var(--color-espresso);
  font-family:var(--font-heading);
}
.faq-page h2{
  font-size:var(--font-size-h2);
  font-weight:var(--font-weight-semibold);
  line-height:1.2;
}
.faq-page svg{
  flex:0 0 auto;
  height:20px;
  stroke-width:1.8;
  width:20px;
}
.faq-page-hero{
  background:radial-gradient(circle at 84% 12%, rgba(255, 227, 216, 0.62), transparent 29%), var(--color-ivory);
  padding-block:52px 80px;
}
.faq-page-hero-grid{
  align-items:center;
  display:grid;
  gap:58px;
  grid-template-columns:minmax(0, 1.06fr) minmax(0, 0.94fr);
}
.faq-page-hero-copy,.faq-page-hero-media{
  min-width:0;
}
.faq-page-hero-copy .breadcrumbs{
  margin-bottom:26px;
}
.faq-page-badge{
  background:var(--color-soft-peach);
  border-radius:999px;
  color:var(--color-coral);
  display:inline-flex;
  font-size:var(--font-size-meta);
  letter-spacing:0.09em;
  margin:0 0 20px;
  padding:7px 14px;
  text-transform:uppercase;
}
.faq-page-badge,.faq-page-hero h1{
  font-weight:var(--font-weight-semibold);
}
.faq-page-hero h1{
  font-size:var(--font-size-h1);
  letter-spacing:-0.025em;
  line-height:1.08;
  margin-bottom:24px;
  max-width:680px;
}
.faq-page-hero-answer{
  font-size:var(--font-size-lede);
  margin-bottom:28px;
  max-width:720px;
}
.faq-page-final-actions,.faq-page-hero-actions,.faq-page-start-panel>div{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.faq-page-final-actions .button,.faq-page-hero-actions .button,.faq-page-start-panel .button{
  align-items:center;
  display:inline-flex;
  gap:9px;
  justify-content:center;
}
.faq-page-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:9px 18px;
  list-style:none;
  margin:28px 0 0;
  padding:0;
}
.faq-page-hero-points li{
  align-items:center;
  color:var(--color-muted-brown);
  display:inline-flex;
  font-size:var(--font-size-small);
  gap:7px;
}
.faq-page-hero-points svg{
  color:var(--color-champagne);
  height:16px;
  width:16px;
}
.faq-page-hero-media{
  aspect-ratio:1.79 / 1;
  background:var(--color-soft-beige);
  border:1px solid var(--color-champagne-soft);
  border-radius:22px;
  box-shadow:var(--shadow-card);
  margin:0;
  overflow:hidden;
}
.faq-page-hero-media img{
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  width:100%;
}
.faq-page-image-placeholder{
  color:var(--color-muted-brown);
  display:grid;
  gap:10px;
  height:100%;
  justify-items:center;
  place-content:center;
  width:100%;
}
.faq-page-image-placeholder svg{
  color:var(--color-coral);
  height:42px;
  width:42px;
}
.faq-page-checklist-section,.faq-page-final-section,.faq-page-index-section{
  background:var(--color-warm-white);
}
.faq-page-groups-section,.faq-page-resources-section{
  background:var(--color-soft-beige);
}
.faq-page-start-section{
  background:var(--color-ivory);
}
.faq-page-search-wrap{
  margin:0 auto 34px;
  max-width:760px;
}
.faq-page-search-wrap label>span:first-child{
  color:var(--color-espresso);
  display:block;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-semibold);
  margin-bottom:8px;
}
.faq-page-search-field{
  align-items:center;
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:14px;
  box-shadow:0 10px 28px rgba(62, 39, 35, 0.05);
  display:flex;
  min-height:54px;
  padding:0 14px 0 18px;
}
.faq-page-search-field:focus-within{
  border-color:var(--color-coral);
  box-shadow:0 0 0 4px rgba(231, 111, 81, 0.12);
}
.faq-page-search-field>svg{
  color:var(--color-champagne);
}
.faq-page-search-field input{
  background:transparent;
  border:0;
  flex:1;
  height:52px;
  min-width:0;
  outline:0;
  padding:0 12px;
}
.faq-page-search-field button{
  background:transparent;
  border:0;
  color:var(--color-coral-hover);
  cursor:pointer;
  font-size:var(--font-size-label);
  font-weight:var(--font-weight-semibold);
  padding:7px 10px;
}
.faq-page-search-status{
  color:var(--color-muted-brown);
  font-size:var(--font-size-small);
  margin:9px 0 0;
}
.faq-page-topic-nav a{
  align-items:flex-start;
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:16px;
  box-shadow:0 10px 28px rgba(62, 39, 35, 0.05);
  color:var(--color-cocoa);
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:22px 18px;
}
.faq-page-topic-nav a:focus-visible,.faq-page-topic-nav a:hover{
  border-color:var(--color-champagne);
  color:var(--color-coral-hover);
  transform:translateY(-3px);
}
.faq-page-topic-nav a>svg:first-child{
  color:var(--color-coral);
  height:28px;
  margin-bottom:18px;
  width:28px;
}
.faq-page-topic-nav a>svg:last-child{
  color:var(--color-champagne);
  height:16px;
  margin-top:auto;
  width:16px;
}
.faq-page-topic-nav small,.faq-page-topic-nav strong{
  display:block;
}
.faq-page-topic-nav strong{
  color:var(--color-espresso);
  font-family:var(--font-heading);
  font-size:1.05rem;
  line-height:1.3;
  margin-bottom:6px;
}
.faq-page-topic-nav small{
  color:var(--color-muted-brown);
  font-size:0.78rem;
  line-height:1.5;
  margin-bottom:15px;
}
.faq-page-group{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  min-width:0;
  padding:26px;
  scroll-margin-top:130px;
}
.faq-page-group-heading{
  align-items:flex-start;
  display:flex;
  gap:14px;
  margin-bottom:18px;
  min-height:94px;
}
.faq-page-group-heading>svg{
  color:var(--color-champagne);
  height:30px;
  width:30px;
}
.faq-page-group-heading h2{
  font-size:1.45rem;
  margin-bottom:6px;
}
.faq-page-group-heading p{
  color:var(--color-muted-brown);
  font-size:var(--font-size-small);
  margin:0;
}
.faq-page-group .faq-list{
  gap:10px;
}
.faq-page-group .faq-item{
  background:var(--color-white);
  border:1px solid rgba(232, 217, 190, 0.75);
  border-radius:12px;
  margin:0;
}
.faq-page-group .faq-question{
  min-height:60px;
  padding:12px 15px;
}
.faq-page-group .faq-answer,.faq-page-group .faq-question{
  font-size:var(--font-size-small);
}
.faq-page-no-results{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:20px;
  margin:0 auto;
  max-width:680px;
  padding:44px;
  text-align:center;
}
.faq-page-no-results>svg{
  color:var(--color-coral);
  height:38px;
  margin-bottom:14px;
  width:38px;
}
.faq-page-no-results p{
  margin-bottom:22px;
}
.faq-page-final-panel,.faq-page-start-panel{
  background:var(--color-warm-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
  margin:0 auto;
  max-width:920px;
  padding:52px;
  text-align:center;
}
.faq-page-final-panel>p:not(.eyebrow),.faq-page-start-panel>p:not(.eyebrow){
  margin:18px auto 28px;
  max-width:750px;
}
.faq-page-final-actions,.faq-page-start-panel>div{
  justify-content:center;
}
.faq-page-checklist-grid article{
  background:var(--color-ivory);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(62, 39, 35, 0.05);
  padding:32px;
}
.faq-page-checklist-grid article>div,.faq-page-checklist-grid li{
  align-items:flex-start;
  display:flex;
  gap:11px;
}
.faq-page-checklist-grid article>div{
  align-items:center;
  margin-bottom:22px;
}
.faq-page-checklist-grid article>div svg,.faq-page-checklist-grid li svg{
  color:var(--color-coral);
}
.faq-page-checklist-grid h3{
  font-size:1.45rem;
  margin:0;
}
.faq-page-checklist-grid ul{
  display:grid;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
}
.faq-page-checklist-grid li svg{
  height:17px;
  margin-top:4px;
  width:17px;
}
.faq-page-resources-grid>a{
  align-items:flex-start;
  background:var(--color-white);
  border:1px solid var(--color-champagne-soft);
  border-radius:18px;
  color:var(--color-cocoa);
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:28px;
}
.faq-page-resources-grid>a>svg{
  color:var(--color-coral);
  height:32px;
  margin-bottom:18px;
  width:32px;
}
.faq-page-resources-grid p{
  margin-bottom:18px;
}
.faq-page-resources-grid span{
  align-items:center;
  color:var(--color-coral-hover);
  display:inline-flex;
  font-weight:var(--font-weight-semibold);
  gap:6px;
  margin-top:auto;
}
.faq-page-resources-grid span svg{
  height:16px;
  width:16px;
}
.faq-page-eeat-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  justify-content:center;
  margin-top:32px;
}
.faq-page-eeat-links a{
  color:var(--color-cocoa);
  font-weight:var(--font-weight-medium);
  text-decoration:underline;
  text-decoration-color:var(--color-champagne-soft);
  text-underline-offset:5px;
}
.faq-page-final-panel ul{
  color:var(--color-muted-brown);
  display:flex;
  flex-wrap:wrap;
  font-size:var(--font-size-small);
  gap:10px 24px;
  justify-content:center;
  list-style:none;
  margin:28px 0 0;
  padding:0;
}
.faq-page-final-panel li{
  align-items:center;
  display:inline-flex;
  gap:6px;
}
.faq-page-final-panel li svg{
  color:var(--color-coral);
  height:16px;
  width:16px;
}
@media (max-width: 1100px){
  .faq-page-topic-nav{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .faq-page-groups-grid,.faq-page-resources-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .faq-page-hero-grid{
    gap:36px;
    grid-template-columns:1fr;
  }

  .faq-page-hero-media{
    max-width:760px;
  }
}
@media (max-width: 767px){
  .faq-page .section{
    padding-block:64px;
  }

  .faq-page .section-heading{
    margin-bottom:32px;
  }

  .faq-page-hero{
    padding-block:38px 64px;
  }

  .faq-page-hero h1{
    font-size:clamp(2.35rem, 11vw, 2.75rem);
  }

  .faq-page-checklist-grid,.faq-page-groups-grid,.faq-page-resources-grid,.faq-page-topic-nav{
    grid-template-columns:1fr;
  }

  .faq-page-topic-nav a{
    align-items:center;
    flex-direction:row;
    min-height:auto;
  }

  .faq-page-topic-nav a>svg:first-child{
    margin:0;
  }

  .faq-page-topic-nav a>svg:last-child{
    margin:0 0 0 auto;
  }

  .faq-page-topic-nav small{
    margin-bottom:0;
  }

  .faq-page-checklist-grid article,.faq-page-group{
    padding:22px;
  }

  .faq-page-group-heading{
    min-height:0;
  }

  .faq-page-final-panel,.faq-page-no-results,.faq-page-start-panel{
    padding:36px 24px;
  }
}
@media (max-width: 420px){
  .faq-page-final-actions,.faq-page-hero-actions,.faq-page-start-panel>div{
    display:grid;
    grid-template-columns:1fr;
  }

  .faq-page-final-actions .button,.faq-page-hero-actions .button,.faq-page-start-panel .button{
    width:100%;
  }

  .faq-page-search-field{
    padding-right:8px;
  }
}
.inquiry-form-panel>h3{
  font-size:clamp(1.55rem, 3vw, 1.9rem);
  margin-bottom:10px;
}
.inquiry-form-panel>p{
  margin-bottom:0;
}
.inquiry-form-panel .wpcf7{
  margin-top:24px;
}
.inquiry-form-panel .wpcf7-form{
  display:block;
  margin-top:0;
}
.inquiry-form-panel .laeyo-inquiry-form{
  display:grid;
  gap:16px 18px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.inquiry-form-panel .rfq-field{
  margin:0;
  min-width:0;
}
.inquiry-form-panel .rfq-field-wide,.inquiry-form-panel .wpcf7-response-output{
  grid-column:1 /  -1;
}
.inquiry-form-panel .rfq-field label{
  color:var(--color-cocoa);
  display:grid;
  font-size:var(--font-size-small);
  font-weight:var(--font-weight-medium);
  gap:7px;
  line-height:1.45;
}
.inquiry-form-panel .wpcf7-form-control-wrap,.inquiry-form-panel .wpcf7-form-control:not(.wpcf7-submit){
  max-width:none;
  width:100%;
}
.inquiry-form-panel input:not([type=checkbox]):not([type=submit]),.inquiry-form-panel select,.inquiry-form-panel textarea{
  background:var(--base-3);
  border:1px solid var(--line);
  border-radius:10px;
  color:var(--contrast);
  font:inherit;
  min-height:52px;
  padding:0 14px;
  transition:border-color 160ms ease,box-shadow 160ms ease,background 160ms ease;
  width:100%;
}
.inquiry-form-panel textarea{
  min-height:112px;
  padding-top:12px;
  resize:vertical;
}
.inquiry-form-panel input:focus,.inquiry-form-panel select:focus,.inquiry-form-panel textarea:focus{
  background:#fff;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(169, 121, 42, 0.12);
  outline:0;
}
.inquiry-form-panel .rfq-consent{
  color:var(--contrast-2);
  font-size:var(--font-size-meta);
  line-height:1.55;
  padding:2px 0;
}
.inquiry-form-panel .rfq-consent .wpcf7-list-item{
  margin:0;
}
.inquiry-form-panel .rfq-consent label{
  align-items:flex-start;
  color:inherit;
  display:flex;
  font:inherit;
  gap:9px;
}
.inquiry-form-panel .rfq-consent input[type=checkbox]{
  accent-color:var(--accent);
  flex:0 0 auto;
  height:18px;
  margin:2px 0 0;
  min-height:18px;
  min-width:18px;
  padding:0;
  width:18px;
}
.inquiry-form-panel .rfq-consent a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:2px;
}
.inquiry-form-panel .wpcf7-submit{
  margin:0;
  min-height:56px;
  width:100%;
}
.inquiry-form-panel .wpcf7-not-valid-tip{
  font-size:var(--font-size-meta);
  margin-top:5px;
}
.inquiry-form-panel .wpcf7-response-output{
  border-radius:10px;
  margin:4px 0 0;
  padding:12px 14px;
}
.product-category-rfq-form .laeyo-inquiry-form{
  grid-template-columns:minmax(0, 1fr);
}
.product-category-rfq-form .rfq-field-wide,.product-category-rfq-form .wpcf7-response-output{
  grid-column:1;
}
@media (max-width: 767px){
  .inquiry-form-panel .laeyo-inquiry-form{
    grid-template-columns:minmax(0, 1fr);
  }

  .inquiry-form-panel .rfq-field-wide,.inquiry-form-panel .wpcf7-response-output{
    grid-column:1;
  }
}
@media (max-width: 600px){
  .inquiry-form-panel .wpcf7{
    margin-top:20px;
  }

  .inquiry-form-panel .laeyo-inquiry-form{
    gap:14px;
  }

  .inquiry-form-panel input:not([type=checkbox]):not([type=submit]),.inquiry-form-panel select{
    min-height:50px;
  }
}
.footer-privacy-settings{
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
  background:transparent;
  border:0;
  color:inherit;
  cursor:pointer;
  font:inherit;
  padding:0;
  text-decoration:underline;
  text-decoration-color:transparent;
  text-underline-offset:3px;
}
.footer-privacy-settings:focus-visible,.footer-privacy-settings:hover{
  color:var(--accent);
  text-decoration-color:currentColor;
}
.privacy-consent-banner[hidden]{
  display:none;
}
.privacy-consent-banner{
  align-items:end;
  background:var(--base-3);
  background:color-mix(in srgb, var(--base-3) 96%, transparent);
  border:1px solid var(--line);
  border-radius:18px;
  bottom:20px;
  box-shadow:0 20px 60px rgba(45, 35, 28, 0.2);
  display:grid;
  gap:22px;
  grid-template-columns:minmax(0, 1fr) auto;
  left:50%;
  max-width:min(920px, calc(100vw - 40px));
  padding:24px;
  position:fixed;
  transform:translateX(-50%);
  width:100%;
  z-index:10020;
}
.privacy-consent-banner:focus{
  outline:0;
}
.privacy-consent-banner:focus-visible{
  box-shadow:0 20px 60px rgba(45, 35, 28, 0.2),0 0 0 3px rgba(169, 121, 42, 0.25);
}
.privacy-consent-banner:not([hidden])~.floating-contact-bar{
  opacity:0;
  pointer-events:none;
  visibility:hidden;
}
.privacy-consent-copy{
  max-width:650px;
}
.privacy-consent-kicker{
  color:var(--accent);
  font-size:var(--font-size-meta);
  font-weight:var(--font-weight-semibold);
  letter-spacing:0.08em;
  margin:0 0 6px;
  text-transform:uppercase;
}
.privacy-consent-banner h2{
  color:var(--contrast);
  font-size:clamp(1.2rem, 2vw, 1.55rem);
  line-height:1.25;
  margin:0 36px 8px 0;
}
.privacy-consent-banner p{
  color:var(--contrast-2);
  line-height:1.55;
  margin:0;
}
.privacy-consent-status:empty{
  display:none;
}
.privacy-consent-status{
  font-size:var(--font-size-meta);
  margin-top:8px !important;
}
.privacy-consent-policy-link{
  color:var(--accent);
  display:inline-block;
  font-size:var(--font-size-meta);
  margin-top:10px;
  text-decoration:underline;
  text-underline-offset:3px;
}
.privacy-consent-actions{
  display:grid;
  gap:10px;
  min-width:220px;
}
.privacy-consent-button{
  border:1px solid var(--accent);
  border-radius:999px;
  cursor:pointer;
  font:inherit;
  font-weight:var(--font-weight-semibold);
  min-height:46px;
  padding:10px 18px;
  transition:background-color 160ms ease,color 160ms ease,border-color 160ms ease;
}
.privacy-consent-accept{
  background:var(--accent);
  color:#fff;
}
.privacy-consent-accept:focus-visible,.privacy-consent-accept:hover{
  background:var(--color-coral-hover);
  border-color:var(--color-coral-hover);
}
.privacy-consent-reject{
  background:var(--contrast);
  border-color:var(--contrast);
  color:#fff;
}
.privacy-consent-reject:focus-visible,.privacy-consent-reject:hover{
  background:var(--contrast-2);
  border-color:var(--contrast-2);
}
.privacy-consent-button:focus-visible,.privacy-consent-close:focus-visible{
  outline:3px solid rgba(169, 121, 42, 0.28);
  outline-offset:2px;
}
.privacy-consent-close{
  align-items:center;
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
  background:transparent;
  border:0;
  border-radius:50%;
  color:var(--contrast-2);
  cursor:pointer;
  display:inline-flex;
  font-size:26px;
  height:36px;
  justify-content:center;
  line-height:1;
  padding:0;
  position:absolute;
  right:14px;
  top:12px;
  width:36px;
}
.privacy-consent-close:hover{
  color:var(--contrast);
}
@media (max-width: 720px){
  .privacy-consent-banner{
    align-items:stretch;
    bottom:12px;
    gap:16px;
    grid-template-columns:1fr;
    max-width:calc(100vw - 24px);
    padding:20px;
  }

  .privacy-consent-actions{
    min-width:0;
  }
}
@media (prefers-reduced-motion: reduce){
  .privacy-consent-button{
    transition:none;
  }
}
@media (max-width: 600px){
  .d-grid.grid-1-sm{
    grid-template-columns:1fr;
  }
}
.site-main .faq-list.faq-list--columns{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px){
  .site-main .faq-list.faq-list--columns{
    grid-template-columns:1fr;
  }
}
