/* FullCupSpace — specialty coffee culture community */
:root {
  --bg: #f5ecdd;
  --bg-soft: #ebe0cb;
  --bg-card: #ffffff;
  --ink: #2b1d14;
  --ink-soft: #5f4838;
  --muted: #8d7868;
  --espresso: #6b3a20;
  --espresso-deep: #4a2614;
  --caramel: #c8884a;
  --oat: #d9c7a8;
  --line: #e1d3ba;
  --shadow: 0 24px 50px -28px rgba(43, 29, 20, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.15;
}

a { color: var(--espresso); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.logo {
  font-family: 'Crimson Pro', serif;
  font-size: 26px; font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.logo-cup {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--espresso);
  position: relative;
  box-shadow: inset 0 -4px 0 var(--espresso-deep);
}
.logo-cup::before {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px;
  height: 4px;
  border-radius: 4px;
  background: var(--oat);
  opacity: 0.7;
}
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  color: var(--ink-soft); font-size: 15px; font-weight: 500;
}
.nav a:hover { color: var(--espresso); }

/* Hero */
.hero {
  padding: 110px 0 110px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--caramel) 0%, transparent 60%);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--caramel);
}
.hero h1 {
  font-size: clamp(46px, 6.5vw, 76px);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.04;
}
.hero h1 em {
  font-style: italic;
  color: var(--caramel);
  font-weight: 500;
}
.hero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--espresso);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--espresso);
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s ease;
}
.btn:hover { background: var(--caramel); border-color: var(--caramel); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  margin-left: 10px;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.hero-visual {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--caramel) 0%, var(--espresso) 50%, var(--espresso-deep) 100%);
  position: relative;
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(245, 236, 221, 0.25);
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 22%; left: 28%;
  width: 38%; height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 236, 221, 0.45), transparent 70%);
  transform: rotate(-15deg);
}

/* Sections */
section { padding: 100px 0; border-bottom: 1px solid var(--line); }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--caramel);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 18px; font-weight: 500;
  max-width: 720px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 60px;
}

/* Pour cards */
.pours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pour {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pour:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pour-img {
  aspect-ratio: 16/10;
  position: relative;
}
.pour:nth-child(1) .pour-img { background: linear-gradient(160deg, var(--caramel), var(--espresso-deep)); }
.pour:nth-child(2) .pour-img { background: linear-gradient(160deg, var(--oat), var(--caramel)); }
.pour:nth-child(3) .pour-img { background: linear-gradient(160deg, var(--espresso), var(--ink)); }
.pour:nth-child(4) .pour-img { background: linear-gradient(160deg, var(--bg-soft), var(--oat)); }
.pour:nth-child(5) .pour-img { background: linear-gradient(160deg, var(--caramel), var(--ink)); }
.pour:nth-child(6) .pour-img { background: linear-gradient(160deg, var(--espresso-deep), var(--espresso)); }
.pour-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.pour-body { padding: 26px 26px 30px; }
.pour-loc {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  margin-bottom: 10px;
}
.pour h3 { font-size: 22px; margin-bottom: 10px; font-weight: 500; }
.pour p { color: var(--ink-soft); font-size: 15px; }
.pour-meta {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--muted);
  display: flex; justify-content: space-between;
}

/* Quote band */
.band {
  background: var(--espresso-deep);
  color: var(--bg);
  border: none;
  padding: 110px 0;
  text-align: center;
}
.band h2 {
  color: var(--bg);
  font-size: clamp(30px, 4.2vw, 44px);
  max-width: 740px; margin: 0 auto 22px;
  font-weight: 500; font-style: italic;
}
.band p { color: var(--oat); max-width: 480px; margin: 0 auto 32px; }
.band .btn { background: var(--caramel); border-color: var(--caramel); color: var(--bg); }
.band .btn:hover { background: var(--bg); border-color: var(--bg); color: var(--espresso); }

/* Page */
.page { padding: 90px 0; max-width: 760px; margin: 0 auto; }
.page h1 { font-size: clamp(40px, 5vw, 56px); margin-bottom: 16px; font-weight: 500; }
.page .meta {
  color: var(--muted); font-size: 13px; letter-spacing: 0.06em;
  margin-bottom: 44px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.page h2 { font-size: 28px; margin: 44px 0 14px; font-weight: 500; }
.page h3 {
  font-size: 18px; margin: 26px 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.page p, .page li { color: var(--ink-soft); margin-bottom: 14px; }
.page ul { padding-left: 22px; margin-bottom: 14px; }
.page strong { color: var(--ink); }

/* Forms */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
  margin-top: 26px;
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 20px; }
label {
  display: block;
  font-size: 12px; font-weight: 600;
  margin-bottom: 8px; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.12em;
}
input, textarea, select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 15px;
  background: var(--bg); color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--caramel); background: #fff;
}
textarea { min-height: 130px; resize: vertical; }

.notice {
  background: var(--bg-soft);
  border-left: 3px solid var(--caramel);
  padding: 18px 22px; border-radius: 8px;
  margin: 22px 0; font-size: 15px; color: var(--ink-soft);
}
.notice strong { color: var(--ink); }

.success {
  display: none;
  background: #f0e6d0;
  border-left: 3px solid var(--espresso);
  padding: 18px 22px; border-radius: 8px;
  margin-top: 22px; color: var(--espresso-deep); font-size: 15px;
}
.success.show { display: block; }

/* Footer */
.site-footer {
  background: var(--bg-soft);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-grid h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 16px; color: var(--ink);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--ink-soft); font-size: 14px; }
.footer-grid p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .pours { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
