@import url('https://fonts.googleapis.com/css2?family=Chicle&family=Google+Sans:wght@200;400;600&display=swap');

/* ========================
   DESIGN TOKENS
   ======================== */
:root{
  --muted:#5f6c67;
  --paper:#f7f4ef;
  --card:#ffffff;
  --edge:rgba(0,0,0,.08);
  --radius:16px;

  --shadow:0 6px 18px rgba(0,0,0,.06);
  --shadow-soft:0 10px 22px rgba(0,0,0,.05);

  --ink:#4b3d33;
  --ink-soft:#7b6a5b;
  --accent:#de7c7a;

  --brand:#6b5a4c;
  --brand-strong:#56493e;
  --brand-ink:#2e241d;

  --ring:#b88966;
}

/* ========================
   BASE
   ======================== */
html,
body{
  height:100%;
}

body{
  margin:0;
  color:var(--ink);
  font:20px/1.65 'Google Sans', sans-serif;
  font-weight:200;
  background:
    repeating-linear-gradient(90deg, rgba(75,61,51,.01) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(75,61,51,.01) 0 1px, transparent 1px 3px),
    linear-gradient(to bottom, rgba(75,61,51,.04) 1px, transparent 1px) repeat-y,
    radial-gradient(60% 40% at 50% -10%, #eef5f2 0%, #faf8f4 60%, #f6f2ec 100%);
  background-size:3px 3px, 3px 3px, 100% 28px, auto;
  background-attachment:fixed;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:#d07b73;
  text-decoration:none;
  font-weight:600;
}

a:hover{
  text-decoration:underline;
  opacity:0.8;
}

/* ========================
   SITE HEADER
   ======================== */
.site-header{
  padding:24px 16px 0;
}

.site-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  margin:24px 0 12px;

  font-family:'Chicle', cursive;
  font-size:clamp(3rem, 8vw, 5rem);
  line-height:1.05;
  text-align:center;
  color:var(--accent);
  text-shadow:0 2px 0 rgba(0,0,0,.22), 0 4px 10px rgba(0,0,0,.16);

  flex-wrap:wrap;
}

.site-tagline{
  margin-top:10px;
  font-size:0.9rem;
  color:#5f5f5f;
  text-align:center;
  padding:0 12px;
}

.cozy-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#d07b73;
  font-size:14px;
  padding-top:25px;
}

.cozy-divider::before,
.cozy-divider::after{
  content:"";
  flex:1;
  height:1px;
  margin:0 12px;
  background:linear-gradient(to right, transparent, #e3a8a0, transparent);
}

/* ========================
   MAIN CONTAINER
   ======================== */
.container{
  width:min(100% - 32px, 1100px);
  margin:50px auto 0;
  padding:20px 24px;

  background:var(--card);
  border:1px dotted #d5c4b5;
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);

  font-size:20px;
  transition:transform .25s ease, box-shadow .25s ease;
}

ul{
  list-style:"✦ ";
  padding-left:1.5rem;
}

/* ========================
   SITE FOOTER
   ======================== */
.site-footer{
  padding:0 16px 24px;
}

.copyright{
  text-align:center;
  font-size:0.9rem;
}

/* ========================
   TABLET
   ======================== */
@media (max-width: 900px){
  body{
    font-size:18px;
  }

  .container{
    width:min(100% - 24px, 900px);
    margin-top:36px;
    padding:18px 20px;
    font-size:18px;
  }
}

/* ========================
   MOBILE
   ======================== */
@media (max-width: 600px){
  body{
    font-size:17px;
    line-height:1.55;
    background-attachment:scroll;
  }

  .site-header{
    padding:18px 12px 0;
  }

  .site-title{
    font-size:clamp(2.4rem, 12vw, 3.6rem);
    margin:18px 0 10px;
    line-height:1;
  }

  .site-tagline{
    font-size:0.85rem;
  }

  .cozy-divider{
    padding-top:18px;
    font-size:12px;
  }

  .cozy-divider::before,
  .cozy-divider::after{
    margin:0 8px;
  }

  .container{
    width:min(100% - 20px, 100%);
    margin-top:24px;
    padding:16px;
    font-size:17px;
    border-radius:12px;
  }

  ul{
    padding-left:1.2rem;
  }

  .copyright{
    font-size:0.85rem;
  }
}

/* ========================
   VERY SMALL SCREENS
   ======================== */
@media (max-width: 420px){
  .site-title{
    gap:.35rem;
  }

  .container{
    padding:14px;
  }

  .cozy-divider::before,
  .cozy-divider::after{
    margin:0 6px;
  }
}
