/* ===========================================================
   SRUHAD GLOBAL LLP — stylesheet
   Concept: an "export manifest" — the visual language of
   shipping labels, packing lists and customs stamps, rendered
   in a warm maroon / charcoal / sand palette drawn from the
   brand mark. Perforated dividers stand in for tear-off
   packing-list edges; circular "stamp" badges carry the three
   ethos values; a light monospace is reserved for the product
   reference codes, echoing HS-code style documentation.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Work+Sans:wght@300;400;500;600;700&family=Space+Mono&display=swap');

:root{
  /* color */
  --maroon:        #7C1E2A;
  --maroon-dark:   #58121C;
  --maroon-tint:   #F3E4E3;
  --charcoal:      #211B19;
  --charcoal-soft: #2C2422;
  --cream:         #F7F1E6;
  --cream-deep:    #EFE5D3;
  --sand:          #C8965A;
  --sand-soft:     #E4C79A;
  --ink:           #2A211D;
  --ink-muted:     #6E6058;
  --paper-line:    #D9CBB4;
  --off-white:     #F4EEE3;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-code: "Space Mono", monospace;

  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img,svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:500; color: var(--ink); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible{
  outline: 2.5px solid var(--sand);
  outline-offset: 3px;
}

/* ---------- perforated / ledger divider ---------- */
.tear{
  height: 1px;
  background-image: linear-gradient(to right, var(--paper-line) 60%, transparent 0%);
  background-position: top;
  background-size: 14px 1px;
  background-repeat: repeat-x;
  width: 100%;
}

/* ---------- eyebrow / doc-tag ---------- */
.doc-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-code);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--maroon);
  border: 1px solid var(--maroon);
  border-radius: 3px;
  padding: 4px 10px;
}
.doc-tag::before{
  content:"";
  width:6px; height:6px;
  background: var(--sand);
  border-radius: 50%;
  flex: none;
}

/* ================= HEADER / NAV ================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(247,241,230,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark{ width:38px; height:38px; flex:none; }
.brand-word{
  font-family: var(--font-display);
  font-weight:600;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height:1;
}
.brand-word span{ color: var(--maroon); }
.brand-sub{
  display:block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin-top:2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
}
.nav-links a{
  font-size: 15px;
  font-weight:500;
  color: var(--ink);
  position:relative;
  padding: 4px 0;
}
.nav-links a.active{ color: var(--maroon); }
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:-2px;
  height:2px;
  background: var(--maroon);
  transition: right .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{ right:0; }

.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 24px;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--maroon); color: var(--off-white); }
.btn-primary:hover{ background: var(--maroon-dark); transform: translateY(-1px); }
.btn-ghost{ background:transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--maroon); color: var(--maroon); }
.btn-ghost-light{ background:transparent; border-color: rgba(244,238,227,0.5); color: var(--off-white); }
.btn-ghost-light:hover{ border-color: var(--sand); color: var(--sand-soft); }
.btn-sand{ background: var(--sand); color: var(--charcoal); }
.btn-sand:hover{ background: var(--sand-soft); transform: translateY(-1px); }

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
}
.menu-toggle span{ width:24px; height:2px; background: var(--ink); display:block; }

/* ================= HERO ================= */
.hero{
  padding: 84px 0 60px;
  position: relative;
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items:center;
}
.hero-eyebrow{ margin-bottom:22px; }
.hero h1{
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 12ch;
}
.hero-sub{
  margin-top:20px;
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 46ch;
}
.hero-desc{
  margin-top: 18px;
  font-size: 15.5px;
  color: var(--ink-muted);
  max-width: 52ch;
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top: 34px;
  flex-wrap:wrap;
}
.hero-art{ position:relative; }

/* generic page hero (inner pages) */
.page-hero{
  padding: 64px 0 52px;
  background: var(--charcoal);
  color: var(--off-white);
  position:relative;
}
.page-hero .doc-tag{ color: var(--sand-soft); border-color: rgba(228,199,154,0.5); }
.page-hero .doc-tag::before{ background: var(--sand); }
.page-hero h1{
  color: var(--off-white);
  font-size: clamp(34px, 4.4vw, 50px);
  margin-top: 18px;
  max-width: 16ch;
}
.page-hero p{
  margin-top: 16px;
  color: #C9BEB1;
  max-width: 62ch;
  font-size: 16.5px;
}
.page-hero-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 32px;
  flex-wrap:wrap;
}
.crate-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.crate-chip{
  font-family: var(--font-code);
  font-size:11.5px;
  color: var(--sand-soft);
  border:1px solid rgba(228,199,154,0.35);
  border-radius: 3px;
  padding: 6px 10px;
}

/* ================= SECTIONS ================= */
section{ padding: 84px 0; }
.section-cream{ background: var(--cream); }
.section-deep{ background: var(--cream-deep); }
.section-dark{ background: var(--charcoal); color: var(--off-white); }
.section-maroon{ background: var(--maroon); color: var(--off-white); }

.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size: clamp(28px, 3.4vw, 40px);
  line-height:1.12;
  margin-top: 14px;
}
.section-head p{
  margin-top:16px;
  color: var(--ink-muted);
  font-size: 16px;
}
.section-dark .section-head p{ color:#C9BEB1; }
.section-dark .doc-tag{ color: var(--sand-soft); border-color: rgba(228,199,154,0.4); }
.section-maroon .section-head p{ color: rgba(244,238,227,0.85); }

/* two column */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.two-col.reverse{ direction: rtl; }
.two-col.reverse > *{ direction: ltr; }

/* ---------- ethos / stamp cards ---------- */
.stamp-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stamp-card{
  border: 1px solid rgba(244,238,227,0.16);
  border-radius: 6px;
  padding: 34px 28px;
  background: rgba(244,238,227,0.03);
  transition: border-color .2s ease, transform .2s ease;
}
.stamp-card:hover{ border-color: var(--sand); transform: translateY(-3px); }
.stamp-badge{
  width:56px; height:56px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 22px;
}
.stamp-badge svg{ width:26px; height:26px; stroke: var(--sand); }
.stamp-num{
  font-family: var(--font-code);
  font-size: 12px;
  color: var(--sand-soft);
  letter-spacing: 0.08em;
  display:block;
  margin-bottom:10px;
}
.stamp-card h3{
  color: var(--off-white);
  font-size: 21px;
  margin-bottom: 10px;
}
.stamp-card p{ color:#C9BEB1; font-size:14.8px; }

/* ---------- category tiles ---------- */
.tile-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.tile{
  background: var(--off-white);
  border: 1px solid var(--paper-line);
  border-radius: 6px;
  padding: 26px 20px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.tile:hover{ transform: translateY(-4px); border-color: var(--maroon); box-shadow: 0 14px 28px -18px rgba(88,18,28,0.35); }
.tile-icon{
  width:44px; height:44px;
  border-radius: 50%;
  background: var(--maroon-tint);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
}
.tile-icon svg{ width:22px; height:22px; stroke: var(--maroon); }
.tile h3{ font-size:17px; margin-bottom:6px; }
.tile p{ font-size: 13.6px; color: var(--ink-muted); }
.tile a.tile-link{
  display:inline-block;
  margin-top:12px;
  font-size:13px;
  font-weight:600;
  color: var(--maroon);
  border-bottom: 1px solid var(--maroon);
}

/* ---------- quote / vision ---------- */
.vision-quote{
  max-width: 760px;
  margin: 0 auto;
  text-align:center;
}
.vision-quote .doc-tag{ margin: 0 auto 22px; }
.vision-quote h2{
  font-size: clamp(26px, 3.6vw, 38px);
  font-style: italic;
  line-height:1.32;
  font-weight:400;
}
.vision-quote p{ margin-top: 20px; color: var(--ink-muted); font-size:16px; }

/* ---------- closing CTA banner ---------- */
.cta-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 32px;
  flex-wrap:wrap;
}
.cta-banner h2{ color: var(--off-white); font-size: clamp(26px,3vw,36px); max-width: 14ch; }
.cta-banner-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ================= PRODUCTS PAGE ================= */
.cat-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 20px;
}
.cat-tab{
  display:flex;
  align-items:center;
  gap:9px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--paper-line);
  background: var(--off-white);
  font-size: 14px;
  font-weight:600;
  color: var(--ink-muted);
}
.cat-tab svg{ width:16px; height:16px; stroke: currentColor; }
.cat-tab.active{
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--off-white);
}
.cat-panel{ display:none; }
.cat-panel.active{ display:block; animation: fadeIn .35s ease; }
@keyframes fadeIn{ from{opacity:0; transform: translateY(6px);} to{opacity:1; transform:none;} }

.cat-intro{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items:start;
}
.cat-intro h3{ font-size: 26px; margin-bottom:12px; }
.cat-intro p{ color: var(--ink-muted); font-size:15.5px; }
.promise-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.promise-chip{
  font-family: var(--font-code);
  font-size:11.5px;
  padding: 6px 11px;
  border: 1px solid var(--sand);
  color: var(--maroon-dark);
  border-radius:3px;
  background: var(--maroon-tint);
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product-row{
  display:flex;
  gap:16px;
  padding: 18px 20px;
  border: 1px solid var(--paper-line);
  border-radius:6px;
  background: var(--off-white);
}
.product-code{
  font-family: var(--font-code);
  font-size: 12px;
  color: var(--sand);
  flex:none;
  padding-top:2px;
}
.product-row h4{ font-family: var(--font-body); font-weight:600; font-size:15.5px; margin-bottom:5px;}
.product-row p{ font-size: 13.5px; color: var(--ink-muted); }

/* ================= QUALITY PAGE ================= */
.flow-strip{
  display:flex;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  margin: 0 auto 12px;
  justify-content:center;
}
.flow-chip{
  font-family: var(--font-code);
  font-size: 12.5px;
  letter-spacing:0.03em;
  padding: 10px 16px;
  border: 1px solid var(--sand);
  border-radius: 30px;
  color: var(--off-white);
  background: rgba(200,150,90,0.12);
}
.flow-arrow{ color: var(--sand); padding: 0 10px; font-size:15px; }

.accordion{ border-top: 1px solid var(--paper-line); }
.acc-item{ border-bottom: 1px solid var(--paper-line); }
.acc-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  background:none;
  border:none;
  padding: 24px 4px;
  text-align:left;
}
.acc-trigger-left{ display:flex; align-items:center; gap:18px; }
.acc-num{
  font-family: var(--font-code);
  font-size: 13px;
  color: var(--maroon);
  border: 1px solid var(--maroon);
  border-radius:50%;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.acc-trigger h3{ font-size: 18.5px; }
.acc-trigger h3 small{ display:block; font-family:var(--font-body); font-weight:500; font-size:13px; color:var(--ink-muted); margin-top:3px; }
.acc-plus{
  width:26px; height:26px;
  flex:none;
  position:relative;
}
.acc-plus::before,.acc-plus::after{
  content:"";
  position:absolute;
  background: var(--maroon);
  top:50%; left:50%;
  transform: translate(-50%,-50%);
}
.acc-plus::before{ width:14px; height:2px; }
.acc-plus::after{ width:2px; height:14px; transition: transform .25s ease, opacity .25s ease; }
.acc-item.open .acc-plus::after{ transform: translate(-50%,-50%) rotate(90deg); opacity:0; }

.acc-panel{
  max-height:0;
  overflow:hidden;
  transition: max-height .35s ease;
}
.acc-panel-in{ padding: 0 4px 30px 68px; }
.acc-panel-in p{ color: var(--ink-muted); font-size:15px; margin-bottom:14px; max-width:64ch; }
.acc-panel-in ul{ display:grid; grid-template-columns: 1fr 1fr; gap:8px 24px; }
.acc-panel-in li{
  font-size: 14px;
  color: var(--ink);
  padding-left: 16px;
  position:relative;
}
.acc-panel-in li::before{
  content:"";
  position:absolute; left:0; top:9px;
  width:6px; height:6px;
  background: var(--sand);
  border-radius:50%;
}

/* ================= WHY SRUHAD — stepper ================= */
.stepper{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}
.step-list{ display:flex; flex-direction:column; }
.step-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 16px 10px;
  border-left: 2px solid var(--paper-line);
  background:none;
  border-top:none; border-right:none; border-bottom:none;
  text-align:left;
  color: var(--ink-muted);
}
.step-item .step-num{
  font-family: var(--font-code);
  font-size:13px;
  width:30px; height:30px; border-radius:50%;
  border: 1.5px solid var(--paper-line);
  display:flex; align-items:center; justify-content:center;
  flex:none;
  transition: all .2s ease;
}
.step-item span.step-label{ font-weight:600; font-size:14.5px; }
.step-item.active{ border-left-color: var(--maroon); color: var(--ink); }
.step-item.active .step-num{ background: var(--maroon); border-color: var(--maroon); color: var(--off-white); }
.step-detail{
  background: var(--off-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 40px;
}
.step-detail-eyebrow{ font-family: var(--font-code); font-size:12.5px; color:var(--maroon); }
.step-detail h3{ font-size: 24px; margin: 12px 0 16px; }
.step-detail p{ color: var(--ink-muted); font-size: 15.5px; max-width: 60ch; }

/* difference equation */
.equation{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 18px;
}
.equation .eq-item{
  padding: 14px 22px;
  border: 1px solid rgba(244,238,227,0.25);
  border-radius: 30px;
  font-size:15px;
  font-family: var(--font-body);
  font-weight:600;
}
.equation .eq-sym{ color: var(--sand); font-size:22px; }
.equation .eq-result{
  color: var(--sand-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
}

/* ================= ABOUT PAGE ================= */
.mission-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.mission-card{
  padding: 26px 18px;
  border-top: 3px solid var(--maroon);
  background: var(--off-white);
}
.mission-card .m-num{ font-family: var(--font-code); color: var(--sand); font-size:12px; }
.mission-card h4{ font-size:15.5px; margin: 10px 0 8px; }
.mission-card p{ font-size:13px; color: var(--ink-muted); }

.partner-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.partner-card{ text-align:center; }
.partner-mono{
  width: 96px; height:96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--maroon);
  color: var(--off-white);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-size: 30px;
  border: 3px solid var(--sand-soft);
}
.partner-card h4{ font-size:17px; margin-bottom:4px; }
.partner-card span{ font-size:13px; color: var(--ink-muted); }

.pillar-row{
  display:flex;
  gap: 18px;
  flex-wrap:wrap;
  justify-content:center;
}
.pillar{
  font-family: var(--font-display);
  font-style:italic;
  font-size: 20px;
  color: var(--off-white);
  padding: 10px 4px;
}
.pillar-row .sep{ color: var(--sand); font-family: var(--font-body); font-style:normal; }

.flow-loop{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  flex-wrap:wrap;
  font-weight:600;
}
.flow-loop .node{
  padding: 16px 22px;
  border-radius: 6px;
  background: var(--off-white);
  border:1px solid var(--paper-line);
  font-size: 14.5px;
}
.flow-loop .arrow{ color: var(--maroon); font-size:20px; }

/* ================= CONTACT ================= */
.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}
.contact-info-item{
  display:flex;
  gap:16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--paper-line);
}
.contact-info-item:first-child{ padding-top:0; }
.contact-icon{
  width:42px; height:42px;
  border-radius: 50%;
  border: 1.5px solid var(--maroon);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.contact-icon svg{ width:19px; height:19px; stroke: var(--maroon); }
.contact-info-item h4{ font-size:15px; margin-bottom:3px; }
.contact-info-item p{ font-size:14px; color: var(--ink-muted); }

.form-card{
  background: var(--off-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 40px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size:13px; font-weight:600; color: var(--ink); }
.field input, .field select, .field textarea{
  border: 1px solid var(--paper-line);
  background: var(--cream);
  border-radius:4px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
}
.field textarea{ resize: vertical; min-height:110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--maroon);
  background: #fff;
}
.form-note{ font-size:13px; color: var(--ink-muted); margin-top:14px; }
.form-success{
  display:none;
  margin-top:18px;
  padding: 14px 16px;
  border: 1px solid var(--sand);
  background: var(--maroon-tint);
  border-radius:6px;
  font-size:14px;
  color: var(--maroon-dark);
}
.form-success.show{ display:block; }

.map-block{
  margin-top: 40px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 46px;
  background:
    linear-gradient(var(--off-white), var(--off-white)) padding-box,
    repeating-linear-gradient(45deg, var(--paper-line) 0 1px, transparent 0 14px) border-box;
  text-align:center;
}
.map-block h4{ font-size:18px; margin-bottom:8px; }
.map-block p{ color: var(--ink-muted); font-size:14px; }

/* ================= FOOTER ================= */
.site-footer{ background: var(--charcoal); color: #C9BEB1; padding: 70px 0 0; }
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand-word{ color: var(--off-white); }
.footer-tagline{ margin-top:16px; font-size:14.5px; max-width: 34ch; color:#B7ACA0; }
.footer-col h5{
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--sand-soft);
  margin-bottom: 18px;
  font-weight:600;
}
.footer-col li{ margin-bottom: 11px; }
.footer-col a{ font-size:14px; color:#C9BEB1; }
.footer-col a:hover{ color: var(--off-white); }
.footer-socials{ display:flex; gap:10px; margin-top:20px; }
.footer-socials a{
  width:36px; height:36px;
  border: 1px solid rgba(201,190,177,0.3);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.footer-socials svg{ width:16px; height:16px; stroke:#C9BEB1; }
.footer-socials a:hover{ border-color: var(--sand); }
.footer-socials a:hover svg{ stroke: var(--sand); }
.footer-bottom{
  border-top: 1px solid rgba(201,190,177,0.15);
  padding: 22px 0;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size: 13px;
  color: #8A7F73;
}

/* ================= REAL PHOTOGRAPHY / LOGO ART ================= */
.brand-logo-img{
  height: 42px;
  width: auto;
  display:block;
}
.footer-brand .brand-logo-img{ height: 40px; }

.hero-photo-frame{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(33,27,25,0.45);
}
.hero-photo-frame img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  aspect-ratio: 4/3.4;
}
.hero-stamp{
  position:absolute;
  top: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  background: var(--cream);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  box-shadow: 0 10px 24px -10px rgba(33,27,25,0.4);
  border: 1px solid var(--paper-line);
}
.hero-stamp img{ width:100%; height:auto; }

.tile-photo{
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 16px;
}
.tile-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .3s ease; }
.tile:hover .tile-photo img{ transform: scale(1.05); }

.cat-photo{
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  box-shadow: 0 20px 40px -24px rgba(33,27,25,0.35);
}
.cat-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.banner-photo{
  width:100%;
  aspect-ratio: 21/6;
  border-radius: 8px;
  overflow:hidden;
  margin: 40px 0 0;
  position:relative;
}
.banner-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.banner-photo-caption{
  position:absolute;
  left:24px; bottom:16px;
  color:#fff;
  font-family: var(--font-code);
  font-size:12px;
  letter-spacing:0.05em;
  background: rgba(33,27,25,0.55);
  padding:6px 12px;
  border-radius: 3px;
}

.philosophy-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.philosophy-badge img{ max-width: 260px; }

.info-logo{
  height: 34px;
  margin-bottom: 20px;
}

@media (max-width: 640px){
  .hero-stamp{ width:72px; height:72px; top:-12px; right:-12px; }
}

/* ================= 3D VIEW COMPONENTS ================= */
.globe-section .two-col{ align-items:center; }
.globe-stage{
  position:relative;
  width:100%;
  max-width: 460px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(200,150,90,0.18), rgba(33,27,25,0) 70%);
}
.globe-stage canvas{
  width:100% !important;
  height:100% !important;
  cursor: grab;
  touch-action: none;
}
.globe-stage canvas:active{ cursor: grabbing; }
.globe-hint{
  text-align:center;
  margin-top: 14px;
  font-family: var(--font-code);
  font-size: 11.5px;
  letter-spacing:0.05em;
  color: var(--sand-soft);
}
.globe-legend{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 18px;
  margin-top: 26px;
}
.globe-legend-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13.5px;
  color: #C9BEB1;
}
.legend-dot{
  width:10px; height:10px;
  border-radius:50%;
  flex:none;
}

.crate-stage{
  position:relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.crate-stage canvas{
  width:100% !important;
  height:100% !important;
  cursor: grab;
  touch-action: none;
}
.crate-stage canvas:active{ cursor: grabbing; }
.crate-wrap{ text-align:center; }
.crate-wrap .globe-hint{ color: var(--ink-muted); }

.webgl-fallback{
  display:none;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 30px;
  color: #C9BEB1;
  font-size: 13.5px;
  border: 1px dashed rgba(228,199,154,0.35);
  border-radius: 12px;
  height:100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .menu-toggle{ display:flex; }
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; }
  .two-col{ grid-template-columns:1fr; gap:36px; }
  .stamp-grid{ grid-template-columns: 1fr 1fr; }
  .tile-grid{ grid-template-columns: repeat(2,1fr); }
  .mission-grid{ grid-template-columns: repeat(2,1fr); }
  .partner-grid{ grid-template-columns: 1fr; }
  .cat-intro{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .stepper{ grid-template-columns: 1fr; }
  .step-list{ flex-direction:row; overflow-x:auto; gap:6px; }
  .step-item{ border-left:none; border-bottom:2px solid var(--paper-line); flex:none; }
  .step-item.active{ border-bottom-color:var(--maroon); border-left:none; }
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .wrap{ padding: 0 20px; }
  .nav{ padding: 14px 20px; }
  section{ padding: 60px 0; }
  .stamp-grid{ grid-template-columns: 1fr; }
  .tile-grid{ grid-template-columns: 1fr; }
  .mission-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
  .acc-panel-in{ padding-left:4px; }
  .acc-panel-in ul{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html{ scroll-behavior:auto; }
}
