/* CANTER COFFEE CO. — WARM CREAM AESTHETIC */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:       #F5F0E8;
  --bg2:      #EDE8DF;
  --bg3:      #E4DDD2;
  --dark:     #1C1008;
  --dark2:    #2C1A0E;
  --brown:    #3D2009;
  --warm:     #6B3A1F;
  --gold:     #C9843A;
  --gold2:    #A86A28;
  --cream:    #F5F0E8;
  --text:     #1C1008;
  --muted:    #6B5A4A;
  --border:   rgba(107,58,31,0.15);
  --border2:  rgba(107,58,31,0.25);
  --card:     #FFFFFF;
  --card2:    #FAF7F2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* TYPE */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
p { max-width: 620px; color: var(--muted); }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.rule { width: 40px; height: 2px; background: var(--gold); margin: 1.2rem 0; opacity: 0.5; border-radius: 1px; }
.rule.c { margin: 1.2rem auto; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: var(--gold2); }
.btn:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover { background: var(--brown); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(28,16,8,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,132,58,0.15);
  transition: padding 0.3s;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: none; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  color: rgba(245,240,232,0.65); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .ncta a {
  color: var(--gold); border: 1px solid rgba(201,132,58,0.5);
  padding: 0.4rem 1rem; border-radius: 2px;
}
.nav-links .ncta a:hover { background: var(--gold); color: #fff; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); border-radius: 1px; }
@media(min-width: 860px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400;
  color: var(--cream); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mob-close {
  position: absolute; top: 1.2rem; right: 5vw;
  background: none; border: none; color: var(--cream);
  font-size: 1.5rem; cursor: pointer; opacity: 0.5; padding: 8px;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,132,58,0.15);
  padding: 4rem 6vw 2rem;
  color: var(--cream);
}
.footer-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-logo img { width: 80px; height: auto; display: block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); opacity: 0.55; }
.footer-brand p { font-size: 0.82rem; color: rgba(245,240,232,0.5); margin-bottom: 0.8rem; max-width: none; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col-title { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--gold); opacity: 0.6; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.82rem; color: rgba(245,240,232,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.7rem; color: rgba(245,240,232,0.3);
  text-align: center; display: flex; flex-direction: column; gap: 0.3rem;
}
@media(min-width: 800px) {
  .site-footer { padding: 5rem 4vw 2.5rem; }
  .footer-grid { flex-direction: row; max-width: 1200px; margin: 0 auto; gap: 5rem; align-items: start; }
  .footer-logo { flex: 0 0 160px; }
  .footer-links { flex: 1; grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { max-width: 1200px; margin: 2rem auto 0; flex-direction: row; justify-content: space-between; }
}

/* PAGE HERO */
.page-hero {
  min-height: 50vh; display: flex; align-items: flex-end;
  padding: 7rem 6vw 3.5rem; position: relative; overflow: hidden;
  background: var(--dark);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,0.97) 0%, rgba(28,16,8,0.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(245,240,232,0.6); font-size: 0.95rem; max-width: 500px; }
@media(min-width: 800px) { .page-hero { min-height: 55vh; padding: 10rem 4vw 5rem; } }

/* SECTIONS */
.section { padding: 4.5rem 6vw; }
.section-center { padding: 4.5rem 6vw; text-align: center; }
.bg2 { background: var(--bg2); }
.bg3 { background: var(--bg3); }
.bg-dark { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }
@media(min-width: 800px) {
  .section { padding: 7rem 4vw; max-width: 1200px; margin: 0 auto; }
  .section-center { padding: 7rem 4vw; }
}

/* CARDS */
.card {
  background: var(--card); padding: 2rem;
  border: 1px solid var(--border); border-radius: 2px;
}
.card-hover { transition: border-color 0.2s, box-shadow 0.2s; }
.card-hover:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(107,58,31,0.08); }

/* PHOTO PLACEHOLDER */
.ph {
  background: var(--bg3); border: 1px dashed var(--border2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 2rem;
  color: var(--muted); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; line-height: 2;
}
.ph::before { content: '✦'; font-size: 1rem; opacity: 0.3; display: block; margin-bottom: 0.8rem; }

/* FORMS */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 500;
  color: var(--text); margin-bottom: 0.45rem; letter-spacing: 0.02em;
}
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--card); border: 1.5px solid var(--border2);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 300;
  outline: none; transition: border-color 0.2s; border-radius: 2px;
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,90,74,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media(min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* SELECT arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B3A1F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* STEP FORM */
.step-header {
  background: var(--dark);
  padding: 2rem 6vw 1.5rem;
  text-align: center;
}
.step-header-logo { width: 60px; height: auto; margin: 0 auto 0.8rem; display: block; }
.step-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--cream); margin-bottom: 0.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.step-header-title em { font-style: italic; color: var(--gold); }
.step-header-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
.step-progress {
  display: flex; gap: 0; margin-top: 1.5rem;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.step-bar {
  flex: 1; height: 3px;
  background: rgba(245,240,232,0.15);
  transition: background 0.3s;
}
.step-bar.active { background: var(--gold); }
.step-bar.done { background: rgba(201,132,58,0.5); }

.step-body { padding: 3rem 6vw; max-width: 700px; margin: 0 auto; }
.step-eyebrow {
  font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; color: var(--gold); margin-bottom: 0.5rem;
}
.step-body h2 { font-size: 2rem; margin-bottom: 0.4rem; }
.step-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem; gap: 1rem;
}
.btn-back {
  background: none; border: 1.5px solid var(--border2); color: var(--muted);
  font-size: 0.72rem; padding: 0.75rem 1.5rem; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: 0.08em;
  border-radius: 2px; transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: var(--gold); color: var(--gold); }
.btn-next {
  flex: 1; max-width: 280px;
  background: var(--gold); color: #fff;
  font-size: 0.78rem; padding: 0.9rem 1.5rem; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; border: none; border-radius: 2px;
  transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-next:hover { background: var(--gold2); }

/* INFO BOX */
.info-box {
  background: rgba(201,132,58,0.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  border-radius: 0 2px 2px 0;
}
.info-box p { font-size: 0.83rem; color: var(--muted); margin: 0; max-width: none; }
.info-box strong { color: var(--gold); font-weight: 500; }

/* PACKAGE CARDS */
.pkg-card {
  border: 1.5px solid var(--border);
  border-radius: 4px; padding: 1.5rem;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  margin-bottom: 0.75rem;
  background: var(--card);
}
.pkg-card:hover { border-color: var(--gold); }
.pkg-card.selected { border-color: var(--gold); background: rgba(201,132,58,0.04); }
.pkg-card input[type="radio"] { display: none; }
.pkg-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.pkg-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); }
.pkg-badge {
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 20px; font-weight: 500;
}
.badge-entry { background: rgba(107,90,74,0.12); color: var(--muted); }
.badge-popular { background: rgba(201,132,58,0.15); color: var(--gold2); }
.badge-premium { background: rgba(28,16,8,0.08); color: var(--brown); }
.badge-help { background: rgba(107,58,31,0.08); color: var(--warm); }
.pkg-price { font-size: 0.82rem; color: var(--gold); font-weight: 500; margin-bottom: 0.8rem; }
.pkg-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1rem; }
.pkg-features li {
  font-size: 0.78rem; color: var(--muted); list-style: none;
  padding-left: 1rem; position: relative; line-height: 1.5;
}
.pkg-features li::before { content: '–'; position: absolute; left: 0; color: var(--gold); opacity: 0.6; }
.pkg-estimate {
  background: var(--dark); color: var(--cream);
  padding: 1.5rem; border-radius: 2px; margin-top: 1.5rem;
}
.pkg-estimate h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.5rem; color: var(--cream); }
.pkg-estimate p { font-size: 0.78rem; color: rgba(245,240,232,0.55); max-width: none; margin: 0; }
.pkg-estimate-row { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pkg-estimate-row:last-child { border-bottom: none; }

/* TWO COL */
.two-col { display: flex; flex-direction: column; gap: 3rem; padding: 4.5rem 6vw; }
.two-col-img { width: 100%; height: 60vw; max-height: 420px; overflow: hidden; border-radius: 2px; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text p { font-size: 0.92rem; margin-bottom: 1rem; }
@media(min-width: 800px) {
  .two-col { flex-direction: row !important; gap: 5rem; align-items: center; padding: 7rem 4vw; max-width: 1100px; margin: 0 auto; }
  .two-col-img { flex: 1; height: 500px; max-height: none; }
  .two-col-text { flex: 1; }
}

/* ACCORDION */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.3rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.accordion-q { font-size: 0.95rem; font-weight: 400; color: var(--text); line-height: 1.4; }
.accordion-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1.5px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; font-family: monospace;
  transition: transform 0.3s, background 0.2s;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.accordion-item.open .accordion-body { max-height: 300px; padding-bottom: 1.5rem; }
.accordion-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.9; max-width: none; }

/* MENU ITEMS */
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border); gap: 1rem;
}
.menu-item-info h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--dark); }
.menu-item-info p { font-size: 0.82rem; color: var(--muted); max-width: none; line-height: 1.5; }
.menu-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); white-space: nowrap; }

/* PRICE TIERS */
.price-tier { background: var(--card); padding: 1.8rem; border: 1.5px solid var(--border); border-radius: 2px; transition: border-color 0.2s; }
.price-tier:hover { border-color: var(--gold); }
.tier-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }
.tier-cans { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.tier-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark); }
.tier-price span { font-size: 0.85rem; color: var(--muted); }

/* FADE IN */
.fi { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* VENUE TAGS */
.tag { font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--border2); color: var(--warm); padding: 0.25rem 0.7rem; border-radius: 20px; display: inline-block; }
