/* ==========================================================================
   ASHA TEXTILE — Fashion & Textile Marketing
   Custom layer over the Tailwind CDN build. Cool graphic fashion-poster
   system: oat ground, ultramarine blocks, vermilion pops, thick rules,
   Bricolage Grotesque display.
   ========================================================================== */

:root {
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --edge: #17181A;
}

* { border-color: var(--edge); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}
p { text-wrap: pretty; }

::selection { background: #2431B8; color: #F6F5EF; }

/* Skip link ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: #17181A;
  color: #F6F5EF;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
}
.skip-link:focus { left: 14px; top: 14px; }

/* Kicker label -------------------------------------------------------------- */
.kicker {
  display: inline-block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #EA5A2B;
}
.kicker--cloud { color: #F6F5EF; }

/* Highlight box behind a word */
.mark-box {
  display: inline-block;
  background: #EA5A2B;
  color: #F6F5EF;
  padding: 0 0.18em 0.06em;
  transform: rotate(-1.5deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 15px 26px;
  border: 2px solid var(--edge);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn__arrow { transition: transform 0.2s var(--ease); }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--edge); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ink { background: #17181A; color: #EDEBE3; }
.btn--klein { background: #2431B8; color: #F6F5EF; border-color: #2431B8; }
.btn--klein:hover { box-shadow: 5px 5px 0 #17181A; }
.btn--flame { background: #EA5A2B; color: #17181A; border-color: #17181A; }
.btn--cloud { background: #F6F5EF; color: #17181A; }
.btn--line { background: transparent; color: #17181A; }
.btn--line:hover { background: #17181A; color: #EDEBE3; }

/* ==========================================================================
   Blocks
   ========================================================================== */

.blockcard {
  border: 2px solid var(--edge);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.blockcard:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--edge); }

.rule-thick { height: 2px; background: var(--edge); }

/* Big outlined numerals for the process panels */
.ghost-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px var(--edge);
}
.ghost-num--cloud { -webkit-text-stroke-color: rgba(246, 245, 239, 0.5); }

/* ==========================================================================
   Chips
   ========================================================================== */

.chip {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--edge);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-item[data-state="open"] .faq-body { max-height: 24rem; }

.faq-chev { transition: transform 0.35s var(--ease); }
.faq-item[data-state="open"] .faq-chev { transform: rotate(180deg); color: #EA5A2B; }
.faq-item[data-state="open"] .faq-q { color: #2431B8; }

/* ==========================================================================
   Forms (on the ink contact band)
   ========================================================================== */

.field {
  width: 100%;
  background: #1F2022;
  border: 2px solid #34353A;
  color: #F6F5EF;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.field::placeholder { color: rgba(246, 245, 239, 0.35); }
.field:focus { border-color: #EA5A2B; }
.field option { color: #17181A; }
select.field { appearance: none; }
.field-wrap { position: relative; }
.field-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #EA5A2B;
  border-bottom: 2px solid #EA5A2B;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* ==========================================================================
   Toast
   ========================================================================== */

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #17181A;
  color: #F6F5EF;
  border: 2px solid #EA5A2B;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 20px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.toast.is-shown { transform: none; opacity: 1; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .btn__arrow, .blockcard, .faq-chev { transition: none; }
  .btn:hover, .blockcard:hover { transform: none; box-shadow: none; }
}
