:root {
  --sb-green: #006241;
  --sb-dark-green: #1e3932;
  --sb-cream: #f7f3ee;
  --sb-gold: #cba258;
  --text-dark: #1f2933;
  --text-muted: #52606d;
  --white: #ffffff;
  --border: #e6e1d9;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #f7f3ee 0%, #fdfcf9 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: #006241;
  color: white;
  padding: 40px 0;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.hero-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  width: 92px;
  height: auto;
  flex-shrink: 0;
  margin-top: 6px;
}

.title-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero h1,
.title-wrap h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.subtitle,
.title-wrap .subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--sb-green);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.btn:hover {
  transform: translateY(-2px);
}

.main-content {
  margin-top: -42px;
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.intro-card,
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 28px;
  margin-bottom: 24px;
}

.intro-card h2 {
  margin-top: 0;
  color: var(--sb-dark-green);
  font-size: 1.2rem;
}

.terms-grid {
  display: grid;
  gap: 24px;
}

.intro-card p {
  font-size: 0.75rem;  /* smaller paragraph text */
  line-height: 1.5;
}

.card {
  padding: 30px;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--sb-green);
  font-size: 1.45rem;
  border-bottom: 2px solid rgba(203, 162, 88, 0.45);
  padding-bottom: 10px;
}

ol {
  padding-left: 22px;
  margin: 0;
}

li + li {
  margin-top: 14px;
}

li ol {
  margin-top: 12px;
}

p {
  margin-top: 0;
  color: var(--text-muted);
}

.footer {
  background: var(--sb-dark-green);
  color: rgba(255,255,255,0.88);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

a {
  color: inherit;
}

/* Tablet */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-header {
    gap: 18px;
  }

  .logo {
    width: 76px;
  }

  .title-wrap h1 {
    font-size: clamp(2.1rem, 6vw, 3.8rem);
    line-height: 1.05;
  }

  .title-wrap .subtitle {
    font-size: 1rem;
    margin-top: 16px;
  }

  .main-content {
    margin-top: -28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: min(1100px, calc(100% - 24px));
  }

  .hero-content {
    padding: 44px 0;
  }

  .hero-header {
    align-items: flex-start;
    gap: 14px;
  }

  .logo {
    width: 58px;
    margin-top: 2px;
  }

  .title-wrap h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.015em;
  }

  .title-wrap .subtitle {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }

  .btn {
    margin-top: 22px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .main-content {
    margin-top: -18px;
    padding-bottom: 36px;
  }

  .intro-card,
  .card {
    padding: 22px;
    border-radius: 18px;
  }

  .card h2 {
    font-size: 1.2rem;
  }

  ol {
    padding-left: 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-content {
    padding: 36px 0;
  }

  .hero-header {
    gap: 12px;
  }

  .logo {
    width: 50px;
  }

  .title-wrap h1 {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .title-wrap .subtitle {
    font-size: 0.82rem;
    margin-top: 10px;
  }

  .eyebrow {
    font-size: 10px;
    padding: 5px 10px;
  }

  .intro-card,
  .card {
    padding: 18px;
  }

  .card h2 {
    font-size: 1.1rem;
  }

  body {
    line-height: 1.6;
  }
}

.top-btn{
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #006241; /* Starbucks green */
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.top-btn:hover{
  background-color: #1e3932; /* darker green */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}