:root {
  --black: #111111;
  --charcoal: #1f2022;
  --orange: #f28c00;
  --orange-dark: #c46400;
  --gold: #ffb33a;
  --steel: #8f969a;
  --silver: #e6e8e8;
  --paper: #ffffff;
  --warm: #fbf6ee;
  --line: rgba(17, 17, 17, 0.12);
  --font-body: Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Aptos Display", Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--warm);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--warm); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 8px; background: #fff; }
.brand-text { display: grid; gap: 1px; }
.brand strong { color: var(--black); font-size: 1.05rem; font-weight: 700; }
.brand small { color: #687075; font-size: 0.78rem; }

.nav { display: flex; align-items: center; gap: 4px; color: #2a2c2e; font-size: 0.93rem; font-weight: 700; }
.nav-item { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.nav-item > a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 12px; border-radius: 7px; }
.nav-item.active > a, .nav-item > a:hover { color: var(--black); background: #fff1dc; }
.has-dropdown > a::after { content: ''; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 80;
  min-width: 245px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(17, 17, 17, 0.16);
}
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { display: grid; }
.has-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 42px; height: 14px; }
.dropdown-menu a { padding: 11px 12px; border-radius: 6px; color: #3a3e40; }
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--black); background: #fff1dc; }
.menu-button { display: none; }

.hero, .page-hero {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 179, 58, 0.22), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--warm) 100%);
}
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 760px); gap: clamp(30px, 5vw, 76px); align-items: center; min-height: calc(100vh - 82px); overflow: hidden; }
.hero-with-bg { background: linear-gradient(90deg, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.62) 48%, rgba(17, 17, 17, 0.18) 100%), var(--hero-bg); background-position: center; background-size: cover; }
.hero-with-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(242, 140, 0, 0.18), rgba(17, 17, 17, 0.08)); pointer-events: none; }
.hero-with-bg > * { position: relative; z-index: 1; }
.hero-with-bg h1, .hero-with-bg .eyebrow { color: #fff; }
.hero-with-bg .hero-text { color: #f4e8d8; }
.hero-copy, .page-hero { max-width: 980px; }
.eyebrow { margin: 0 0 12px; color: var(--orange-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; max-width: 13ch; color: var(--black); font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6.35rem); font-weight: 800; line-height: 1; letter-spacing: 0; text-wrap: balance; }
.hero h1 { max-width: 760px; font-size: clamp(2.55rem, 4.65vw, 4.45rem); line-height: 1.08; white-space: normal; }
.hero-title-line { display: block; white-space: nowrap; }
h2 { margin: 0; color: var(--black); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.05rem); font-weight: 800; line-height: 1.04; letter-spacing: 0; text-wrap: balance; }
h3 { margin: 0; color: var(--black); font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; letter-spacing: 0; }
.hero-text, .page-hero p { max-width: 720px; margin: 24px 0 0; color: #565f62; font-size: clamp(1rem, 1.8vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 700;
}
.primary-button { color: #111; background: linear-gradient(135deg, var(--gold), var(--orange)); }
.primary-button:hover { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; }
.secondary-button { border: 1px solid var(--line); color: var(--black); background: #fff; }
.inline-button { width: fit-content; margin-top: 10px; }
.hero-media, .split-media { overflow: hidden; border-radius: 8px; background: var(--silver); box-shadow: 0 24px 70px rgba(17, 17, 17, 0.14); }
.hero-with-bg .hero-media { border: 1px solid rgba(255, 255, 255, 0.24); box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34); }
.hero-media img { width: 100%; height: min(68vh, 680px); min-height: 430px; object-fit: cover; }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); background: #fff; }
.proof-strip div { display: grid; gap: 3px; min-height: 106px; padding: 24px clamp(18px, 4vw, 58px); border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { color: var(--black); font-size: 1.08rem; }
.proof-strip span { color: #687075; }

.section, .split-section { padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 58px); }
.section-heading { display: grid; gap: 18px; max-width: 880px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow), .split-copy p { margin: 0; color: #596367; font-size: 1.05rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card, .feature-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 35px rgba(17, 17, 17, 0.07); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card:hover, .feature-card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(17, 17, 17, 0.12); }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--silver); }
.product-card div, .feature-card { display: grid; gap: 8px; padding: 20px; }
.product-card p, .feature-card p { margin: 0; color: #60696d; }

.split-section { display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; background: #fff; }
.page-split { background: var(--warm); }
.split-media img { width: 100%; height: min(58vh, 560px); min-height: 360px; object-fit: cover; }
.split-copy { display: grid; gap: 18px; max-width: 720px; }
.check-list { display: grid; gap: 13px; padding-left: 22px; margin: 10px 0 0; list-style: disc; }
.check-list li { color: #2d3336; font-weight: 600; }
.check-list li::marker { color: var(--orange); }
.compact { background: var(--warm); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card { min-height: 210px; }
.feature-card::before { content: ''; width: 42px; height: 5px; background: linear-gradient(90deg, var(--orange), var(--gold)); border-radius: 999px; }
.contact-hero { background: linear-gradient(135deg, #111 0%, #25282a 58%, #7d3f00 100%); }
.contact-hero h1, .contact-hero .eyebrow { color: #fff; }
.contact-hero p { color: #f6e9d8; }


@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  h1 { max-width: 12ch; }
}

@media (max-width: 820px) {
  .hero h1 { max-width: 100%; font-size: clamp(2rem, 6vw, 3.25rem); line-height: 1.12; white-space: normal; }
  .hero-title-line { white-space: normal; }
  .brand { min-width: 0; }
  .brand-logo { width: 50px; height: 50px; }
  .brand-text small { display: none; }
  .menu-button { display: inline-grid; place-items: center; gap: 4px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
  .menu-button span { width: 18px; height: 2px; background: var(--black); }
  .nav { position: absolute; top: 82px; right: 14px; left: 14px; display: none; grid-template-columns: 1fr; gap: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16); }
  .nav.open { display: grid; }
  .nav-item { padding-bottom: 0; margin-bottom: 0; }
  .nav-item > a { width: 100%; min-height: 48px; padding: 14px 18px; border-radius: 0; border-bottom: 1px solid rgba(17, 17, 17, 0.08); }
  .has-dropdown::after { display: none; }
  .dropdown-menu { position: static; display: grid; min-width: 0; padding: 0 0 8px 22px; border: 0; border-radius: 0; box-shadow: none; }
  .dropdown-menu a { min-height: 42px; padding: 10px 14px; }
  .hero { min-height: auto; padding-top: 34px; }
  h1 { max-width: 11ch; font-size: clamp(3rem, 17vw, 5rem); }
  .hero-media img, .split-media img { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .proof-strip, .product-grid { grid-template-columns: 1fr; }
  .proof-strip div { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }}








button { font: inherit; }
.quote-trigger { border: 0; cursor: pointer; }
.modal-open { overflow: hidden; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-modal.open { display: flex; }
.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(5px);
}
.quote-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 42px) 34px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.quote-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  color: #7a8490;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.quote-close:hover { color: var(--black); }
.quote-head { display: grid; gap: 12px; margin-bottom: 28px; text-align: center; }
.quote-head .eyebrow { margin: 0; }
.quote-head h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.04; text-transform: uppercase; }
.quote-head p { margin: 0 auto; max-width: 560px; color: #778299; font-size: 0.94rem; }
.quote-form { display: grid; gap: 12px; }
.quote-form label { display: grid; gap: 6px; }
.quote-form label > span { color: #6b737a; font-size: 0.82rem; font-weight: 700; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #dfe3e6;
  border-radius: 4px;
  color: var(--black);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  outline: 0;
}
.quote-form input { min-height: 46px; padding: 0 13px; }
.quote-form textarea { min-height: 150px; padding: 12px 13px; resize: vertical; }
.quote-form input:focus,
.quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 140, 0, 0.14); }
.file-field input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; pointer-events: none; }
.file-field strong {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  border: 1px dashed #c7ced3;
  border-radius: 4px;
  color: #5f6870;
  background: #fafafa;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
}
.file-field strong:hover { border-color: var(--orange); color: var(--black); background: #fff8ec; }
.quote-submit {
  min-height: 50px;
  margin-top: 2px;
  border: 0;
  border-radius: 8px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.quote-submit:hover { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }

@media (max-width: 560px) {
  .quote-modal { padding: 12px; }
  .quote-dialog { padding: 42px 16px 22px; }
  .quote-head { text-align: left; }
  .quote-head p { margin: 0; }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}
.header-actions .nav { margin-left: auto; margin-right: 4px; }
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.header-quote:hover { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }

@media (max-width: 1180px) {
  .brand { min-width: 190px; }
  .nav-item > a { padding: 0 9px; }
  .header-quote { padding: 0 13px; }
}

@media (max-width: 820px) {
  .header-actions { flex: 0 0 auto; order: 3; width: 100%; }
  .header-actions .nav { margin: 0; }
  .header-quote { display: none; }
}

.custom-flow-section {
  padding: clamp(62px, 8vw, 96px) clamp(18px, 4vw, 58px);
  background: #eeeee7;
}
.custom-flow-inner {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}
.custom-flow-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: left;
}
.custom-flow-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}
.custom-flow-heading p {
  margin: 18px 0 0;
  color: #24313b;
  font-size: 1.08rem;
  line-height: 1.65;
}
.custom-flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 18px;
}
.custom-flow-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #dfe3df;
}
.custom-flow-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #081a2d;
}
.flow-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  color: #09498f;
  background: #dbe1e3;
  font-weight: 800;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.72);
}
.custom-flow-steps h3 {
  font-size: 1.03rem;
}
.custom-flow-steps p {
  max-width: 190px;
  margin: 0;
  color: #10243a;
  font-size: 0.92rem;
  line-height: 1.55;
}
.custom-flow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 50px;
  padding: 0 30px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #b85f22;
  font-weight: 700;
  cursor: pointer;
}
.custom-flow-button:hover { background: var(--orange-dark); }

@media (max-width: 900px) {
  .custom-flow-heading { text-align: center; }
  .custom-flow-steps { grid-template-columns: 1fr; gap: 22px; }
  .custom-flow-steps::before { display: none; }
  .custom-flow-steps p { max-width: 420px; }
  .custom-flow-button { margin-top: 34px; }
}
.site-footer {
  padding: clamp(42px, 6vw, 58px) clamp(18px, 4vw, 76px) 22px;
  color: #fff;
  background: #161616;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 70px);
  max-width: 1220px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand-block h2,
.footer-column h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}
.footer-brand-block h2 { font-size: 1.28rem; }
.footer-brand-block p {
  max-width: 420px;
  margin: 0;
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}
.footer-column a,
.footer-column button,
.footer-policy-links a,
.footer-contact a {
  color: #fff;
}
.footer-column a,
.footer-column button {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
}
.footer-column a:hover,
.footer-column button:hover,
.footer-policy-links a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
  padding-top: 30px;
}
.footer-contact {
  display: grid;
  gap: 7px;
  color: #eef5ff;
  font-size: 0.94rem;
}
.footer-contact strong { color: #fff; margin-bottom: 4px; }
.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-copy {
  max-width: 1220px;
  margin: 28px auto 0;
  color: #eef5ff;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .footer-main,
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-policy-links { justify-content: flex-start; }
}


.legal-hero {
  background: linear-gradient(180deg, #fff 0%, #f2f1eb 100%);
}
.legal-hero h1 { max-width: 16ch; }
.legal-updated {
  display: inline-flex;
  margin-top: 18px;
  color: #69747c;
  font-size: 0.94rem;
  font-weight: 700;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 820px);
  gap: clamp(26px, 5vw, 66px);
  align-items: start;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 58px);
  background: #fff;
}
.legal-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
}
.legal-toc strong {
  color: var(--black);
  font-size: 0.96rem;
}
.legal-toc a {
  color: #526069;
  font-size: 0.92rem;
  font-weight: 650;
}
.legal-toc a:hover { color: var(--orange-dark); }
.legal-content {
  display: grid;
  gap: 34px;
}
.legal-content article {
  display: grid;
  gap: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.legal-content article:last-child { border-bottom: 0; }
.legal-content h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.14;
}
.legal-content p {
  margin: 0;
  color: #4f5b62;
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}
.legal-content li a {
  color: var(--orange-dark);
  font-weight: 750;
}
.legal-content li a:hover { color: var(--black); }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}
.whatsapp-float::before { content: "☎"; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #25d366; background: #fff; font-size: 1rem; line-height: 1; }
.whatsapp-float:hover { background: #1ebe5d; transform: translateY(-2px); }
.faq-whatsapp-section { background: #fff; }
.faq-whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-whatsapp-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}
.faq-whatsapp-card h3 { font-size: 1.12rem; }
.faq-whatsapp-card p {
  margin: 0;
  color: #526069;
  line-height: 1.55;
}
.faq-whatsapp-card span {
  width: fit-content;
  margin-top: auto;
  color: #128c4a;
  font-weight: 900;
}
.faq-whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }
  .whatsapp-float span { display: none; }
  .faq-whatsapp-grid { grid-template-columns: 1fr; }
}


.quote-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: #128c4a;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}
.quote-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}






.why-hero {
  display: grid;
  place-items: center;
  min-height: clamp(460px, 58vw, 620px);
  max-width: none;
  padding: clamp(74px, 9vw, 118px) clamp(18px, 4vw, 76px);
  text-align: center;
  color: #111827;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.62)),
    url('./assets/images/manufacturing-banner.png');
  background-position: center;
  background-size: cover;
}
.why-hero .eyebrow { color: #111827; }
.why-hero h1 {
  max-width: min(1280px, 100%);
  color: #111827;
  font-size: clamp(3rem, 5vw, 5.45rem);
  line-height: 0.98;
}
.why-hero h1 span {
  display: block;
  color: var(--orange);
  white-space: nowrap;
}
.why-hero p {
  max-width: 760px;
  margin-inline: auto;
  color: #1f2937;
}
.why-hero .hero-actions { justify-content: center; }
.why-intro { background: #fff; }
.why-section { background: #f5f3ed; }
.why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 6px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 800;
}
.trust-section { background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-grid article {
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: #fbf6ee;
}
.trust-grid h3 { margin: 0 0 10px; }
.trust-grid p { margin: 0; color: #596367; }
.why-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 76px) clamp(18px, 4vw, 76px);
  color: #fff;
  background: #161616;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}
.why-cta > div { max-width: 760px; }
.why-cta h2 { margin: 0; color: #fff; font-size: clamp(1.8rem, 3vw, 3rem); }
.why-cta .eyebrow { color: var(--gold); }
@media (max-width: 900px) {
  .why-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .why-cta { align-items: flex-start; flex-direction: column; }
}




.contact-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, #fff 0%, #f7f4ee 100%);
}
.contact-info-panel h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4.1vw, 4.6rem);
  line-height: 0.98;
}
.contact-info-panel > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 34px;
  color: #626b73;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}
.contact-cards { display: grid; gap: 12px; max-width: 560px; }
.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px 20px;
  border: 1px solid #dedbd5;
  border-radius: 8px;
  color: #111;
  background: rgba(255, 255, 255, 0.82);
}
.contact-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  color: #111;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
  font-size: 1.12rem;
}
.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: #687080;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-card p { margin: 0; color: #111; line-height: 1.45; }
.contact-card:hover { border-color: rgba(242, 140, 0, 0.54); background: #fffaf2; }
.contact-form-panel {
  overflow: hidden;
  border: 1px solid #dedbd5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.08);
}
.contact-form-head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 26px 32px;
  border-bottom: 1px solid #e4e1dc;
}
.contact-form-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--orange);
  background: #fff7ec;
  font-size: 1.2rem;
}
.contact-form-head h2 { font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.contact-form-head p:not(.eyebrow) { margin: 10px 0 0; color: #626b73; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px 32px 34px;
}
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: #111; font-size: 0.92rem; font-weight: 700; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dedfe3;
  border-radius: 7px;
  color: #111;
  background: #fff;
  font: inherit;
  outline: 0;
}
.contact-form input,
.contact-form select { min-height: 46px; padding: 0 13px; }
.contact-form textarea { min-height: 130px; padding: 12px 13px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 140, 0, 0.14); }
.contact-submit {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #111;
  font-weight: 800;
  cursor: pointer;
}
.contact-submit:hover { background: var(--orange); color: #111; }
.contact-status { min-height: 20px; margin: 0; color: #07803b; font-weight: 700; }
@media (max-width: 900px) {
  .contact-page { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-head,
  .contact-form { padding-inline: 20px; }
  .contact-submit { justify-self: stretch; }
}



.manufacturing-hero {
  display: grid;
  align-items: center;
  min-height: clamp(480px, 58vw, 660px);
  padding: clamp(76px, 9vw, 124px) clamp(18px, 4vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.2)),
    url('./assets/images/manufacturing-banner.png');
  background-position: center;
  background-size: cover;
}
.manufacturing-hero > div { max-width: 820px; }
.manufacturing-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  line-height: 0.98;
}
.manufacturing-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #f5e7d4;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.manufacturing-hero .eyebrow { color: var(--gold); }
.manufacturing-intro { background: #fff; }
.manufacturing-process { background: #f5f3ed; }
.manufacturing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.manufacturing-steps article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid #dedbd5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}
.manufacturing-steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 900;
}
.manufacturing-steps p { margin: 12px 0 0; color: #596367; line-height: 1.58; }
.manufacturing-quality { background: #fff; }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.quality-grid article {
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: #fbf6ee;
}
.quality-grid p { margin: 10px 0 0; color: #596367; line-height: 1.6; }
.manufacturing-cta { border-top: 1px solid rgba(255, 255, 255, 0.12); }
@media (max-width: 1000px) {
  .manufacturing-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .manufacturing-steps,
  .quality-grid { grid-template-columns: 1fr; }
  .manufacturing-steps article { min-height: auto; }
}


.product-catalog-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 179, 58, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f3ed 100%);
}
.product-catalog-copy { max-width: 680px; }
.product-catalog-copy h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  line-height: 0.98;
}
.product-catalog-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #596367;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.product-catalog-media {
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.18);
}
.product-catalog-media img {
  display: block;
  width: 100%;
  min-height: 430px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 900px) {
  .product-catalog-hero { grid-template-columns: 1fr; }
  .product-catalog-media img { min-height: 260px; }
}

.product-catalog-showcase {
  display: grid;
  place-items: center;
  min-height: clamp(520px, 56vw, 680px);
  padding: clamp(48px, 7vw, 86px) clamp(14px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.3), rgba(17, 17, 17, 0.08)),
    url('./assets/images/product-catalog-collage.png');
  background-position: center;
  background-size: cover;
}
.catalog-panel {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  padding: clamp(42px, 6vw, 72px) clamp(22px, 5vw, 78px) 36px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.24);
  text-align: center;
  backdrop-filter: blur(4px);
}
.catalog-panel-logo {
  position: absolute;
  top: -32px;
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.18);
}
.catalog-brand {
  margin: 0 0 12px;
  color: #111;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
}
.catalog-panel h1 {
  max-width: 920px;
  color: #8a520d;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  text-transform: uppercase;
}
.catalog-panel > p:not(.catalog-brand) {
  max-width: 780px;
  margin: 22px 0 0;
  color: #1f2937;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.58;
}
.catalog-highlight {
  min-height: 58px;
  margin-top: 34px;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #161616;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.catalog-highlight:hover { background: var(--orange); color: #111; }
.catalog-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}
.catalog-links button,
.catalog-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 7px;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.catalog-links button {
  border: 0;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 14px 32px rgba(242, 140, 0, 0.28);
}
.catalog-links a {
  border: 2px solid #111;
  color: #111;
  background: rgba(255, 255, 255, 0.78);
}
.catalog-links button::before,
.catalog-links a::before {
  content: '◆';
  margin-right: 10px;
  color: currentColor;
  font-size: 0.76em;
}
.catalog-links button:hover,
.catalog-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.18);
}
.catalog-links a:hover { color: #fff; background: #111; }
@media (max-width: 640px) {
  .catalog-panel { padding-top: 48px; }
  .catalog-highlight { min-height: 52px; padding-inline: 18px; }
  .catalog-links { gap: 18px; }
}


.catalog-download-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding: 26px clamp(20px, 4vw, 36px);
  border: 1px solid rgba(242, 140, 0, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7eb 100%);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}
.catalog-download-strip p {
  max-width: 820px;
  margin: 0;
  color: #2f3639;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 800;
  line-height: 1.55;
}
.catalog-download-button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 7px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 14px 32px rgba(242, 140, 0, 0.26);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.catalog-download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(242, 140, 0, 0.34);
}
.catalog-dialog .quote-head h2 { text-transform: none; }
@media (max-width: 760px) {
  .catalog-download-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-download-button { width: 100%; }
}

.custom-pan-intro {
  background: #fff;
}
.custom-pan-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 28px) 0;
}
.custom-pan-copy h2 {
  max-width: 900px;
  color: #111;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  font-weight: 500;
  line-height: 1.06;
  text-transform: uppercase;
}
.custom-pan-copy h3 {
  margin: 34px 0 14px;
  color: #111;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
.custom-pan-copy p {
  max-width: 1120px;
  color: #2f3639;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}
.custom-pan-list {
  display: grid;
  gap: 12px;
  max-width: 1120px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-pan-list li {
  position: relative;
  padding-left: 28px;
  color: #2f3639;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.6;
}
.custom-pan-list li::before {
  content: '';
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}
.custom-pan-list strong {
  color: #111;
}


.resources-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 540px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) clamp(42px, 6vw, 96px);
  background: #fff;
}
.resources-hero-copy {
  max-width: 680px;
  justify-self: end;
  transform: translateX(-8cm);
}
.resources-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 500;
}
.resources-hero-copy h1 {
  max-width: 760px;
  color: #151827;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 1.02;
}
.resources-hero-copy p:not(.resources-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: #647085;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.65;
}
.resources-subscribe-card {
  justify-self: start;
  display: grid;
  justify-items: center;
  padding: clamp(28px, 4vw, 50px);
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 22px 62px rgba(17, 17, 17, 0.22);
  text-align: center;
}
.resources-subscribe-card img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.18);
}
.resources-subscribe-card h2 {
  margin-top: 34px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.05;
}
.resources-subscribe-card p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.55;
}
.resources-subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  margin-top: 34px;
}
.resources-subscribe-form input {
  min-height: 48px;
  width: 100%;
  border: 0;
  border-radius: 2px;
  padding: 0 16px;
  font: inherit;
  background: #fff;
}
.resources-subscribe-form button {
  min-height: 48px;
  border: 0;
  border-radius: 2px;
  padding: 0 24px;
  color: var(--orange);
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.resources-subscribe-form button:hover {
  color: #111;
  background: #fff3dd;
}
@media (max-width: 940px) {
  .resources-hero { grid-template-columns: 1fr; }
  .resources-hero-copy,
  .resources-subscribe-card { justify-self: stretch; }
  .resources-hero-copy { transform: none; }
  .resources-subscribe-card { max-width: 620px; }
}
@media (max-width: 560px) {
  .resources-subscribe-form { grid-template-columns: 1fr; }
  .resources-subscribe-form button { width: 100%; }
}




.category-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(62px, 8vw, 98px) clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, #fff 0%, #f6f2eb 100%);
}
.category-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
}
.category-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #596367;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}
.category-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}
.category-hero-media img {
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.category-nav-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(42px, 6vw, 66px) clamp(18px, 5vw, 76px);
  border-block: 1px solid var(--line);
  background: #fff;
}
.category-nav-section h2 {
  max-width: 520px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.category-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.category-nav-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #111;
  background: #fbf6ee;
  font-weight: 800;
  text-align: center;
}
.category-nav-card:hover,
.category-nav-card.active {
  border-color: rgba(242, 140, 0, 0.5);
  background: linear-gradient(135deg, var(--gold), var(--orange));
}
.category-subtype-section { background: #f5f3ed; }
.category-subtype-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.category-subtype-grid article {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.07);
}
.category-subtype-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--silver);
}
.category-subtype-grid h3 {
  padding: 20px 20px 8px;
  font-size: 1.12rem;
}
.category-subtype-grid button {
  justify-self: start;
  min-height: 42px;
  margin: 0 20px 20px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.category-subtype-grid button:hover { color: #fff; background: #111; }
.category-detail-section { background: #fff; }
.category-options-section { background: #fff; }
.category-options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.category-options-grid article {
  display: grid;
  gap: 16px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
}
.category-options-grid span {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.category-options-grid p {
  margin: 0;
  color: #384146;
  font-weight: 700;
  line-height: 1.55;
}
.category-cta { border-top: 1px solid rgba(255, 255, 255, 0.12); }
@media (max-width: 1100px) {
  .category-subtype-grid,
  .category-options-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-nav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .category-hero,
  .category-nav-section { grid-template-columns: 1fr; }
  .category-hero-media img { min-height: 0; }
}
@media (max-width: 620px) {
  .category-subtype-grid,
  .category-options-grid,
  .category-nav-grid { grid-template-columns: 1fr; }
}

.category-hero-overlay {
  display: grid;
  place-items: center;
  min-height: clamp(430px, 45vw, 620px);
  padding: clamp(72px, 8vw, 118px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    var(--category-bg);
  background-position: center;
  background-size: cover;
}
.category-hero-panel {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(820px, 100%);
  padding: clamp(34px, 4vw, 52px) clamp(20px, 5vw, 64px) 34px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 62px rgba(17, 17, 17, 0.18);
  text-align: center;
  backdrop-filter: blur(3px);
}
.category-hero-logo {
  position: absolute;
  top: -30px;
  width: 62px;
  height: 62px;
  object-fit: contain;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.2);
}
.category-hero-brand {
  margin: 0 0 12px;
  color: #111;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
}
.category-hero-panel h1 {
  max-width: 760px;
  color: #9a5b10;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
}
.category-hero-panel > p:not(.category-hero-brand) {
  max-width: 640px;
  margin: 20px 0 0;
  color: #1f3752;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}
.category-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  margin-top: 28px;
}
.category-hero-actions button {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #143b63;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.category-hero-actions button::before {
  content: '◆';
  margin-right: 9px;
  color: var(--orange);
  font-size: 0.72em;
}
.category-hero-actions button:hover { color: var(--orange-dark); }
@media (max-width: 640px) {
  .category-hero-overlay { min-height: 460px; }
  .category-hero-panel { padding-top: 44px; }
  .category-hero-actions { flex-direction: column; gap: 8px; }
}

.blog-hero {
  display: grid;
  align-content: center;
  min-height: clamp(460px, 52vw, 640px);
  max-width: none;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.46), rgba(17, 17, 17, 0.16)),
    url('./assets/images/blog-generated/best-bakeware-material-everyday-baking.webp');
  background-position: center;
  background-size: cover;
}
.blog-hero h1,
.blog-hero .eyebrow { color: #fff; }
.blog-hero p { color: #f5e7d4; }

.faq-hero {
  display: grid;
  align-content: center;
  min-height: clamp(460px, 52vw, 640px);
  max-width: none;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.48), rgba(17, 17, 17, 0.18)),
    url('./assets/images/faq-hero-workshop.png');
  background-position: center;
  background-size: cover;
}
.faq-hero h1,
.faq-hero .eyebrow { color: #fff; }
.faq-hero p { color: #f5e7d4; }

.faq-answer-section { background: #fff; }
.faq-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-answer-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbf6ee);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}
.faq-answer-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.12rem;
}
.faq-answer-card p {
  margin: 0;
  color: #526069;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .faq-answer-grid { grid-template-columns: 1fr; }
}

/* FAQ accordion overrides */
.faq-answer-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: 12px;
}
.faq-answer-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.faq-answer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-answer-toggle span {
  font-size: 1.08rem;
  line-height: 1.35;
}
.faq-answer-toggle b {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 1.25rem;
  line-height: 1;
}
.faq-answer-card.is-open .faq-answer-toggle b::before { content: '-'; }
.faq-answer-card.is-open .faq-answer-toggle b { font-size: 0; }
.faq-answer-panel {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.faq-answer-panel p {
  max-width: 820px;
  margin: 18px 0 0;
  color: #526069;
  line-height: 1.7;
}
.faq-answer-card.is-open {
  border-color: rgba(255, 153, 0, 0.5);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.09);
}

@media (max-width: 720px) {
  .faq-answer-toggle { padding: 18px; }
  .faq-answer-panel { padding: 0 18px 20px; }
}

.faq-contact-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(255, 153, 0, 0.28);
  border-radius: 8px;
  background: #111;
  text-align: center;
}
.faq-contact-cta p {
  max-width: 720px;
  margin: 0;
  color: #f7ead8;
  font-size: 1.05rem;
  line-height: 1.65;
}
.faq-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 153, 0, 0.22);
}
.faq-whatsapp-cta:hover { transform: translateY(-2px); }

@media (max-width: 720px) {
  .faq-contact-cta { padding: 24px 18px; }
  .faq-whatsapp-cta { width: 100%; }
}

.category-subtype-grid a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 20px 20px;
  padding: 0 16px;
  border-radius: 7px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 900;
}
.category-subtype-grid a:hover { color: #fff; background: #111; }

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(58px, 7vw, 98px) clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, #fff 0%, #fbf6ee 100%);
}
.product-detail-gallery {
  display: grid;
  gap: 14px;
}
.product-detail-main-image {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.13);
}
.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.product-detail-thumbs img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #66727a;
  font-weight: 800;
}
.product-breadcrumb a { color: #143b63; }
.product-detail-copy h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.98;
}
.product-detail-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: #526069;
  font-size: 1.08rem;
  line-height: 1.72;
}
.product-detail-meta {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.product-detail-meta div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}
.product-detail-meta span {
  color: #687075;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-detail-meta strong { color: var(--black); }
.product-detail-section { background: #fff; }
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-feature-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
}
.product-feature-grid span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}
.product-feature-grid h3 { font-size: 1.05rem; }
.product-feature-grid p { margin: 0; color: #526069; line-height: 1.6; }
.product-resource-section { background: #111; color: #fff; }
.product-resource-section .split-copy p { color: #f5e7d4; }
.product-resource-box {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 320px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.product-resource-box h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.product-resource-box p { margin: 0; color: #f5e7d4; }
.product-resource-box button {
  justify-self: start;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
  cursor: pointer;
}
.related-product-section { background: #fff; }
.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.related-product-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
}
.related-product-card span { color: var(--orange-dark); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.related-product-card strong { color: var(--black); font-size: 1.25rem; }
.related-product-card:hover { border-color: rgba(255, 153, 0, 0.55); transform: translateY(-2px); }

@media (max-width: 1000px) {
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .product-feature-grid,
  .related-product-grid { grid-template-columns: 1fr; }
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.customize-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}
.customize-whatsapp-button:hover {
  background: var(--orange);
  color: #111;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .product-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .product-detail-actions .primary-button,
  .customize-whatsapp-button {
    width: 100%;
  }
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: clamp(560px, 58vw, 720px);
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.66), rgba(17, 17, 17, 0.38)),
    url('./assets/images/manufacturing-banner.png');
  background-position: center;
  background-size: cover;
}
.case-hero-copy h1 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(2.75rem, 5vw, 5.6rem);
  line-height: 0.98;
}
.case-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #f5e7d4;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}
.case-hero .eyebrow { color: var(--gold); }
.case-hero-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(10px);
}
.case-hero-panel strong {
  color: #fff;
  font-size: 1.35rem;
}
.case-hero-panel span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5e7d4;
  font-weight: 800;
}
.case-hero-panel span::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.case-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d8d2c8;
}
.case-proof-strip article {
  min-height: 190px;
  padding: 30px clamp(18px, 3vw, 36px);
  background: #fff;
}
.case-proof-strip h3 { font-size: 1.15rem; }
.case-proof-strip p { margin: 12px 0 0; color: #526069; line-height: 1.62; }
.case-study-list { background: #fbf6ee; }
.case-study-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
  margin-top: 34px;
  padding: clamp(18px, 2.8vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}
.case-study-card.reverse { grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr); }
.case-study-card.reverse .case-study-media { order: 2; }
.case-study-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--silver);
}
.case-study-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.case-study-content {
  display: grid;
  align-content: center;
  gap: 20px;
}
.case-tag {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff1dc;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.case-study-content h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 3.9rem);
}
.case-summary {
  max-width: 820px;
  margin: 0;
  color: #526069;
  font-size: 1.05rem;
  line-height: 1.7;
}
.case-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-columns > div,
.case-outcome {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
}
.case-columns h3,
.case-outcome h3 { margin-bottom: 12px; }
.case-outcome ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-outcome li {
  padding: 14px;
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-weight: 800;
}
.case-process-section { background: #fff; }
.case-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.case-process-grid article {
  display: grid;
  gap: 14px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf6ee;
}
.case-process-grid span {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}
.case-process-grid p { margin: 0; color: #263238; font-weight: 800; line-height: 1.45; }
.case-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  color: #fff;
}
.case-cta h2 { max-width: 880px; color: #fff; font-size: clamp(2rem, 4vw, 4rem); }
.case-cta .eyebrow { color: var(--gold); }
.case-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
  white-space: nowrap;
}
.case-whatsapp-button:hover { background: #fff; transform: translateY(-2px); }

@media (max-width: 1100px) {
  .case-proof-strip,
  .case-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-study-card,
  .case-study-card.reverse { grid-template-columns: 1fr; }
  .case-study-card.reverse .case-study-media { order: 0; }
}
@media (max-width: 760px) {
  .case-hero { grid-template-columns: 1fr; }
  .case-columns,
  .case-outcome ul,
  .case-proof-strip,
  .case-process-grid { grid-template-columns: 1fr; }
  .case-cta { align-items: flex-start; flex-direction: column; }
  .case-whatsapp-button { width: 100%; }
}

.product-specifications {
  margin: 28px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}
.product-specifications h2 {
  padding: 22px 22px 8px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}
.product-specifications table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.product-specifications th,
.product-specifications td {
  padding: 13px 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  text-align: left;
  vertical-align: top;
}
.product-specifications th {
  color: #111;
  font-weight: 900;
}
.product-specifications td:first-child {
  width: 42%;
  color: #111;
  font-weight: 700;
}
.product-specifications td:last-child {
  color: #263238;
}
.product-specifications tbody tr:first-child td {
  background: #fff7ea;
  font-weight: 900;
}
.product-specifications tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 560px) {
  .product-specifications th,
  .product-specifications td { padding: 12px 14px; }
  .product-specifications table { font-size: 0.9rem; }
}

.product-detail-main-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}
.product-detail-main-button:focus-visible,
.product-thumb-button:focus-visible {
  outline: 3px solid rgba(242, 140, 0, 0.55);
  outline-offset: 3px;
}
.product-detail-thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-thumb-button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.product-thumb-button img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
.product-thumb-button:hover,
.product-thumb-button.active {
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  transform: translateY(-2px);
}
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}
.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.76);
  cursor: zoom-out;
}
.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 96vw);
  max-height: 92vh;
}
.product-lightbox-dialog img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.product-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 560px) {
  .product-detail-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-lightbox-close { top: 8px; right: 8px; }
}

.related-product-card {
  overflow: hidden;
  padding: 0;
  gap: 0;
}
.related-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.related-product-card span,
.related-product-card strong {
  margin-left: 24px;
  margin-right: 24px;
}
.related-product-card span { margin-top: 22px; }
.related-product-card strong { margin-bottom: 24px; }

/* Materials and Heat Performance blog */
.blog-index-section { background: #fff; }
.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.blog-topic-card {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbf6ee);
  color: var(--black);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.05);
}
.blog-topic-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}
.blog-topic-card strong { font-size: 1.08rem; line-height: 1.3; }
.blog-topic-card small { color: #5d6678; line-height: 1.55; }
.blog-topic-card:hover { transform: translateY(-2px); border-color: rgba(216, 101, 45, 0.45); }
.blog-body-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}
.blog-longform {
  scroll-margin-top: 92px;
  padding: clamp(32px, 5vw, 56px) 0;
  border-top: 1px solid var(--line);
}
.blog-longform:first-child { border-top: 0; }
.blog-longform-head {
  max-width: 860px;
  margin-bottom: 22px;
}
.blog-longform-head h2 {
  margin: 8px 0 14px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.blog-longform-head p:not(.eyebrow) {
  margin: 0;
  color: #526069;
  font-size: 1.08rem;
  line-height: 1.65;
}
.blog-visual-frame {
  margin: 24px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.07);
}
.blog-article-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.blog-visual-frame figcaption {
  padding: 10px 4px 2px;
  color: #65717c;
  font-size: 0.92rem;
}
.blog-answer-box {
  max-width: 880px;
  margin: 24px 0 30px;
  padding: 18px 22px;
  border-left: 5px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: #fff4e8;
  color: #332217;
  line-height: 1.65;
}
.blog-copy-block {
  max-width: 880px;
  margin: 30px 0;
}
.blog-copy-block h3,
.blog-faq-block h3,
.blog-article-cta h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
}
.blog-copy-block p {
  margin: 0 0 14px;
  color: #3e4a55;
  line-height: 1.78;
}
.blog-copy-block a { color: var(--orange-dark); font-weight: 800; }
.blog-faq-block {
  max-width: 880px;
  margin: 34px 0;
  border-top: 1px solid var(--line);
}
.blog-faq-block details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.blog-faq-block summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 800;
}
.blog-faq-block p { margin: 10px 0 0; color: #526069; line-height: 1.7; }
.blog-article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin-top: 34px;
  padding: 26px;
  border-radius: 8px;
  background: #151515;
  color: #fff;
}
.blog-article-cta h3 { color: #fff; }
.blog-article-cta p { color: #f5e7d4; }
.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.blog-article-cta .secondary-button { border-color: rgba(255, 255, 255, 0.28); color: #111; background: #fff; }
.blog-final-cta { margin-top: 0; }
@media (max-width: 760px) {
  .blog-article-cta { grid-template-columns: 1fr; padding: 22px; }
  .blog-cta-actions { justify-content: flex-start; }
  .blog-topic-card { min-height: 0; }
}

.blog-hero {
  min-height: clamp(500px, 58vw, 680px);
  padding: clamp(76px, 10vw, 130px) clamp(20px, 6vw, 92px) clamp(54px, 8vw, 92px);
}
.blog-hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 1.06;
}
.blog-hero p:not(.eyebrow) {
  max-width: 780px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.blog-hero .hero-actions { margin-top: 24px; }
@media (max-width: 640px) {
  .blog-hero { min-height: 560px; padding: 96px 18px 52px; }
  .blog-hero h1 { font-size: 2.45rem; }
}


/* TM-inspired blog index and article system */
.blog-static-fallback { width: min(1080px, calc(100% - 32px)); margin: 48px auto; }
.blog-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  min-height: clamp(520px, 58vw, 680px);
  padding: clamp(92px, 11vw, 150px) clamp(20px, 6vw, 88px) clamp(54px, 8vw, 92px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.48), rgba(17, 17, 17, 0.16)),
    url('./assets/images/blog-generated/best-bakeware-material-everyday-baking.webp');
  background-position: center;
  background-size: cover;
}
.blog-index-hero h1 {
  max-width: 880px;
  margin: 10px 0 20px;
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 1.02;
}
.blog-index-hero p:not(.eyebrow) { max-width: 760px; color: #f5e7d4; font-size: 1.12rem; line-height: 1.65; }
.blog-category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.blog-category-pills a,
.blog-category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}
.blog-index-quote-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.blog-index-quote-card h2 { margin: 8px 0 12px; color: var(--black); font-size: 1.7rem; }
.blog-index-quote-card p:not(.eyebrow) { color: #526069; }
.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(17, 17, 17, 0.07);
}
.blog-featured-media img,
.blog-list-image img,
.blog-article-hero-image img,
.blog-inline-image img,
.blog-related-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured-media { aspect-ratio: 1.45; overflow: hidden; border-radius: 8px; background: #f4f0ea; }
.blog-card-meta { margin: 0 0 10px; color: var(--orange-dark); font-size: 0.84rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-featured-copy h2 { margin: 0 0 14px; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.08; }
.blog-featured-copy h2 a,
.blog-list-card h3 a { color: var(--black); text-decoration: none; }
.blog-featured-copy p:not(.blog-card-meta),
.blog-list-card-copy p { color: #526069; line-height: 1.7; }
.blog-list-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; align-items: start; }
.blog-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.blog-list-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.055);
}
.blog-list-image { display: block; aspect-ratio: 1.45; overflow: hidden; background: #f4f0ea; }
.blog-list-card-copy { padding: 20px; }
.blog-list-card h3 { margin: 0 0 10px; font-size: 1.22rem; line-height: 1.28; }
.blog-read-more { color: var(--orange-dark); font-weight: 900; text-decoration: none; }
.blog-list-sidebar,
.blog-article-sidebar { display: grid; gap: 16px; }
.blog-sidebar-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.045);
}
.blog-sidebar-card.sticky { position: sticky; top: 96px; }
.blog-sidebar-card h3 { margin: 0 0 4px; color: var(--black); }
.blog-sidebar-card a { color: #3f4b55; font-weight: 800; text-decoration: none; }
.blog-sidebar-card.dark { background: #151515; color: #fff; }
.blog-sidebar-card.dark h3 { color: #fff; }
.blog-sidebar-card.dark p { color: #f5e7d4; }
.blog-sidebar-card.dark button { min-height: 44px; border: 0; border-radius: 6px; background: var(--orange); color: #111; font-weight: 900; cursor: pointer; }
.blog-article-page { background: #fff; }
.blog-article-hero { width: min(1040px, calc(100% - 32px)); margin: 0 auto; padding: clamp(54px, 8vw, 96px) 0 28px; }
.blog-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; color: #68737d; font-size: 0.92rem; }
.blog-breadcrumb a { color: var(--orange-dark); font-weight: 800; text-decoration: none; }
.blog-article-hero .blog-category-badge { background: #fff0df; color: var(--orange-dark); }
.blog-article-hero h1 { max-width: 980px; margin: 18px 0 18px; color: var(--black); font-size: clamp(2.7rem, 5.4vw, 5.4rem); line-height: 1.02; }
.blog-article-dek { max-width: 820px; color: #526069; font-size: 1.16rem; line-height: 1.7; }
.blog-author-line { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; color: #68737d; font-weight: 800; }
.blog-author-line span + span::before { content: '•'; margin-right: 12px; color: #c58a4a; }
.blog-article-hero-image { width: min(1120px, calc(100% - 32px)); margin: 0 auto 36px; }
.blog-article-hero-image img { aspect-ratio: 1.9; border-radius: 8px; background: #f4f0ea; }
.blog-article-hero-image figcaption,
.blog-inline-image figcaption { margin-top: 8px; color: #68737d; font-size: 0.9rem; }
.blog-article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: clamp(28px, 4vw, 56px); width: min(1120px, calc(100% - 32px)); margin: 0 auto 72px; align-items: start; }
.blog-article-main { min-width: 0; }
.blog-intro-box { margin-bottom: 34px; padding: 22px 24px; border-left: 5px solid var(--orange); border-radius: 0 8px 8px 0; background: #fff4e8; color: #332217; line-height: 1.72; }
.blog-article-section { margin: 36px 0; }
.blog-article-section h2,
.blog-faq-block h2,
.blog-author-box h2,
.blog-related-posts h2 { margin: 0 0 14px; color: var(--black); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.16; }
.blog-article-section p { margin: 0 0 15px; color: #3e4a55; line-height: 1.82; }
.blog-article-section a { color: var(--orange-dark); font-weight: 900; }
.blog-inline-image { margin: 28px 0; }
.blog-inline-image img { aspect-ratio: 1.75; border-radius: 8px; background: #f4f0ea; }
.blog-table-section table { width: 100%; border-collapse: collapse; margin-top: 16px; overflow: hidden; border-radius: 8px; }
.blog-table-section th,
.blog-table-section td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.55; }
.blog-table-section th { background: #fff0df; color: var(--black); }
.blog-faq-block { margin: 42px 0; border-top: 1px solid var(--line); }
.blog-faq-block details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.blog-faq-block summary { cursor: pointer; color: var(--black); font-weight: 900; }
.blog-faq-block p { margin: 10px 0 0; color: #526069; line-height: 1.7; }
.blog-article-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; margin: 42px 0; padding: 28px; border-radius: 8px; background: #151515; color: #fff; }
.blog-article-cta h2 { margin: 0 0 10px; color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.blog-article-cta p { color: #f5e7d4; }
.blog-article-cta .secondary-button { border-color: rgba(255,255,255,.28); color: #111; background: #fff; }
.blog-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.blog-author-box { display: grid; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fbf6ee; }
.blog-author-box p { margin: 0; color: #526069; line-height: 1.65; }
.blog-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.blog-post-nav a { padding: 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--black); text-decoration: none; }
.blog-post-nav span { display: block; margin-bottom: 8px; color: var(--orange-dark); font-weight: 900; }
.blog-related-posts > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.blog-related-card { display: grid; gap: 10px; color: var(--black); text-decoration: none; }
.blog-related-card img { aspect-ratio: 1.35; border-radius: 8px; background: #f4f0ea; }
.blog-related-card span { color: #68737d; font-size: .9rem; }
@media (max-width: 980px) {
  .blog-index-hero,
  .blog-featured-card,
  .blog-list-layout,
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .blog-sidebar-card.sticky { position: static; }
}
@media (max-width: 640px) {
  .blog-index-hero { padding: 92px 18px 48px; min-height: 620px; }
  .blog-index-hero h1,
  .blog-article-hero h1 { font-size: 2.55rem; }
  .blog-article-hero-image img { aspect-ratio: 1.2; }
  .blog-article-cta,
  .blog-author-box,
  .blog-post-nav,
  .blog-related-posts > div { grid-template-columns: 1fr; }
  .blog-cta-actions { justify-content: flex-start; }
  .blog-table-section { overflow-x: auto; }
  .blog-table-section table { min-width: 620px; }
}


@media (max-width: 760px) {
  .header-actions { max-width: 100vw; overflow-x: clip; }
}



.footer-company-link {
  display: inline-flex;
  margin-top: 16px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.procurement-facts {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #dedbd5;
  border-radius: 8px;
  background: #fffaf2;
}
.procurement-facts h2 { margin-bottom: 16px; font-size: 1.35rem; }
.procurement-facts dl { display: grid; gap: 0; margin: 0; }
.procurement-facts dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid #e6ded2;
}
.procurement-facts dt { font-weight: 850; }
.procurement-facts dd { margin: 0; color: #535d65; line-height: 1.55; }
.procurement-note { margin: 16px 0 0; color: #6b5230; font-size: 0.9rem; line-height: 1.55; }
.contact-card { grid-template-columns: 1fr; }
.contact-form-head { grid-template-columns: 1fr; }
@media (max-width: 720px) {
  .whatsapp-float {
    position: static;
    width: calc(100% - 28px);
    margin: 14px;
  }
  .whatsapp-float span { display: inline; }
  .procurement-facts dl div { grid-template-columns: 1fr; gap: 5px; }
}
.consent-field {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 9px !important;
  color: #515b63;
  font-size: 0.82rem;
  line-height: 1.45;
}
.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}
.consent-field a { color: var(--orange-dark); text-decoration: underline; }
.quote-status.is-error, .contact-status.is-error { color: #b42318; }
.quote-status.is-success, .contact-status.is-success { color: #128c4a; }