/* ============================================
     1. DESIGN TOKENS
     ============================================ */
  :root{
    --canvas:        #E8DFC8; /* fundo lona / aniagem */
    --canvas-deep:    #D8CBB0; /* painel mais escuro sobre a lona */
    --ink:            #2B211A; /* marrom-café, faz de "preto" */
    --ink-soft:       #4A3C2D;
    --rust:           #A6491F; /* acento principal, terracota queimado */
    --rust-deep:      #7E3416;
    --leather:        #6B5335; /* acento secundário */
    --brass:          #C9922B; /* destaque / detalhe de latão */
    --paper:          #F3ECDC; /* branco quente para cartões claros */
    --line:           rgba(43,33,26,0.18);

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-w: 1180px;
    --gap-section: clamp(64px, 9vw, 128px);
    --radius-tag: 3px;
  }

  :root{
    color-scheme: light;
  }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --canvas:      #21190F;
      --canvas-deep: #2B2115;
      --ink:         #EFE6D3;
      --ink-soft:    #D9CBB0;
      --paper:       #2B2115;
      --line:        rgba(239,230,211,0.16);
    }
  }
  :root[data-theme="dark"]{
    --canvas:      #21190F;
    --canvas-deep: #2B2115;
    --ink:         #EFE6D3;
    --ink-soft:    #D9CBB0;
    --paper:       #2B2115;
    --line:        rgba(239,230,211,0.16);
  }

  /* ============================================
     2. RESET
     ============================================ */
  *,*::before,*::after{ box-sizing: border-box; }
  html{ -webkit-text-size-adjust: 100%; }
  body{
    margin:0;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color: inherit; }
  h1,h2,h3,p,figure{ margin:0; }
  ul{ margin:0; padding:0; list-style:none; }
  button{ font: inherit; }

  .wrap{
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
  }

  :focus-visible{
    outline: 2px solid var(--rust);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  /* ============================================
     3. HEADER
     ============================================ */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
  }
  .site-header .wrap{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .wordmark{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.28rem;
    letter-spacing: 0.01em;
    text-decoration:none;
    color: var(--ink);
    white-space: nowrap;
  }
  .wordmark span{ color: var(--rust); }

  .header-actions{
    display:flex;
    align-items:center;
    gap: clamp(14px, 3vw, 28px);
  }
  .phone-link{
    text-decoration:none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-soft);
    display: none;
  }
  @media (min-width: 640px){
    .phone-link{ display:inline; }
  }

  /* ============================================
     4. BUTTONS
     ============================================ */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 13px 24px;
    background: var(--rust);
    color: #F8EFDD;
    text-decoration:none;
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid var(--rust);
    border-radius: var(--radius-tag);
    transition: background 0.15s ease, transform 0.1s ease;
    cursor: pointer;
  }
  .btn:hover{ background: var(--rust-deep); border-color: var(--rust-deep); }
  .btn:active{ transform: translateY(1px); }
  .btn-ghost{
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-ghost:hover{ background: var(--ink); color: var(--canvas); }
  .btn-lg{
    padding: 17px 32px;
    font-size: 1.05rem;
  }
  .btn-icon{ width:18px; height:18px; flex:none; }

  /* ============================================
     5. HERO
     ============================================ */
  .hero{
    position: relative;
    min-height: min(88vh, 760px);
    display:flex;
    align-items:flex-end;
    background: #1c140c;
    overflow: hidden;
  }
  .hero-photo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: 62% 30%;
    filter: sepia(38%) saturate(150%) hue-rotate(-8deg) brightness(0.62) contrast(1.05);
  }
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(0deg, rgba(28,20,12,0.94) 0%, rgba(28,20,12,0.72) 28%, rgba(28,20,12,0.18) 62%, rgba(28,20,12,0.35) 100%);
  }
  .hero-content{
    position:relative;
    z-index:2;
    padding-top: 140px;
    padding-bottom: clamp(40px, 6vw, 76px);
    max-width: 620px;
  }
  .hero-eyebrow{
    color: #E7CFA1;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 14px;
  }
  .hero h1{
    font-family: var(--font-display);
    font-weight: 600;
    color: #F8EFDD;
    font-size: clamp(2.3rem, 5.4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
  }
  .hero p{
    margin-top: 20px;
    color: #E4D9C3;
    font-size: 1.12rem;
    max-width: 46ch;
  }
  .hero-ctas{
    margin-top: 34px;
    display:flex;
    flex-wrap:wrap;
    gap: 14px;
  }

  /* ============================================
     6. SECTION SCAFFOLDING
     ============================================ */
  section{
    padding: var(--gap-section) 0;
    border-bottom: 1px solid var(--line);
  }
  .section-head{
    max-width: 640px;
    margin-bottom: 48px;
  }
  .section-head h2{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    line-height: 1.14;
    letter-spacing: -0.005em;
  }
  .section-head p{
    margin-top: 16px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 56ch;
  }

  /* ============================================
     7. SOBRE — duas colunas
     ============================================ */
  .about-grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 6vw, 72px);
    align-items:start;
  }
  @media (max-width: 820px){
    .about-grid{ grid-template-columns: 1fr; }
  }
  .about-copy p{
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 54ch;
  }
  .about-copy p + p{ margin-top: 16px; }
  .about-copy .lede{
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1.35;
    max-width: 22ch;
    margin-bottom: 22px;
  }

  .stat-panel{
    background: var(--canvas-deep);
    border: 1px solid var(--line);
    padding: clamp(24px, 4vw, 36px);
  }
  .stat-row{
    display:flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-row:first-child{ padding-top: 0; }
  .stat-row:last-child{ border-bottom:none; padding-bottom:0; }
  .stat-label{
    font-size: 0.96rem;
    color: var(--ink-soft);
  }
  .stat-value{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    text-align: right;
  }

  /* ============================================
     8. ETIQUETAS (categorias) — motivo de tag de roupa
     ============================================ */
  .tag-row{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 3vw, 28px);
  }
  @media (max-width: 760px){
    .tag-row{ grid-template-columns: 1fr; max-width: 380px; }
  }
  .tag{
    position: relative;
    background: var(--paper);
    border: 1.5px dashed var(--leather);
    padding: 30px 26px 26px;
    transform: rotate(var(--tilt, 0deg));
  }
  .tag:nth-child(1){ --tilt: -1.2deg; }
  .tag:nth-child(2){ --tilt: 0.8deg; }
  .tag:nth-child(3){ --tilt: -0.6deg; }
  .tag::before{
    content:"";
    position:absolute;
    top: -9px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: var(--canvas);
    border: 1.5px dashed var(--leather);
    border-radius: 50%;
  }
  .tag h3{
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .tag p{
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  /* ============================================
     9. COMO FUNCIONA — sequência numerada
     ============================================ */
  .steps{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 40px);
  }
  @media (max-width: 820px){
    .steps{ grid-template-columns: 1fr; max-width: 480px; }
  }
  .step{
    padding-top: 22px;
    border-top: 2px solid var(--ink);
  }
  .step-num{
    font-family: var(--font-display);
    font-style: italic;
    color: var(--rust);
    font-size: 1.1rem;
    display:block;
    margin-bottom: 14px;
  }
  .step h3{
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .step p{
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  /* ============================================
     10. DIFERENCIAL — dois pontos, sem sequência
     ============================================ */
  .diff-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 48px);
  }
  @media (max-width: 720px){
    .diff-grid{ grid-template-columns: 1fr; max-width: 480px; }
  }
  .diff-item{
    padding-top: 20px;
    border-top: 2px solid var(--rust);
  }
  .diff-item h3{
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .diff-item p{
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  /* ============================================
     11. NOSSA HISTÓRIA — fundador
     ============================================ */
  .story-hero{
    position: relative;
    min-height: min(85vh, 720px);
    display:flex;
    align-items:flex-end;
    background: #1c140c;
    overflow: hidden;
  }
  .story-hero > .wrap{
    width: 100%;
  }
  .story-hero-photo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: 50% 20%;
    filter: brightness(0.52) contrast(1.08);
  }
  .story-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(0deg, rgba(20,14,9,0.92) 0%, rgba(20,14,9,0.74) 30%, rgba(20,14,9,0.32) 60%, rgba(20,14,9,0.5) 100%);
  }
  .story-hero-content{
    position:relative;
    z-index:2;
    padding-top: 120px;
    padding-bottom: clamp(40px, 6vw, 76px);
    max-width: 460px;
    margin-left: auto;
    text-align: left;
  }
  .story-hero-content h2{
    font-family: var(--font-display);
    font-weight: 600;
    color: #F8EFDD;
    font-size: clamp(2rem, 4.6vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
  .story-hero-content p{
    margin-top: 18px;
    color: #E4D9C3;
    font-size: 1.1rem;
    max-width: 48ch;
  }
  .story{
    background: var(--canvas-deep);
    padding-top: clamp(40px, 5vw, 64px);
  }
  .story-quote{
    max-width: 720px;
  }
  .story blockquote{
    border-left: 3px solid var(--rust);
    padding-left: 24px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
  }
  .story cite{
    font-style: normal;
    font-size: 0.95rem;
    color: var(--ink-soft);
    padding-left: 27px;
    display: block;
  }

  /* ============================================
     12. ONDE ESTAMOS
     ============================================ */
  .location{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items:center;
  }
  @media (max-width: 820px){
    .location{ grid-template-columns: 1fr; }
  }
  .location-copy p{ color: var(--ink-soft); font-size: 1.02rem; max-width: 46ch; }
  .location-copy p + p{ margin-top:14px; }
  .location-copy address{
    font-style: normal;
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.6;
  }
  .location-copy address strong{
    display:block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .location-map{
    background: var(--canvas-deep);
    border: 1px solid var(--line);
    padding: 34px;
    min-height: 220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap: 18px;
  }
  .pin-line{ display:flex; align-items:flex-start; gap: 14px; }
  .pin-line svg{ flex:none; margin-top:3px; color: var(--rust); }
  .pin-line span{ font-size: 0.98rem; color: var(--ink-soft); }
  .pin-line strong{ color: var(--ink); font-weight: 600; }

  /* ============================================
     13. CTA FINAL
     ============================================ */
  .cta-band{
    background: var(--ink);
    color: var(--canvas);
    border-bottom: none;
    text-align: left;
  }
  .cta-band .wrap{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content: space-between;
    gap: 28px;
  }
  .cta-band h2{
    font-family: var(--font-display);
    font-weight: 600;
    color: #F8EFDD;
    font-size: clamp(1.7rem, 3.6vw, 2.35rem);
    max-width: 14ch;
  }
  .cta-band p{
    color: #D9CBB0;
    margin-top: 10px;
    font-size: 1rem;
  }

  /* ============================================
     14. FOOTER
     ============================================ */
  footer{
    padding: 40px 0;
  }
  .footer-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }
  .footer-grid .wordmark{ font-size: 1.08rem; }
  .footer-meta{ display:flex; flex-direction:column; gap:6px; }
