:root {
  --ink: #10100f;
  --ink-soft: #1b1a18;
  --paper: #f3f0e9;
  --paper-2: #e6e0d5;
  --white: #fffdf8;
  --accent: #e78b18;
  --accent-deep: #c96e06;
  --muted: #77736c;
  --line: rgba(16, 16, 15, 0.15);
  --line-light: rgba(255, 255, 255, 0.16);
  --container: 1240px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 9999;
  background: var(--white); padding: 10px 14px; color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.topbar { background: #090909; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .04em; }
.topbar__inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar p { margin: 0; }
.topbar__right { display: flex; align-items: center; gap: 17px; }
.topbar__right span:not(:last-of-type)::after { content: "•"; margin-left: 17px; color: rgba(255,255,255,.25); }
.topbar a { color: var(--white); }

.site-header {
  position: absolute; left: 0; right: 0; z-index: 50; color: var(--white);
  border-bottom: 1px solid var(--line-light); transition: background .25s ease, transform .25s ease;
}
.site-header.is-sticky { position: fixed; top: 0; background: rgba(10,10,10,.94); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.header__inner { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 150px; height: 68px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 150px; height: 100px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 34px; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { color: rgba(255,255,255,.78); transition: color .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { border: 1px solid rgba(255,255,255,.45); padding: 11px 18px; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 1px; background: var(--white); margin: 6px 0; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative; overflow: hidden; min-height: 820px;
  color: var(--white); background: var(--ink);
  padding: 170px 0 90px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 18% 24%, rgba(231,139,24,.12), transparent 28%), linear-gradient(105deg, rgba(0,0,0,.18), rgba(0,0,0,.35));
}
.hero__pattern { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, #000, transparent 72%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 76px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; }
.eyebrow span { width: 34px; height: 1px; background: var(--accent); }
.eyebrow--dark { color: #6e6961; }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; line-height: 1.04; }
h1 { margin-bottom: 28px; font-size: clamp(52px, 6vw, 82px); font-weight: 600; }
h1 em,h2 em { color: var(--accent); font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
.hero__lead { max-width: 650px; margin-bottom: 35px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 13px 22px; border: 1px solid transparent; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button--primary { background: var(--accent); color: #15110b; }
.button--primary:hover { background: #f29a2b; }
.button--ghost { border-color: rgba(255,255,255,.25); color: var(--white); }
.button--ghost:hover { border-color: rgba(255,255,255,.7); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.hero__meta span:not(:last-child)::after { content: "/"; margin-left: 24px; color: var(--accent); }

.hero__visual { position: relative; height: 560px; }
.hero-card { overflow: hidden; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--main { position: absolute; inset: 10px 0 35px 82px; }
.hero-card--main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 48%); }
.hero-card__caption { position: absolute; left: 26px; right: 26px; bottom: 23px; z-index: 2; display: flex; align-items: end; justify-content: space-between; }
.hero-card__caption span { color: var(--accent); font-size: 12px; letter-spacing: .2em; }
.hero-card__caption p { margin: 0; font-family: "Manrope"; font-size: 18px; line-height: 1.3; text-align: right; }
.hero-card--coffee { position: absolute; width: 210px; height: 285px; left: -18px; bottom: 0; border: 8px solid var(--ink); z-index: 3; }
.image-label { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; background: rgba(15,15,14,.84); color: var(--white); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.hero__seal { position: absolute; width: 112px; height: 112px; right: -26px; top: -12px; z-index: 4; background: var(--accent); border-radius: 50%; display: grid; place-items: center; color: var(--ink); }
.hero__seal svg { width: 96px; height: 96px; fill: currentColor; }
.hero__seal text { font-family: "DM Sans"; font-size: 7px; font-weight: 700; letter-spacing: 1.1px; }

.trust-strip { background: var(--accent); color: var(--ink); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.35fr; min-height: 150px; }
.trust-strip article { display: flex; align-items: center; gap: 18px; padding: 30px; border-right: 1px solid rgba(16,16,15,.22); }
.trust-strip strong { font-family: "Manrope"; font-size: 34px; letter-spacing: -.05em; }
.trust-strip span { font-size: 13px; line-height: 1.45; }
.trust-strip__statement { justify-content: flex-end; text-align: right; border-right: 0 !important; font-size: 17px; }
.trust-strip__statement span { font-size: 17px; }
.trust-strip__statement strong { display: block; font-family: "Playfair Display"; font-style: italic; font-size: 24px; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; margin-bottom: 54px; }
.section-heading h2,.why h2,.about h2 { margin-bottom: 0; font-size: clamp(40px, 4.5vw, 62px); font-weight: 600; }
.section-heading > p { max-width: 560px; margin: 0; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 16px; }
.product-card { position: relative; min-height: 530px; overflow: hidden; color: var(--white); background: var(--ink); }
.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover img { transform: scale(1.035); }
.product-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.94) 0%, rgba(8,8,8,.35) 62%, rgba(8,8,8,.05) 100%); }
.product-card__content { position: absolute; inset: auto 28px 28px; z-index: 2; }
.product-card__number { position: absolute; right: 0; top: 0; color: var(--accent); font-size: 12px; letter-spacing: .18em; }
.product-card__kicker { margin: 0 0 9px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }
.product-card h3 { margin: 0 0 11px; font-family: "Manrope"; font-size: 31px; letter-spacing: -.04em; }
.product-card p:not(.product-card__kicker) { min-height: 78px; margin-bottom: 17px; color: rgba(255,255,255,.68); font-size: 14px; }
.product-card a { display: inline-flex; gap: 9px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); font-size: 13px; }
.product-card--wide .product-card__content { max-width: 440px; }

.why { background: var(--white); }
.why__grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 90px; align-items: center; }
.why__visual { position: relative; min-height: 740px; }
.why__visual > img { position: absolute; inset: 0; width: calc(100% - 42px); height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.04); }
.why__visual-note { position: absolute; right: 0; bottom: 48px; width: 240px; padding: 28px; background: var(--accent); }
.why__visual-note span { display: block; margin-bottom: 9px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.why__visual-note strong { font-family: "Manrope"; font-size: 25px; line-height: 1.2; letter-spacing: -.04em; }
.why__content h2 { margin-bottom: 24px; }
.why__intro { margin-bottom: 40px; color: var(--muted); }
.benefit-list article { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
.benefit-list article:last-child { border-bottom: 1px solid var(--line); }
.benefit-list > article > span { padding-top: 4px; color: var(--accent-deep); font-size: 11px; letter-spacing: .15em; }
.benefit-list h3 { margin: 0 0 5px; font-family: "Manrope"; font-size: 18px; letter-spacing: -.02em; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 14px; }

.process { color: var(--white); background: var(--ink); }
.process__top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; margin-bottom: 60px; }
.process__top h2 { margin-bottom: 0; font-size: clamp(40px, 4.5vw, 62px); }
.process__top > p { margin: 0; max-width: 480px; color: rgba(255,255,255,.58); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.process-step { min-height: 340px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-step > span { display: block; color: var(--accent); font-size: 11px; letter-spacing: .16em; }
.process-step svg { width: 50px; height: 50px; margin: 52px 0 35px; fill: none; stroke: rgba(255,255,255,.85); stroke-width: 1.3; }
.process-step h3 { margin-bottom: 13px; font-family: "Manrope"; font-size: 20px; line-height: 1.35; }
.process-step p { margin: 0; color: rgba(255,255,255,.52); font-size: 14px; }

.about { background: var(--paper-2); }
.about__grid { display: grid; grid-template-columns: 1fr .95fr; gap: 100px; align-items: stretch; }
.about__copy p { color: var(--muted); }
.about__copy h2 { margin-bottom: 27px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 10px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-weight: 700; font-size: 14px; }
.about__panel { display: flex; flex-direction: column; justify-content: space-between; min-height: 490px; padding: 55px; background: var(--accent); }
.about__panel > p { max-width: 580px; font-family: "Playfair Display"; font-size: clamp(30px, 3.5vw, 47px); font-style: italic; line-height: 1.22; }
.about__locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 26px; border-top: 1px solid rgba(16,16,15,.25); }
.about__locations span { font-family: "Manrope"; font-weight: 700; }
.about__locations small { display: block; margin-top: 4px; font-family: "DM Sans"; font-weight: 400; font-size: 11px; color: rgba(16,16,15,.62); }

.enquiry { position: relative; overflow: hidden; padding: 120px 0; color: var(--white); background: #0e0e0d; }
.enquiry::after { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: -260px; border: 1px solid rgba(231,139,24,.3); border-radius: 50%; box-shadow: 0 0 0 70px rgba(231,139,24,.03), 0 0 0 140px rgba(231,139,24,.02); }
.enquiry__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.enquiry__content h2 { margin-bottom: 26px; font-size: clamp(40px, 4.5vw, 62px); }
.enquiry__content > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.58); }
.contact-block { margin-top: 48px; border-top: 1px solid var(--line-light); }
.contact-block a { display: block; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.contact-block span { display: block; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.contact-block strong { display: block; margin-top: 3px; font-family: "Manrope"; font-size: 17px; }
.contact-block small { display: block; margin-top: 6px; color: rgba(255,255,255,.48); font-size: 12px; }

.enquiry-form { padding: 38px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.form-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-head h3 { margin: 0; font-family: "Manrope"; font-size: 23px; }
.form-head p { margin: 0; color: var(--muted); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.form-grid__full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #d8d2c8; border-radius: 0; background: #fff; color: var(--ink); outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { height: 48px; padding: 0 13px; }
textarea { resize: vertical; min-height: 120px; padding: 12px 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(231,139,24,.13); }
[aria-invalid="true"] { border-color: #b3261e !important; }
.field-error { display: block; min-height: 16px; margin-top: 3px; color: #a5241d; font-size: 10px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 22px; color: var(--muted); font-size: 11px; }
.consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent-deep); }
.form-submit { border: 0; min-width: 210px; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 13px; font-weight: 600; }
.form-status.success { color: #24753a; }
.form-status.error { color: #a5241d; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.footer { color: rgba(255,255,255,.64); background: #070707; }
.footer__top { display: grid; grid-template-columns: 1.45fr repeat(4, 1fr); gap: 38px; padding: 70px 0 55px; }
.footer__brand img { width: 150px; height: 100px; object-fit: contain; margin-top: -24px; }
.footer__brand p { max-width: 320px; margin-top: -10px; }
.footer h3 { margin-bottom: 16px; color: var(--white); font-family: "Manrope"; font-size: 13px; }
.footer a { display: block; margin: 8px 0; font-size: 13px; }
.footer a:hover { color: var(--white); }
.footer__social { min-width: 0; }
.footer__qr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.qr-card { margin: 0; padding: 10px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.qr-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #fff; }
.qr-card figcaption { margin-top: 8px; color: var(--white); font-size: 12px; line-height: 1.4; }
.qr-card figcaption span { color: rgba(255,255,255,.62); font-size: 11px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-light); font-size: 11px; }
.footer__bottom p { margin: 0; }

.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); box-shadow: 0 8px 30px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp svg { width: 25px; fill: var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
.reveal--delay-3 { transition-delay: .32s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero__grid { gap: 35px; }
  .hero-card--main { left: 55px; }
  .trust-strip__grid { grid-template-columns: repeat(3,1fr); }
  .trust-strip__statement { grid-column: 1 / -1; min-height: 90px; justify-content: center; text-align: center; border-top: 1px solid rgba(16,16,15,.2); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--wide { grid-column: 1 / -1; min-height: 600px; }
  .why__grid { gap: 55px; }
  .why__visual { min-height: 650px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid,.enquiry__grid { gap: 55px; }
}

@media (max-width: 820px) {
  .topbar__right span { display: none; }
  .site-header { top: 36px; }
  .site-header.is-sticky { top: 0; }
  .menu-toggle { display: block; z-index: 2; }
  .main-nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; background: rgba(8,8,8,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-size: 20px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 155px; }
  .hero__grid,.section-heading,.process__top,.why__grid,.about__grid,.enquiry__grid { grid-template-columns: 1fr; }
  .hero__visual { height: 530px; margin-top: 30px; }
  .section-heading,.process__top { gap: 25px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip article { justify-content: center; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid rgba(16,16,15,.2); border-right: 0; }
  .why__visual { min-height: 560px; order: 2; }
  .why__content { order: 1; }
  .about__panel { min-height: 420px; }
  .map-card__top { align-items: start; flex-direction: column; }
  .map-card__tag { white-space: normal; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__social { grid-column: 2 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__right { display: none; }
  .header__inner { height: 72px; }
  .brand,.brand img { width: 136px; }
  .hero { min-height: auto; padding: 135px 0 65px; }
  h1 { font-size: 47px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__meta { display: grid; gap: 6px; }
  .hero__meta span::after { display: none; }
  .hero__visual { height: 420px; }
  .hero-card--main { inset: 0 0 20px 35px; }
  .hero-card--coffee { width: 155px; height: 220px; left: -4px; }
  .hero__seal { width: 88px; height: 88px; right: -4px; top: -20px; }
  .hero__seal svg { width: 74px; height: 74px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip article { border-right: 0; border-bottom: 1px solid rgba(16,16,15,.2); }
  .trust-strip article:nth-child(3),.trust-strip__statement { grid-column: auto; border-top: 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,.why h2,.process__top h2,.about h2,.enquiry__content h2 { font-size: 39px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card,.product-card--wide { grid-column: auto; min-height: 500px; }
  .why__visual { min-height: 490px; }
  .why__visual-note { width: 195px; padding: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 290px; }
  .process-step svg { margin: 38px 0 27px; }
  .about__panel { min-height: 470px; padding: 34px; }
  .about__locations { grid-template-columns: 1fr; }
  .enquiry-form { padding: 24px 18px; }
  .form-head { display: block; }
  .form-head p { margin-top: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .map-card { padding: 16px; }
  .map-card h3 { font-size: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__social, .footer__top > div:last-child { grid-column: 1 / -1; }
  .footer__qr-grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { display: block; text-align: center; }
  .footer__bottom p + p { margin-top: 5px; }
  .whatsapp { width: 48px; height: 48px; right: 14px; bottom: 14px; }
}

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


.site-header--solid { position: sticky; top: 0; background: rgba(10,10,10,.94); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.site-header--solid.is-sticky { position: sticky; }
.about__actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 135px 0 88px;
  color: var(--white);
  background: #0d0d0c;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(231,139,24,.16), transparent 28%), linear-gradient(110deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.page-hero__image { overflow: hidden; box-shadow: var(--shadow); }
.page-hero__image img { height: 560px; object-fit: cover; }
.page-hero__visual { position: relative; }
.page-hero__card {
  position: absolute;
  right: -24px;
  bottom: 24px;
  width: min(320px, 88%);
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.page-hero__card span { display: block; margin-bottom: 8px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.page-hero__card strong { display: block; margin-bottom: 8px; font-family: "Manrope"; font-size: 26px; line-height: 1.1; }
.page-hero__card p { margin: 0; color: #534d45; font-size: 14px; line-height: 1.6; }

.trust-strip--dark { background: #121211; color: var(--white); }
.trust-strip--dark article { border-right-color: rgba(255,255,255,.12); }
.trust-strip--dark .trust-strip__statement { border-top-color: rgba(255,255,255,.12); }
.trust-strip--dark span { color: rgba(255,255,255,.76); }
.trust-strip--dark strong { color: var(--white); }
.trust-strip--dark .trust-strip__statement strong { color: var(--accent); }

.story-section { background: #f7f3ec; }
.story-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: start; }
.story-copy h2,.capability-copy h2,.page-cta h2 { font-size: clamp(40px, 4.5vw, 60px); font-weight: 600; }
.quote-panel {
  margin: 34px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: #fffdf9;
  color: #403a32;
  font-size: 18px;
  line-height: 1.7;
}
.story-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(16,16,15,.08);
  box-shadow: 0 18px 46px rgba(0,0,0,.06);
}
.story-panel h3 { margin-bottom: 18px; font-family: "Manrope"; font-size: 25px; }
.story-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.story-list li { position: relative; padding-left: 22px; color: #59544c; }
.story-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.story-locations {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.story-locations span {
  padding: 18px 16px;
  background: #1a1917;
  color: var(--white);
  font-family: "Manrope";
  font-weight: 700;
}
.story-locations small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-family: "DM Sans"; font-weight: 400; font-size: 11px; }

.vision-section { background: #efe7da; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card {
  min-height: 290px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16,16,15,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.pillar-card span { display: inline-flex; margin-bottom: 24px; color: var(--accent-deep); font-family: "Manrope"; font-size: 14px; font-weight: 700; letter-spacing: .16em; }
.pillar-card h3 { margin-bottom: 12px; font-family: "Manrope"; font-size: 26px; }
.pillar-card p { margin: 0; color: #5b564e; }

.capability-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.capability-visual { overflow: hidden; box-shadow: var(--shadow); }
.capability-visual img { min-height: 620px; object-fit: cover; }
.capability-list { display: grid; gap: 24px; }
.capability-list article { padding-bottom: 22px; border-bottom: 1px solid rgba(16,16,15,.12); }
.capability-list article:last-child { padding-bottom: 0; border-bottom: 0; }
.capability-list h3 { margin-bottom: 8px; font-family: "Manrope"; font-size: 24px; }
.capability-list p { margin: 0; color: #615b53; }

.team-section { background: linear-gradient(180deg, #f6f2eb 0%, #f1eadf 100%); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card {
  min-height: 340px;
  padding: 30px;
  background: #121211;
  color: rgba(255,255,255,.74);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.team-card__avatar {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--accent), #f3c177);
  color: #17140f;
  font-family: "Manrope";
  font-size: 24px;
  font-weight: 700;
}
.team-card__role { margin-bottom: 8px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 700; }
.team-card h3 { margin-bottom: 12px; color: var(--white); font-family: "Manrope"; font-size: 30px; }
.team-card p:last-child { margin: 0; }

.page-cta { color: var(--white); background: #0c0c0b; }
.page-cta__inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding: 36px 44px; border: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at top left, rgba(231,139,24,.12), transparent 34%), rgba(255,255,255,.02); }
.page-cta__inner p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.6); }
.page-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button--ghost-dark { border-color: rgba(255,255,255,.25); color: var(--white); }
.button--ghost-dark:hover { border-color: rgba(255,255,255,.7); }

@media (max-width: 1100px) {
  .page-hero__grid,.story-grid,.capability-grid { gap: 45px; }
  .pillar-grid,.team-grid { grid-template-columns: 1fr 1fr; }
  .page-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 820px) {
  .page-hero__grid,.story-grid,.capability-grid { grid-template-columns: 1fr; }
  .page-hero__visual { margin-top: 20px; }
  .page-hero__card { position: relative; right: auto; bottom: auto; margin: -40px 18px 0 auto; }
  .story-locations { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { padding: 118px 0 70px; }
  .page-hero__image img { height: 400px; }
  .page-hero__card { width: calc(100% - 26px); margin: -28px 13px 0 auto; padding: 20px; }
  .page-hero__card strong { font-size: 22px; }
  .quote-panel { padding: 20px 18px; font-size: 17px; }
  .story-panel { padding: 24px 18px; }
  .pillar-grid,.team-grid { grid-template-columns: 1fr; }
  .pillar-card,.team-card { min-height: auto; }
  .capability-visual img { min-height: 380px; }
  .page-cta__inner { padding: 26px 18px; }
}

/* =========================================================
   Form security, CAPTCHA and confirmation page
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.captcha-box {
  padding: 18px;
  border: 1px solid #d8d2c8;
  background: #f6f1e8;
}
.captcha-box__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}
.captcha-box__head > div > span {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
}
.captcha-box__head small,
.captcha-note {
  color: var(--muted);
  font-size: 10px;
}
.captcha-refresh {
  border: 0;
  padding: 0;
  color: var(--accent-deep);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}
.captcha-refresh:hover { text-decoration: underline; }
.captcha-box__body {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
#captcha-canvas {
  display: block;
  width: 230px;
  max-width: 100%;
  height: 64px;
  border: 1px solid rgba(16,16,15,.12);
  background: #fffdf8;
}
.captcha-input-wrap { display: block; }
.captcha-input-wrap input {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}
.captcha-note { margin: 10px 0 0; }

.thank-you-page { min-height: 100vh; background: #0d0d0c; }
.thank-you {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 45px 0;
  color: var(--white);
}
.thank-you__pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(231,139,24,.3), transparent 27%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 78px 78px, 78px 78px;
}
.thank-you__inner { position: relative; z-index: 1; }
.thank-you__brand { display: block; width: 160px; margin: 0 auto 24px; }
.thank-you__brand img { height: 96px; object-fit: contain; }
.thank-you__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #17120c;
  background: var(--accent);
  font-size: 28px;
  font-weight: 700;
}
.thank-you__card .eyebrow { justify-content: center; }
.thank-you__card h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 64px);
}
.thank-you__card > p:not(.eyebrow) { max-width: 590px; margin: 0 auto; color: var(--muted); }
.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

/* =========================================================
   About page — editorial layout, intentionally different
   from the image-led homepage composition
   ========================================================= */
.about-editorial-page {
  background: #f4efe6;
}
.about-editorial-page .site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(11,11,10,.96);
}

.about-intro {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  background: #f4efe6;
}
.about-intro::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -240px;
  border: 1px solid rgba(231,139,24,.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(231,139,24,.035),
    0 0 0 140px rgba(231,139,24,.02);
}
.about-intro__rail {
  position: absolute;
  left: 18px;
  top: 92px;
  bottom: 80px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(16,16,15,.23);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 9px;
  font-weight: 700;
}
.about-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(290px, .62fr);
  grid-template-areas:
    "heading statement"
    "image facts";
  gap: 48px 68px;
  align-items: end;
}
.about-intro__heading { grid-area: heading; }
.about-intro__heading h1 {
  max-width: 930px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 6.6vw, 94px);
  line-height: .98;
}
.about-intro__statement {
  grid-area: statement;
  align-self: end;
  padding-bottom: 8px;
}
.about-intro__statement > p {
  margin-bottom: 25px;
  color: #59534b;
  font-size: 18px;
  line-height: 1.75;
}
.about-intro__image {
  grid-area: image;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.about-intro__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 45%);
}
.about-intro__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro__image-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 700;
}
.about-intro__facts {
  grid-area: facts;
  display: grid;
  align-self: stretch;
  border-top: 1px solid var(--line);
}
.about-intro__facts article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.about-intro__facts strong {
  color: var(--accent-deep);
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.06em;
}
.about-intro__facts span {
  color: #5a554d;
  font-size: 13px;
  line-height: 1.5;
}

.about-legacy {
  position: relative;
  overflow: hidden;
  padding: 118px 0 128px;
  color: var(--white);
  background: #11110f;
}
.about-legacy::after {
  content: "1992";
  position: absolute;
  right: -18px;
  top: 14px;
  color: rgba(255,255,255,.025);
  font-family: "Manrope", sans-serif;
  font-size: clamp(150px, 25vw, 370px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
}
.about-legacy__header {
  position: relative;
  z-index: 1;
  max-width: 770px;
  margin-bottom: 68px;
}
.about-legacy__header h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 72px);
}
.legacy-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.legacy-step {
  position: relative;
  min-height: 390px;
  padding: 36px 32px 42px;
  border-right: 1px solid rgba(255,255,255,.17);
}
.legacy-step:last-child { border-right: 0; }
.legacy-step__year {
  margin-bottom: 86px;
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-style: italic;
  line-height: 1;
}
.legacy-step__body > span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255,255,255,.43);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 10px;
  font-weight: 700;
}
.legacy-step h3 {
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 1.18;
}
.legacy-step p { margin: 0; color: rgba(255,255,255,.57); }
.about-legacy__quote {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 58px 0 0 auto;
  padding: 0 0 0 30px;
  border-left: 2px solid var(--accent);
  color: rgba(255,255,255,.9);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  font-style: italic;
  line-height: 1.45;
}
.about-legacy__quote span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-team {
  padding: 118px 0 130px;
  background: #ef8c14;
  color: var(--ink);
}
.about-team__heading {
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}
.about-team__heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 70px);
}
.about-team__heading h2 em { color: #fff3df; }
.about-team__heading > p { margin: 0; color: rgba(16,16,15,.67); }
.about-team .eyebrow--dark { color: rgba(16,16,15,.64); }
.about-team .eyebrow span { background: #11110f; }
.editorial-team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.editorial-profile {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16,16,15,.22);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
}
.editorial-profile--one {
  grid-column: span 6;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #11110f;
  color: var(--white);
}
.editorial-profile--two,
.editorial-profile--three { grid-column: span 3; }
.editorial-profile__number {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
  min-width: 42px;
  padding: 7px 9px;
  text-align: center;
  color: var(--white);
  background: rgba(17,17,15,.82);
  backdrop-filter: blur(8px);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.editorial-profile--one .editorial-profile__number {
  color: var(--ink);
  background: var(--accent);
}
.editorial-profile__photo {
  width: 100%;
  height: 245px;
  overflow: hidden;
  background: #d9d0c3;
}
.editorial-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.editorial-profile:hover .editorial-profile__photo img { transform: scale(1.025); }
.editorial-profile--one .editorial-profile__photo {
  height: 100%;
  min-height: 460px;
}
.editorial-profile__photo--sanjay img { object-position: center 32%; }
.editorial-profile__photo--rishabh img { object-position: center 22%; }
.editorial-profile__photo--anastasia img { object-position: center 30%; }
.editorial-profile__copy {
  margin-top: auto;
  padding: 27px 25px 29px;
}
.editorial-profile--one .editorial-profile__copy {
  align-self: end;
  padding: 34px 32px 38px;
}
.editorial-profile__copy > span {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
  font-weight: 700;
  opacity: .58;
}
.editorial-profile h3 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.7vw, 39px);
  line-height: 1.08;
}
.editorial-profile p { margin: 0; opacity: .69; }

.about-manifesto {
  padding: 124px 0;
  color: var(--white);
  background: #1b1916;
}
.about-manifesto__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 95px;
  align-items: start;
}
.about-manifesto__title {
  position: sticky;
  top: 130px;
}
.about-manifesto__title h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 65px);
}
.about-manifesto__principles { border-top: 1px solid rgba(255,255,255,.16); }
.about-manifesto__principles article {
  display: grid;
  grid-template-columns: 52px 210px 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.about-manifesto__principles article > span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .17em;
  font-weight: 700;
}
.about-manifesto__principles h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}
.about-manifesto__principles p { margin: 0; color: rgba(255,255,255,.57); }

.about-operating-model {
  padding: 126px 0;
  background: #f5f0e7;
}
.about-operating-model__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: center;
}
.about-operating-model__visual {
  position: relative;
  min-height: 650px;
}
.about-operating-model__image {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.about-operating-model__image img { width: 100%; height: 100%; object-fit: cover; }
.about-operating-model__image--coffee {
  left: 0;
  top: 0;
  width: 70%;
  height: 78%;
}
.about-operating-model__image--sacks {
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 57%;
  height: 53%;
  border: 10px solid #f5f0e7;
}
.about-operating-model__copy h2 {
  margin-bottom: 40px;
  font-size: clamp(44px, 5vw, 68px);
}
.operating-list { border-top: 1px solid var(--line); }
.operating-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.operating-list strong {
  color: var(--accent-deep);
  font-size: 11px;
  letter-spacing: .16em;
}
.operating-list h3 {
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}
.operating-list p { margin: 0; color: var(--muted); }

.about-closing-cta {
  padding: 100px 0;
  color: var(--white);
  background: #0c0c0b;
}
.about-closing-cta__inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
  padding: 58px;
  border: 1px solid rgba(255,255,255,.15);
  background:
    radial-gradient(circle at 13% 20%, rgba(231,139,24,.18), transparent 30%),
    rgba(255,255,255,.025);
}
.about-closing-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
}
.about-closing-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-link--light { color: rgba(255,255,255,.8); }

@media (max-width: 1100px) {
  .about-intro__grid { gap: 42px; }
  .about-intro__rail { display: none; }
  .legacy-step { padding: 30px 24px 36px; }
  .editorial-profile--one { grid-column: span 12; }
  .editorial-profile--two,
  .editorial-profile--three { grid-column: span 6; }
  .about-manifesto__grid { gap: 52px; }
  .about-manifesto__principles article { grid-template-columns: 45px 170px 1fr; }
  .about-operating-model__grid { gap: 58px; }
}

@media (max-width: 820px) {
  .captcha-box__body { grid-template-columns: 1fr; }
  .about-intro { padding-top: 72px; }
  .about-intro__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "statement"
      "image"
      "facts";
  }
  .about-intro__statement { max-width: 660px; }
  .about-intro__image { min-height: 480px; }
  .legacy-timeline { grid-template-columns: 1fr; }
  .legacy-step { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .legacy-step:last-child { border-bottom: 0; }
  .legacy-step__year { margin-bottom: 42px; }
  .about-team__heading { grid-template-columns: 1fr; gap: 24px; }
  .editorial-profile--one { grid-template-columns: .95fr 1.05fr; }
  .about-manifesto__grid { grid-template-columns: 1fr; }
  .about-manifesto__title { position: static; }
  .about-operating-model__grid { grid-template-columns: 1fr; }
  .about-operating-model__visual { min-height: 560px; }
  .about-closing-cta__inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 600px) {
  .thank-you__card { padding: 34px 20px; }
  .thank-you__actions { flex-direction: column; }
  .captcha-box { padding: 14px; }
  .captcha-box__head { display: block; }
  .captcha-refresh { margin-top: 8px; }
  #captcha-canvas { width: 100%; }
  .about-intro { padding: 60px 0 75px; }
  .about-intro__heading h1 { font-size: 46px; }
  .about-intro__image { min-height: 360px; }
  .about-intro__facts article { grid-template-columns: 78px 1fr; }
  .about-intro__facts strong { font-size: 34px; }
  .about-legacy,
  .about-team,
  .about-manifesto,
  .about-operating-model { padding: 78px 0; }
  .about-legacy__header { margin-bottom: 42px; }
  .legacy-step__year { font-size: 48px; }
  .editorial-profile--one,
  .editorial-profile--two,
  .editorial-profile--three { grid-column: span 12; min-height: auto; }
  .editorial-profile--one { display: flex; }
  .editorial-profile__photo,
  .editorial-profile--one .editorial-profile__photo {
    height: 330px;
    min-height: 0;
  }
  .editorial-profile__copy,
  .editorial-profile--one .editorial-profile__copy { padding: 25px 22px 28px; }
  .about-manifesto__principles article {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }
  .about-manifesto__principles h3 { grid-column: 2; }
  .about-manifesto__principles p { grid-column: 2; }
  .about-operating-model__visual { min-height: 430px; }
  .about-closing-cta { padding: 70px 0; }
  .about-closing-cta__inner { padding: 30px 20px; }
}

/* ========================================
   PRODUCTS PAGE — CATALOGUE LAYOUT
   ======================================== */
.products-catalog-page { background: #f5f0e7; }

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 110px;
  background:
    radial-gradient(circle at 20% 20%, rgba(231,139,24,.13), transparent 32%),
    linear-gradient(135deg, #f7f2e9 0%, #efe5d6 100%);
}
.catalog-hero::after {
  content: "PRODUCTS";
  position: absolute;
  right: -30px;
  bottom: -76px;
  color: rgba(16,16,15,.035);
  font-family: "Manrope", sans-serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
  pointer-events: none;
}
.catalog-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: center;
}
.catalog-hero__copy h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 86px);
  color: var(--ink);
}
.catalog-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #625b52;
  font-size: 18px;
}
.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.catalog-hero__visual {
  position: relative;
  min-height: 620px;
}
.catalog-stack {
  position: absolute;
  overflow: hidden;
  display: block;
  color: var(--white);
  background: #111;
  box-shadow: 0 26px 70px rgba(0,0,0,.19);
  transition: transform .35s ease, z-index .1s ease;
}
.catalog-stack:hover { transform: translateY(-10px); z-index: 5; }
.catalog-stack img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.catalog-stack:hover img { transform: scale(1.045); }
.catalog-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.05) 60%);
}
.catalog-stack > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}
.catalog-stack span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}
.catalog-stack strong { display: block; font-family: "Manrope"; font-size: 25px; line-height: 1.1; }
.catalog-stack small { display: block; margin-top: 7px; color: rgba(255,255,255,.65); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.catalog-stack--stone { left: 0; top: 0; width: 59%; height: 76%; z-index: 3; }
.catalog-stack--coffee { right: 0; top: 62px; width: 48%; height: 48%; z-index: 2; }
.catalog-stack--agri { right: 8%; bottom: 0; width: 45%; height: 42%; z-index: 4; border: 8px solid #efe5d6; }

.catalog-hero__visual--two .catalog-stack--stone { left: 0; top: 0; width: 64%; height: 82%; z-index: 2; }
.catalog-hero__visual--two .catalog-stack--coffee { right: 0; top: auto; bottom: 0; width: 52%; height: 62%; z-index: 3; border: 8px solid #efe5d6; }

.catalogue-index {
  padding: 58px 0;
  color: var(--white);
  background: #10100f;
}
.catalogue-index__inner {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.catalogue-index__intro h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); }
.catalogue-index__links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.catalogue-index__links--two { grid-template-columns: repeat(2, 1fr); }
.catalogue-index__links a {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.16);
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}
.catalogue-index__links a:last-child { border-right: 0; }
.catalogue-index__links a:hover { background: var(--accent); color: var(--ink); }
.catalogue-index__links span { margin-bottom: 16px; color: var(--accent); font-size: 10px; letter-spacing: .17em; }
.catalogue-index__links a:hover span { color: var(--ink); }
.catalogue-index__links small { margin-top: 6px; color: rgba(255,255,255,.48); font-family: "DM Sans"; font-size: 11px; font-weight: 400; }
.catalogue-index__links a:hover small { color: rgba(16,16,15,.62); }


.drive-catalogues {
  padding: 110px 0;
  background: linear-gradient(180deg, #eee5d8 0%, #f7f3ec 100%);
}
.drive-catalogues .section-heading { margin-bottom: 42px; }
.drive-catalogues__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.drive-catalogue-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: block;
  color: var(--white);
  background: #111;
  box-shadow: 0 24px 65px rgba(0,0,0,.16);
}
.drive-catalogue-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.drive-catalogue-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,.93) 0%, rgba(7,7,7,.18) 64%, rgba(7,7,7,.05) 100%);
  transition: background .3s ease;
}
.drive-catalogue-card__content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 2;
}
.drive-catalogue-card__content p {
  margin-bottom: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 10px;
  font-weight: 700;
}
.drive-catalogue-card__content h3 {
  margin-bottom: 8px;
  font-family: "Manrope";
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}
.drive-catalogue-card__content > span {
  display: block;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}
.drive-catalogue-card__content strong {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  color: var(--white);
  font-family: "Manrope";
  font-size: 13px;
}
.drive-catalogue-card:hover img { transform: scale(1.045); }
.drive-catalogue-card:hover .drive-catalogue-card__shade { background: linear-gradient(to top, rgba(7,7,7,.96) 0%, rgba(7,7,7,.28) 66%, rgba(7,7,7,.08) 100%); }

.product-chapter { padding: 125px 0; }
.product-chapter__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 82px; align-items: center; }
.product-chapter__grid--reverse .product-chapter__content { order: 1; }
.product-chapter__grid--reverse .product-chapter__media { order: 2; }
.product-chapter__media {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  box-shadow: 0 28px 75px rgba(0,0,0,.16);
}
.product-chapter__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-chapter__stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 178px;
  height: 178px;
  display: grid;
  place-content: center;
  padding: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}
.product-chapter__stamp strong { display: block; margin-top: 5px; font-family: "Manrope"; font-size: 20px; line-height: 1.1; letter-spacing: -.03em; text-transform: none; }
.product-chapter__number { margin-bottom: 24px; color: var(--accent-deep); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.product-chapter__content h2 { margin-bottom: 24px; font-size: clamp(50px, 6vw, 78px); }
.product-chapter__lead { margin-bottom: 34px; color: #5f5951; font-size: 18px; line-height: 1.75; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 30px; }
.product-detail-grid article { padding: 24px; border: 1px solid rgba(16,16,15,.12); background: rgba(255,255,255,.45); }
.product-detail-grid h3 { margin-bottom: 14px; font-family: "Manrope"; font-size: 20px; }
.product-detail-grid ul { margin: 0; padding: 0; list-style: none; }
.product-detail-grid li { position: relative; padding: 7px 0 7px 16px; color: #5d574f; font-size: 14px; }
.product-detail-grid li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.product-spec-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0 34px; border-top: 1px solid rgba(16,16,15,.16); border-bottom: 1px solid rgba(16,16,15,.16); }
.product-spec-strip span { padding: 17px 15px; border-right: 1px solid rgba(16,16,15,.16); font-size: 12px; line-height: 1.45; }
.product-spec-strip span:last-child { border-right: 0; }
.product-spec-strip small { display: block; margin-bottom: 4px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: #2a2926; }

.product-chapter__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.text-link--light { color: var(--white); }
.text-link--light::after { background: rgba(255,255,255,.45); }

.product-chapter--stone { background: #f5f0e7; }
.product-chapter--coffee { color: var(--white); background: #171613; }
.product-chapter--coffee .product-chapter__number { color: var(--accent); }
.product-chapter--coffee .product-chapter__lead { color: rgba(255,255,255,.62); }
.product-chapter--coffee .eyebrow { color: rgba(255,255,255,.64); }
.product-chapter__media--coffee { min-height: 760px; }
.product-chapter__media--coffee::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 48%); }
.coffee-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(15,15,14,.7);
  backdrop-filter: blur(8px);
}
.coffee-note span { display: block; margin-bottom: 8px; color: var(--accent); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 700; }
.coffee-note strong { font-family: "Manrope"; font-size: 22px; }
.coffee-origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 34px 0; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.coffee-origin-grid article { padding: 24px; background: #171613; }
.coffee-origin-grid span { display: block; margin-bottom: 9px; color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 700; }
.coffee-origin-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.product-chapter--agri { background: #ebe2d4; }
.product-chapter__media--agri { min-height: 660px; }
.product-chapter__media--agri::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 46%); }
.agri-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 15px;
  background: var(--accent);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 700;
}
.agri-checklist { margin: 34px 0; border-top: 1px solid rgba(16,16,15,.16); }
.agri-checklist article { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid rgba(16,16,15,.16); }
.agri-checklist > article > span { color: var(--accent-deep); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.agri-checklist h3 { margin-bottom: 6px; font-family: "Manrope"; font-size: 22px; }
.agri-checklist p { margin: 0; color: #625c54; }

.rfq-guide { padding: 115px 0; color: var(--white); background: #0f0f0e; }
.rfq-guide__grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: start; }
.rfq-guide__intro { position: sticky; top: 130px; }
.rfq-guide__intro h2 { font-size: clamp(42px, 5vw, 66px); }
.rfq-guide__intro > p:not(.eyebrow) { color: rgba(255,255,255,.55); }
.rfq-guide__steps { border-top: 1px solid rgba(255,255,255,.16); }
.rfq-guide__steps article { display: grid; grid-template-columns: 55px 170px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.rfq-guide__steps span { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.rfq-guide__steps h3 { margin: 0; font-family: "Manrope"; font-size: 23px; }
.rfq-guide__steps p { margin: 0; color: rgba(255,255,255,.58); }

.product-cta { padding: 92px 0; background: var(--accent); }
.product-cta__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.product-cta h2 { max-width: 830px; margin: 0; font-size: clamp(42px, 5vw, 68px); color: var(--ink); }
.product-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

@media (max-width: 1100px) {
  .catalog-hero__grid { gap: 42px; }
  .catalog-hero__visual { min-height: 540px; }
  .drive-catalogue-card { min-height: 500px; }
  .product-chapter__grid { gap: 50px; }
  .product-chapter__media { min-height: 620px; }
  .rfq-guide__grid { gap: 48px; }
}

@media (max-width: 820px) {
  .catalog-hero__grid,
  .catalogue-index__inner,
  .product-chapter__grid,
  .rfq-guide__grid,
  .product-cta__inner { grid-template-columns: 1fr; }
  .catalog-hero__visual { margin-top: 10px; }
  .catalogue-index__links { grid-template-columns: 1fr 1fr; }
  .catalogue-index__links a { min-height: 130px; }
  .drive-catalogues__grid { grid-template-columns: 1fr; }
  .drive-catalogue-card { min-height: 500px; }
  .product-chapter__grid--reverse .product-chapter__content,
  .product-chapter__grid--reverse .product-chapter__media { order: initial; }
  .product-chapter__media,
  .product-chapter__media--coffee,
  .product-chapter__media--agri { min-height: 560px; }
  .rfq-guide__intro { position: static; }
  .product-cta__actions { flex-direction: row; align-items: center; }
}

@media (max-width: 600px) {
  .catalog-hero { padding: 70px 0 78px; }
  .catalog-hero__copy h1 { font-size: 48px; }
  .catalog-hero__actions { align-items: stretch; flex-direction: column; }
  .catalog-hero__visual { min-height: 520px; }
  .catalog-stack--stone { width: 70%; height: 58%; }
  .catalog-stack--coffee { top: 140px; width: 54%; height: 43%; }
  .catalog-stack--agri { right: 2%; width: 57%; height: 35%; }
  .catalog-hero__visual--two .catalog-stack--stone { width: 72%; height: 70%; }
  .catalog-hero__visual--two .catalog-stack--coffee { right: 0; width: 58%; height: 52%; }
  .catalog-stack strong { font-size: 20px; }
  .catalogue-index { padding: 44px 0; }
  .catalogue-index__links,
  .catalogue-index__links--two { grid-template-columns: 1fr; }
  .catalogue-index__links a { min-height: 105px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .catalogue-index__links a:last-child { border-bottom: 0; }
  .drive-catalogues { padding: 76px 0; }
  .drive-catalogue-card { min-height: 420px; }
  .drive-catalogue-card__content { left: 22px; right: 22px; bottom: 22px; }
  .product-chapter { padding: 78px 0; }
  .product-chapter__media,
  .product-chapter__media--coffee,
  .product-chapter__media--agri { min-height: 430px; }
  .product-chapter__stamp { width: 140px; height: 140px; }
  .product-chapter__content h2 { font-size: 48px; }
  .product-detail-grid,
  .coffee-origin-grid,
  .product-spec-strip { grid-template-columns: 1fr; }
  .product-spec-strip span { border-right: 0; border-bottom: 1px solid rgba(16,16,15,.16); }
  .product-spec-strip span:last-child { border-bottom: 0; }
  .rfq-guide { padding: 78px 0; }
  .rfq-guide__steps article { grid-template-columns: 42px 1fr; gap: 14px; }
  .rfq-guide__steps h3 { grid-column: 2; }
  .rfq-guide__steps p { grid-column: 2; }
  .product-chapter__actions { align-items: stretch; flex-direction: column; }
  .product-chapter__actions .button { width: 100%; }
  .product-cta { padding: 70px 0; }
  .product-cta__actions { align-items: stretch; flex-direction: column; }
}

/* =========================================================
   Contact page — editorial trade-desk layout
   ========================================================= */
.contact-page { background: #f3eee5; }

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 112px;
  background: #f3eee5;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -170px -250px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(16,16,15,.10);
  box-shadow: 0 0 0 70px rgba(231,139,24,.035), 0 0 0 140px rgba(16,16,15,.018);
}
.contact-hero__word {
  position: absolute;
  left: -20px;
  bottom: -54px;
  color: rgba(16,16,15,.035);
  font-family: "Manrope", sans-serif;
  font-size: clamp(118px, 18vw, 270px);
  font-weight: 700;
  letter-spacing: -.085em;
  line-height: .8;
  white-space: nowrap;
  pointer-events: none;
}
.contact-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}
.contact-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(52px, 6vw, 82px);
  color: var(--ink);
}
.contact-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: #625c53;
  font-size: 18px;
  line-height: 1.78;
}
.contact-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }

.contact-hero__mosaic {
  position: relative;
  min-height: 610px;
}
.contact-hero__mosaic figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 26px 65px rgba(0,0,0,.17);
}
.contact-hero__mosaic figure img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero__mosaic figcaption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 8px 11px;
  background: rgba(12,12,11,.80);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 700;
}
.contact-mosaic__stone { inset: 0 56px 72px 0; }
.contact-mosaic__coffee {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 48%;
  border: 8px solid #f3eee5;
}
.contact-mosaic__note {
  position: absolute;
  top: 38px;
  right: -12px;
  width: 220px;
  padding: 22px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.contact-mosaic__note span {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
  font-weight: 700;
}
.contact-mosaic__note strong { font-family: "Manrope"; font-size: 21px; line-height: 1.18; }

.contact-channels { background: #10100f; color: var(--white); }
.contact-channels__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.contact-channel {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 72px 32px 30px;
  border-right: 1px solid rgba(255,255,255,.13);
  transition: background .22s ease, color .22s ease;
}
.contact-channel:last-child { border-right: 0; }
.contact-channel > span {
  margin-bottom: auto;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 700;
}
.contact-channel strong {
  margin-bottom: 7px;
  font-family: "Manrope";
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.15;
}
.contact-channel small { color: rgba(255,255,255,.53); font-size: 12px; }
.contact-channel b {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--accent);
  font-size: 21px;
  font-weight: 400;
}
.contact-channel:hover { background: var(--accent); color: var(--ink); }
.contact-channel:hover > span,
.contact-channel:hover b { color: var(--ink); }
.contact-channel:hover small { color: rgba(16,16,15,.62); }

.contact-workbench { padding: 122px 0; background: #e9e1d5; }
.contact-workbench__grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 72px;
  align-items: start;
}
.contact-brief { position: sticky; top: 116px; }
.contact-brief h2 { margin-bottom: 22px; font-size: clamp(40px, 4.7vw, 64px); }
.contact-brief > p:not(.eyebrow) { color: #625c54; }
.contact-brief__list { margin-top: 38px; border-top: 1px solid rgba(16,16,15,.15); }
.contact-brief__list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(16,16,15,.15);
}
.contact-brief__list article > span { color: var(--accent-deep); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.contact-brief__list h3 { margin-bottom: 5px; font-family: "Manrope"; font-size: 19px; }
.contact-brief__list p { margin: 0; color: #6b655d; font-size: 13px; line-height: 1.55; }
.contact-brief__catalogues { margin-top: 26px; padding: 20px; border: 1px solid rgba(16,16,15,.14); background: rgba(255,255,255,.38); }
.contact-brief__catalogues p { margin-bottom: 10px; color: #736c63; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; }
.contact-brief__catalogues a { display: inline-block; margin: 5px 16px 0 0; padding-bottom: 3px; border-bottom: 1px solid var(--accent-deep); font-family: "Manrope"; font-size: 12px; font-weight: 700; }

.contact-form {
  position: relative;
  padding: 44px;
  box-shadow: 0 28px 75px rgba(0,0,0,.12);
}
.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: var(--accent);
}
.contact-form__head { align-items: flex-start; }
.contact-form__head p { margin-bottom: 5px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; font-weight: 700; }
.contact-form__head h3 { font-size: 28px; }
.contact-form__head > span { color: var(--muted); font-size: 11px; }

.contact-response { padding: 96px 0; color: var(--white); background: #11110f; }
.contact-response__inner { padding: 42px; border: 1px solid rgba(255,255,255,.13); background: radial-gradient(circle at 8% 10%, rgba(231,139,24,.13), transparent 32%); }
.contact-response__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: end; }
.contact-response__grid h2 { margin: 0; font-size: clamp(40px, 4.7vw, 64px); }
.contact-response__grid p { color: rgba(255,255,255,.61); }
.contact-response__grid span { display: block; margin-top: 23px; color: var(--accent); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; }

@media (max-width: 1100px) {
  .contact-hero__grid { gap: 45px; }
  .contact-hero__mosaic { min-height: 540px; }
  .contact-workbench__grid { gap: 46px; }
  .contact-channel { padding-left: 23px; }
}

@media (max-width: 820px) {
  .contact-hero__grid,
  .contact-workbench__grid,
  .contact-response__grid { grid-template-columns: 1fr; }
  .contact-hero__mosaic { margin-top: 10px; }
  .contact-channels__grid { grid-template-columns: 1fr; }
  .contact-channel { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .contact-channel:last-child { border-bottom: 0; }
  .contact-brief { position: static; }
}

@media (max-width: 600px) {
  .contact-hero { padding: 72px 0 82px; }
  .contact-hero__copy h1 { font-size: 47px; }
  .contact-hero__copy > p:not(.eyebrow) { font-size: 16px; }
  .contact-hero__actions { align-items: stretch; flex-direction: column; }
  .contact-hero__actions .button { width: 100%; }
  .contact-hero__mosaic { min-height: 430px; }
  .contact-mosaic__stone { inset: 0 24px 55px 0; }
  .contact-mosaic__coffee { width: 53%; height: 43%; border-width: 6px; }
  .contact-mosaic__note { top: 18px; right: -3px; width: 175px; padding: 16px; }
  .contact-mosaic__note strong { font-size: 17px; }
  .contact-channel { min-height: 142px; padding: 24px 60px 24px 18px; }
  .contact-channel b { right: 18px; bottom: 22px; }
  .contact-workbench { padding: 78px 0; }
  .contact-form { padding: 27px 18px 27px 24px; }
  .contact-form__head > span { display: block; margin-top: 8px; }
  .contact-response { padding: 72px 0; }
  .contact-response__inner { padding: 26px 18px; }
}
