/* ==========================================================================
   You Got Mail Fishtown — Editorial redesign
   Clean, minimal, generous whitespace, mint-green accent from the logo.
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  /* Color */
  --ink: #111111;
  --ink-2: #2a2a2a;
  --muted: #6b6b6b;
  --muted-2: #8b8b8b;
  --rule: #e6e6df;
  --paper: #fbfaf5;       /* warm off-white */
  --paper-2: #f4f2ea;     /* slightly darker */
  --green: #a8d8b9;       /* logo mint */
  --green-2: #7fc29b;     /* deeper mint */
  --green-ink: #1f3a2c;   /* very dark green for emphasis */
  --green-wash: #eaf4ed;  /* pale green wash */

  /* Type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 9vw, 128px);
  --radius: 4px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
.display {
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 300;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-ink);
}
h2.section-title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
p { margin: 0 0 1em; color: var(--ink-2); }
p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green-2);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* ----- Layout ----- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section--paper-2 { background: var(--paper-2); }
.section--green { background: var(--green-wash); }
.section--dark { background: var(--ink); color: #f5f5f0; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c8c8c2; }
.section--dark .eyebrow { color: #9a9a92; }

/* ----- Top info bar ----- */
.topbar {
  background: var(--ink);
  color: #e6e6df;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
.topbar a { color: #fff; }
.topbar .hours { color: #c8c8c2; }

/* ----- Nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo img { width: 44px; height: 44px; }
.nav-logo span { line-height: 1; }
.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--green-ink); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green-2);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.15s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--green-ink); transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--green-ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--green { background: var(--green-ink); color: #fff; }
.btn--green:hover { background: var(--ink); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Hero ----- */
.hero {
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, var(--green-wash), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 4px var(--green-wash);
}
.hero p.lead { margin-top: 28px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.2;
  color: var(--green-ink);
  padding: 16px;
  transform: rotate(-6deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ----- Feature strip ----- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature {
  padding: 48px 40px;
  border-right: 1px solid var(--rule);
}
.feature:last-child { border-right: none; }
.feature .num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--green-2);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

/* ----- Two-column text ----- */
.twocol {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.twocol .right p { max-width: 60ch; }

/* ----- Pricing ----- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.plan {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--green-2); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.plan--featured {
  background: var(--ink);
  color: #f5f5f0;
  border-color: var(--ink);
}
.plan--featured h3, .plan--featured .price { color: #fff; }
.plan--featured p, .plan--featured .plan-feature { color: #c8c8c2; }
.plan-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--green);
  color: var(--green-ink);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.plan h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 4px;
}
.plan .plan-sub {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.plan--featured .plan-sub { color: #9a9a92; }
.price {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price .unit {
  font-size: 16px;
  letter-spacing: 0;
  color: var(--muted);
  font-family: var(--sans);
  margin-left: 4px;
}
.plan--featured .price .unit { color: #9a9a92; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  flex: 1;
}
.plan-feature {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.plan--featured .plan-feature { border-top-color: rgba(255,255,255,0.12); }
.plan-feature::before {
  content: "→";
  color: var(--green-2);
  font-weight: 400;
}
.plan .btn { justify-content: center; }
.plan--featured .btn--ghost { color: #fff; border-color: #fff; }
.plan--featured .btn--ghost:hover { background: #fff; color: var(--ink); }

.notice {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--green-wash);
  border-left: 3px solid var(--green-2);
  font-size: 14px;
  color: var(--ink-2);
  max-width: 640px;
}
.notice strong { color: var(--green-ink); }

/* ----- Steps ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.step .step-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ----- Address card ----- */
.address-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--green-2);
  padding: 32px 36px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
  margin: 32px 0;
  border-radius: 4px;
}
.address-card .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.address-card strong { color: var(--ink); }

/* ----- FAQ ----- */
.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
}
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item details { padding: 28px 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--green-2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--green-ink); }
.faq-item .answer {
  padding-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}
.faq-item .answer ul { padding-left: 20px; margin: 12px 0; }
.faq-item .answer li { padding: 3px 0; }

/* ----- Forms ----- */
.form {
  max-width: 640px;
  margin-top: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  font: inherit;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--green-ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form .btn { margin-top: 16px; }

/* ----- Contact split ----- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-info {
  background: var(--green-wash);
  padding: 48px 44px;
  border-radius: 6px;
}
.contact-info .info-block { margin-bottom: 32px; }
.contact-info .info-block:last-child { margin-bottom: 0; }
.contact-info .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-ink);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.contact-info p { color: var(--ink-2); margin: 0; font-size: 16px; line-height: 1.6; }
.contact-info .phone {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.map-frame {
  margin-top: 32px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
}

/* ----- Big quote / CTA banner ----- */
.cta-banner {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta-banner .eyebrow::before { background: var(--green); }
.cta-banner h2 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto 40px;
}

/* ----- Footer ----- */
.footer {
  background: var(--ink);
  color: #c8c8c2;
  padding: 80px 0 32px;
}
.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a92;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer a { color: #e6e6df; display: block; padding: 4px 0; font-size: 14px; }
.footer a:hover { color: var(--green); }
.footer .brand {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.footer .tagline { font-size: 14px; max-width: 28ch; color: #9a9a92; }
.footer-bottom {
  margin-top: 64px;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid #2a2a2a;
  font-size: 12px;
  color: #7a7a72;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.footer-bottom > span:last-child {
  margin-left: auto;
  text-align: right;
}
.footer-bottom a { display: inline; padding: 0; color: inherit; }
.footer-bottom a:hover { color: var(--green); }

/* ----- Page header (non-home) ----- */
.page-head {
  padding: clamp(80px, 12vw, 160px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.page-head h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  font-weight: 300;
}
.page-head p.lead { max-width: 56ch; }

/* ----- Utility ----- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-8 { margin-top: 64px; }

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { max-width: 520px; }
  .features, .plans, .steps { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--rule); }
  .feature:last-child { border-bottom: none; }
  .twocol, .contact-split { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--rule);
    gap: 20px;
  }
  .topbar .container { flex-direction: column; gap: 4px; padding: 8px 16px; font-size: 11px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Hide the wordmark next to the logo — circular logo alone is enough on mobile */
  .nav-logo span { display: none; }
  .nav .container {
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    justify-content: flex-start;
  }
  /* On mobile: logo left, then [MENU][SIGN UP] grouped at the right */
  .nav-logo { order: 1; margin-right: auto; }
  .nav-toggle { order: 2; display: inline-block; padding: 9px 14px; font-size: 12px; }
  .nav-cta { order: 3; padding: 9px 16px; font-size: 12px; }
}
@media (max-width: 560px) {
  .footer .container { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .footer-bottom > span:last-child {
    margin-left: 0;
    text-align: center;
  }
  .footer-bottom a { display: inline; }
  .plan { padding: 32px 24px; }
  .hero-badge { width: 110px; height: 110px; font-size: 12px; left: -12px; bottom: -12px; }
  .contact-info { padding: 32px 28px; }
  .contact-info .phone { font-size: 28px; }
  /* Compact header for phones — keep Sign Up visible but tight */
  .nav-cta {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
    gap: 4px;
  }
  .nav-toggle { padding: 8px 12px; font-size: 11px; }
  .nav-logo img { width: 40px; height: 40px; }
  .nav .container { gap: 8px; }
}
