/* ==========================================================================
   Freshly Folded Austin — site stylesheet
   Rebuilt from the Framer site to drop monthly hosting cost to $0.
   Palette + type match the original published site exactly.
   ========================================================================== */

:root {
  --petrol: #2C5A54;
  --petrol-dark: #1E3E3A;
  --linen: #FBF8F2;
  --coral: #F3805C;
  --ink: #202B27;
  --sage: #5A6561;
  --white: #FFFFFF;
  --mint: #F2F6F3;
  --line: #E7E9EC;
  --red-soft: #F7E3E0;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }

p { color: var(--sage); margin: 0 0 16px; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 14px;
}

.lede {
  font-size: 18px;
  color: var(--sage);
  max-width: 640px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--petrol); color: var(--white); }
.btn-primary:hover { background: var(--petrol-dark); }
.btn-ghost { background: transparent; color: var(--petrol); font-weight: 700; }
.btn-ghost:hover { text-decoration: underline; }
.btn-white { background: var(--white); color: var(--petrol); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 54px; width: auto; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: var(--petrol-dark);
  white-space: nowrap;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--sage);
  margin-top: 4px;
}
nav.main-nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
nav.main-nav a {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}
nav.main-nav a.active,
nav.main-nav a:hover { color: var(--petrol); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { display: block; }

.header-cta { flex-shrink: 0; }

@media (max-width: 1120px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 14px 24px; border-top: 1px solid var(--line); white-space: normal; }
  .nav-toggle { display: block; }
  .header-cta .btn span.btn-label { display: none; }
  .logo img { height: 44px; }
  .logo-word { font-size: 19px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.zip-box {
  background: var(--mint);
  border-radius: 16px;
  padding: 24px;
  max-width: 420px;
  margin-top: 28px;
}
.zip-box label { display: block; font-size: 14px; margin-bottom: 8px; color: var(--ink); font-weight: 600; }
.zip-form { display: flex; gap: 10px; }
.zip-form input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
}
.zip-form input:focus { outline: 2px solid var(--petrol); }
.zip-note { margin-top: 18px; font-weight: 700; color: var(--petrol); font-size: 15px; }
.zip-response { margin-top: 12px; font-size: 14px; color: var(--petrol); display: none; }

.hero-art {
  background: var(--petrol);
  border-radius: 24px;
  padding: 48px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { max-width: 260px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
}

/* ---------- Strip (3 feature bullets under hero) ---------- */
.strip {
  background: var(--petrol);
  color: var(--white);
  padding: 22px 0;
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  text-align: center;
}
.strip strong { font-weight: 700; font-size: 15px; }

/* ---------- Section ---------- */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-mint { background: var(--mint); }
.section-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--line);
}
.card .icon {
  width: 44px; height: 44px;
  color: var(--petrol);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 15px; }

.card-dark {
  background: var(--petrol);
  color: var(--white);
  border-radius: 20px;
  padding: 36px;
}
.card-dark h3 { color: var(--white); }
.card-dark ul { margin: 0; padding: 0; list-style: none; }
.card-dark li { padding: 6px 0; font-size: 15px; }

.card-light {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--line);
}
.card-light ul { margin: 0; padding: 0; list-style: none; }
.card-light li { padding: 6px 0; font-size: 15px; color: var(--sage); }

/* ---------- Numbered steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .steps, .steps.steps-4 { grid-template-columns: 1fr; }
}
.step .num {
  font-weight: 800;
  color: var(--coral);
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; margin: 0; }

/* ---------- Photo banner ---------- */
.photo-banner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.photo-banner img { width: 100%; height: 420px; object-fit: cover; }
.photo-caption {
  text-align: center;
  font-weight: 700;
  color: var(--petrol);
  font-family: var(--font-head);
  font-size: 20px;
  margin-top: 22px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--petrol);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
}
.cta-band .eyebrow { color: var(--coral); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #C9DAD6; }

/* ---------- Pricing ---------- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .price-cards { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.price-card.popular { border: 2px solid var(--petrol); position: relative; }
.price-card .tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.price-card .amount {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.price-card p { font-size: 14px; margin: 0; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare-table th { color: var(--sage); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:nth-child(2), .compare-table th:nth-child(2) { color: var(--petrol); font-weight: 700; }

.mini-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 900px) { .mini-price-grid { grid-template-columns: repeat(2, 1fr); } }
.mini-price {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: var(--white);
  text-align: center;
}
.mini-price.highlight { border: 2px solid var(--petrol); background: var(--mint); }
.mini-price .tag { font-size: 11px; font-weight: 800; letter-spacing: .5px; color: var(--sage); text-transform: uppercase; }
.mini-price .amount { font-family: var(--font-head); font-size: 26px; margin: 6px 0; }
.mini-price .amount.pop { color: var(--petrol); }
.mini-price p { font-size: 12.5px; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
}
.faq-item h3 { margin-bottom: 8px; font-size: 18px; }
.faq-item p { margin: 0; font-size: 15px; }

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--line);
}
.contact-card .tag { color: var(--coral); font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.contact-card .value { font-family: var(--font-head); font-size: 20px; font-weight: 600; }
.contact-card .value a { color: var(--petrol); }

/* ---------- Locations ---------- */
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
}
.location-card .pin { color: var(--coral); flex-shrink: 0; width: 28px; height: 28px; margin-top: 4px; }
.location-card h3 { margin-bottom: 8px; }
.location-card p { margin: 0; font-size: 15px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}
.footer-inner .proud { font-weight: 700; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 16px; }
