@import url('https://fonts.googleapis.com/css2?family=Allura&family=Montserrat:wght@400;600&display=swap');

/* =========================
   BRAND COLORS + GLOBALS
========================= */

:root {
  --ww-red: #E53935;
  --ww-gray-soft: #F2F2F2;
  --ww-gray-text: #555555;
  --ww-gray-border: #E6E6E6;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ww-gray-text);
  background: #ffffff;
}

/* =========================
   SHARED UTILITIES
========================= */

.ww-section { padding: 64px 0; }
.ww-container { width: min(1100px, 92%); margin: 0 auto; }

.ww-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #777;
  margin-bottom: 14px;
}

.ww-h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #111;
}

.ww-h2{
  margin: 6px 0 0;
  font-size: 22px;
  color:#111;
}

.ww-script {
  font-family: "Allura", cursive;
  color: var(--ww-red);
  font-size: 22px;
  margin-bottom: 18px;
}

.ww-body {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 22px;
}

.ww-link{
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--ww-red);
  text-decoration: none;
}

.ww-link:hover{ text-decoration: underline; }

/* =========================
   HOMEPAGE HERO
========================= */

.ww-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.ww-hero-right { min-height: 320px; }

.ww-hero-media {
  background: linear-gradient(180deg, #f2f2f2 0%, #eaeaea 100%);
  border-radius: 22px;
  min-height: 320px;
  position: relative;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
  overflow: hidden;
  display:block;
}

.ww-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ww-red);
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-weight: 700;
}

.ww-maker-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.85);
  color: #444;
  font-size: 11px;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-weight: 700;
}

.ww-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.ww-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all .25s ease;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.ww-btn-primary {
  background: var(--ww-red) !important;
  color: #fff !important;
  border: none !important;
}

.ww-btn-ghost {
  background: #fff !important;
  border: 1px solid var(--ww-gray-border) !important;
  color: #333 !important;
}

@media (max-width: 900px) {
  .ww-hero-grid { grid-template-columns: 1fr; }
  .ww-hero-media { min-height: 260px; }
}

/* =========================
   QUOTE STRIP
========================= */

.ww-quote-inner{
  text-align: center;
  padding: 10px 0 0;
}

.ww-quote-big{
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.ww-quote-small{
  font-size: 13px;
  color: #777;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================
   COLLECTION TILES
========================= */

.ww-collections-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.ww-tiles{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ww-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  min-height: 150px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  display:block;
  transition: transform .25s ease;
}

.ww-tile-bg{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #bdbdbd 0%, #8f8f8f 100%);
}

.ww-tile-text{
  position:absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color: #fff;
}

.ww-tile-title{
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ww-tile-sub{
  font-size: 10px;
  letter-spacing: 1.8px;
  opacity: 0.9;
  font-weight: 700;
}

.ww-tile:hover{ transform: translateY(-2px); }

@media (max-width: 980px){
  .ww-tiles{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px){
  .ww-collections-header{ flex-direction: column; align-items:flex-start; }
  .ww-tiles{ grid-template-columns: 1fr; }
}

/* =========================
   ABOUT PREVIEW
========================= */

.ww-about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.ww-about-card{
  background: #fff;
  border: 2px dashed #f0cfcf;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.ww-about-card strong{
  display:block;
  margin-bottom: 8px;
}

.ww-signature{
  margin-top: 16px;
  font-family: "Allura", cursive;
  color: var(--ww-red);
  font-size: 22px;
}

@media (max-width: 900px){
  .ww-about-grid{ grid-template-columns: 1fr; }
}

/* =========================
   NEWSLETTER STRIP
========================= */

.ww-newsletter{
  background: #fff7f7;
  padding: 28px 0;
  border-top: 1px solid #f0dede;
}

.ww-newsletter-inner{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ww-newsletter-sub{
  font-size: 12px;
  color: #777;
}

.ww-newsletter-form{
  display:flex;
  gap: 10px;
}

.ww-newsletter-form input{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  min-width: 220px;
}

.ww-newsletter-form button{
  background: var(--ww-red);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:10px 18px;
  font-weight:700;
}

@media (max-width: 900px){
  .ww-newsletter-inner{
    flex-direction: column;
    align-items:flex-start;
  }
}

/* =========================
   OPTIONAL HOME LOGO MARK
========================= */

.ww-home-mark{
  display:flex;
  justify-content:center;
  padding: 14px 0 6px;
}

.ww-home-mark img{
  max-height: 80px;
  width:auto;
}

/* =========================
   GLOSSARY PAGE (MOCKUP MATCH)
========================= */

.ww-gloss-hero{
  padding: 34px 0 18px;
}

.ww-gloss-hero-inner{
  text-align:center;
  max-width: 860px;
  margin: 0 auto;
}

.ww-gloss-logo{
  font-weight: 800;
  letter-spacing: 2px;
  color:#111;
  margin-bottom: 4px;
}

.ww-gloss-logo span{
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 6px;
}

.ww-gloss-subtitle{
  margin: 6px 0 8px;
  font-size: 26px;
}

.ww-gloss-intro{
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 12px;
  color:#777;
  line-height: 1.8;
}

/* Main white rounded card */
.ww-gloss-card{
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  padding: 26px 26px 22px;
}

.ww-gloss-card-head{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
  margin-bottom: 10px;
}

.ww-gloss-note{
  font-size: 12px;
  color:#777;
  line-height: 1.7;
  text-align: right;
}

/* A–Z row should look like pills with lots of whitespace */
.ww-az{
  display:flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0 18px;
  margin: 10px 0 0;
}

.ww-az-pill{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid #f0dede;
  color:#777;
  background:#fff;
  text-decoration:none;
}

.ww-az-pill:hover{
  border-color:#e6bebe;
}

.ww-az-pill.is-active{
  background: var(--ww-red);
  border-color: var(--ww-red);
  color:#fff;
}

/* Letter section */
.ww-letter{
  padding-top: 16px;
  scroll-margin-top: 90px;
}

.ww-letter-title{
  font-weight: 900;
  color: var(--ww-red);
  letter-spacing: 2px;
  margin: 16px 0 12px;
  position: relative;
  padding-bottom: 10px;
}

.ww-letter-title:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 38px;
  height: 2px;
  background: var(--ww-red);
  opacity: .65;
}

/* Definition cards */
.ww-def-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ww-def{
  border: 1px solid #f3dddd;
  border-radius: 16px;
  padding: 16px;
  background:#fffdfd;
}

.ww-def-title{
  font-weight: 800;
  color:#111;
  margin-bottom: 4px;
  font-size: 14px;
}

.ww-def-tag{
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 800;
  color:#b0b0b0;
  margin-bottom: 10px;
}

.ww-def-body{
  font-size: 12px;
  color:#666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px){
  .ww-gloss-card-head{ grid-template-columns: 1fr; }
  .ww-gloss-note{ text-align:left; }
  .ww-def-grid{ grid-template-columns: 1fr; }
}