/* ============================================
   TEE COFFEE STUDIO — Brand Stylesheet v2
   Palette: Deep Plum, Lilac, Dusty Sage, Cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

:root {
  --plum:       #3D1A3E;
  --plum-deep:  #2A0F2B;
  --plum-mid:   #5C2E5E;
  --lilac:      #C4A8D4;
  --lilac-light:#E8DCF0;
  --sage:       #8A9E85;
  --sage-light: #C7D4C4;
  --cream:      #FAF6F0;
  --cream-warm: #F2EBE0;
  --text-dark:  #1C1C1C;
  --text-mid:   #4A4A4A;
  --text-light: #7A7A7A;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --shadow-soft: 0 2px 20px rgba(61,26,62,0.08);
  --shadow-card: 0 4px 32px rgba(61,26,62,0.12);

  --max-width: 1160px;
  --section-pad: 96px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 300; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 400; }
p { font-size: 1rem; color: var(--text-mid); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 12px;
}
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--text-mid); max-width: 600px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  transition: all 0.2s ease; white-space: nowrap;
  min-height: 48px;
}
.btn-primary { background: var(--sage); color: var(--plum-deep); font-weight: 700; letter-spacing: 0.06em; }
.btn-primary:hover { background: var(--plum-mid); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-outline { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); font-weight: 600; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-sage { background: var(--sage); color: var(--white); }
.btn-sage:hover { background: #7a8e75; transform: translateY(-1px); }

/* ---- Nav ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(61,26,62,0.08);
  height: 68px; display: flex; align-items: center;
}
.nav-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--plum); letter-spacing: 0.04em; }
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.875rem; color: var(--text-mid); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--plum); }
.nav-links .nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--plum); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--cream); padding: 24px;
  border-bottom: 1px solid var(--lilac-light); z-index: 99;
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--text-dark); padding: 8px 0; border-bottom: 1px solid var(--lilac-light); }

/* ---- Footer ---- */
.site-footer { background: var(--plum-deep); color: var(--lilac-light); padding: 64px 24px 40px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(196,168,212,0.2); }
.footer-brand .nav-logo { color: var(--lilac-light); }
.footer-brand p { font-size: 0.9rem; color: rgba(232,220,240,0.65); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(232,220,240,0.65); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lilac-light); }
.footer-bottom { max-width: var(--max-width); margin: 32px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(232,220,240,0.4); flex-wrap: wrap; gap: 12px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; background: var(--plum-deep);
  display: flex; align-items: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(138,158,133,0.15) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -5%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(196,168,212,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,168,212,0.15); border: 1px solid rgba(196,168,212,0.3); border-radius: var(--radius-pill); padding: 6px 16px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lilac); margin-bottom: 32px; }
.hero-tag::before { content: '✦'; font-size: 0.6rem; }
.hero h1 { color: var(--white); max-width: 820px; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--lilac); }
.hero .lead { color: rgba(232,220,240,0.75); margin-bottom: 44px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-strip { margin-top: 80px; padding-top: 48px; border-top: 1px solid rgba(196,168,212,0.15); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hero-strip-item .label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.hero-strip-item .value { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); font-weight: 300; }

/* ---- Sections ---- */
.section { padding: var(--section-pad); }
.section-plum { background: var(--plum); color: var(--white); }
.section-plum p, .section-plum .lead { color: rgba(232,220,240,0.75); }
.section-plum .eyebrow { color: var(--sage); }
.section-plum h2, .section-plum h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-warm); }
.section-sage { background: var(--sage-light); }
.section-dark { background: var(--plum-deep); }

/* ---- Cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 56px; }
.card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--lilac-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 24px; }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* ---- Page Hero ---- */
.page-hero { background: var(--plum); padding: 140px 24px 80px; text-align: center; }
.page-hero h1 { color: var(--white); max-width: 700px; margin: 16px auto 24px; }
.page-hero .lead { color: rgba(232,220,240,0.75); margin: 0 auto 40px; }

/* ---- Two-col ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-visual { background: var(--lilac-light); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; position: relative; }
.two-col-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.testimonial-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(196,168,212,0.2); border-radius: var(--radius-lg); padding: 32px; }
.section-cream .testimonial-card, .section-warm .testimonial-card { background: var(--white); border-color: var(--lilac-light); box-shadow: var(--shadow-soft); }
.stars { color: var(--lilac); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.section-plum .stars { color: var(--sage); }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; line-height: 1.6; color: var(--text-dark); margin-bottom: 20px; }
.section-plum .testimonial-card blockquote { color: var(--lilac-light); }
.testimonial-author { font-size: 0.85rem; font-weight: 500; color: var(--text-light); }

/* ---- Menu Board ---- */
.menu-board { background: var(--plum-deep); border-radius: var(--radius-lg); padding: 56px; margin-top: 48px; }
.menu-board-header { text-align: center; margin-bottom: 48px; }
.menu-board-header h2 { color: var(--white); margin-bottom: 8px; }
.menu-board-header p { color: rgba(196,168,212,0.7); font-size: 0.95rem; }
.menu-section { margin-bottom: 48px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(196,168,212,0.15); }
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.menu-item { padding: 20px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(196,168,212,0.12); border-radius: var(--radius-md); transition: background 0.2s; }
.menu-item:hover { background: rgba(196,168,212,0.1); }
.menu-item-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 4px; font-weight: 400; }
.menu-item-desc { font-size: 0.82rem; color: rgba(196,168,212,0.65); line-height: 1.5; }
.menu-note { text-align: center; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(196,168,212,0.15); font-size: 0.85rem; color: rgba(196,168,212,0.5); font-style: italic; }

/* ---- Tap Cart ---- */
.tap-visual { background: linear-gradient(135deg, var(--plum-deep), var(--plum-mid)); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.tap-visual .big-icon { font-size: 5rem; margin-bottom: 16px; }
.tap-visual p { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(196,168,212,0.5); }

/* ---- Hot Choc ---- */
.cocoa-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.cocoa-item { background: var(--plum-deep); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.cocoa-item .cocoa-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cocoa-item h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; font-weight: 400; }
.cocoa-item p { font-size: 0.85rem; color: rgba(196,168,212,0.65); }

/* ---- Barista Team ---- */
.barista-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 56px; }
.barista-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.2s; }
.barista-card:hover { transform: translateY(-4px); }
.barista-photo { background: var(--lilac-light); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.barista-photo img { width: 100%; height: 100%; object-fit: cover; }
.barista-info { padding: 28px; }
.barista-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.barista-role { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; display: block; }
.barista-info p { font-size: 0.92rem; line-height: 1.65; }
.tee-card { grid-column: 1 / -1; }
.tee-card .barista-photo { aspect-ratio: 16/6; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-top: 56px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-thumb { background: var(--lilac-light); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-body { padding: 28px; }
.blog-meta { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.blog-body h3 { font-size: 1.35rem; margin-bottom: 10px; line-height: 1.3; }
.blog-body p { font-size: 0.9rem; line-height: 1.65; }
.blog-read-more { display: inline-block; margin-top: 16px; font-size: 0.85rem; font-weight: 500; color: var(--plum); border-bottom: 1px solid var(--lilac); }

/* ---- Checklist ---- */
.checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-mid); }
.check-dot { width: 20px; height: 20px; background: var(--sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.65rem; color: var(--sage); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--lilac-light); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--text-dark); text-align: left; gap: 16px; }
.faq-question:hover { color: var(--plum); }
.faq-chevron { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--lilac-light); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--plum); transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--plum); color: var(--white); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ---- Steps ---- */
.steps-list { margin-top: 56px; display: flex; flex-direction: column; }
.step-item { display: grid; grid-template-columns: 64px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--lilac-light); align-items: start; }
.step-item:last-child { border-bottom: none; }
.step-number { font-family: var(--font-display); font-size: 3rem; color: var(--lilac); font-weight: 300; line-height: 1; padding-top: 4px; }
.step-content h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ---- CTA Banner ---- */
.cta-banner { background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-mid) 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: '✦'; position: absolute; font-size: 20rem; color: rgba(196,168,212,0.04); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; line-height: 1; }
.cta-banner-inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); max-width: 600px; margin: 16px auto 24px; }
.cta-banner .lead { color: rgba(232,220,240,0.7); margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Info box ---- */
.info-box { background: var(--lilac-light); border-radius: var(--radius-md); padding: 20px 24px; font-size: 0.9rem; color: var(--plum); line-height: 1.6; }
.info-box strong { font-weight: 500; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  :root { --section-pad: 72px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .hero-strip { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .menu-board { padding: 32px 24px; }
  .tee-card { grid-column: auto; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  h1 { font-size: 2.4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 110px 24px 64px; }
}
