:root {
  --denim: #2B57A5;
  --denim-deep: #1E4180;
  --navy: #22406E;
  --ink: #1A1A1A;
  --paper: #FAF7F0;
  --wash: #D9E4F5;
  --denim-light: #C9D9F2;
  --ball: #FFD84D;
  --biscuit: #7A5A32;
  --steel: #5A554E;
  --white: #FFFFFF;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque-700.woff2') format('woff2'); /* per instructions use 700 for 800 ok */
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-800.woff2') format('woff2');
  font-weight: 600; /* per instructions synth 600 via 800 font ok, though let's use what we have */
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* Space for sticky mobile bar */
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--denim);
  outline-offset: 4px;
}

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

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* Preview Ribbon */
.preview-ribbon {
  background: var(--denim-deep);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.preview-ribbon a {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
}
.preview-ribbon a:hover { background: rgba(255,255,255,0.3); }
.preview-ribbon button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .preview-ribbon {
    position: fixed;
    bottom: 70px; /* Above the mobile bar */
    left: 0; right: 0;
    z-index: 99;
  }
}

/* Header */
.header {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-lockup img { height: 48px; }
@media (min-width: 768px) { .logo-lockup img { height: 56px; } }
.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--denim);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 0.6rem;
  color: var(--steel);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav-desktop { display: none; }
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
  }
  .nav-desktop a.nav-link {
    position: relative;
    padding-bottom: 4px;
    color: var(--ink);
  }
  .nav-desktop a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--denim);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }
  .nav-desktop a.nav-link:hover::after { transform: scaleX(1); }
  @media (prefers-reduced-motion: reduce) {
    .nav-desktop a.nav-link::after { transition: none; }
  }
  .nav-phone {
    background: var(--denim);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
  }
  .nav-phone:hover { background: var(--denim-deep); }
}

.nav-mobile { position: relative; }
.nav-mobile details { cursor: pointer; }
.nav-mobile summary {
  list-style: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--denim-light);
  padding: 8px 16px;
  border-radius: 99px;
  color: var(--denim-deep);
  min-height: 44px;
}
.nav-mobile summary::-webkit-details-marker { display: none; }
.nav-mobile .dropdown {
  position: absolute;
  top: 100%; right: 0;
  background: var(--white);
  border: 1px solid var(--denim-light);
  border-radius: 12px;
  margin-top: 8px;
  padding: 16px;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile .dropdown a { font-weight: 600; color: var(--denim-deep); }
@media (min-width: 768px) { .nav-mobile { display: none; } }

/* Sticky Call Bar (Mobile Only) */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  color: var(--white);
  font-weight: 600;
}
.sticky-call .call-btn {
  background: var(--ball);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .sticky-call { display: none; } }

/* Hero */
.hero {
  padding: 0 16px;
  position: relative;
  margin-bottom: 24px;
}
.hero-panel {
  background: var(--navy);
  border-radius: 24px;
  padding: 68px 24px 48px;
  position: relative;
}
@media (min-width: 768px) {
  .hero-panel {
    padding: 100px 48px 80px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
}
.peek-dog {
  position: absolute;
  top: -52px;
  left: 36px;
  width: 110px;
  z-index: 5;
}
@media (min-width: 768px) {
  .peek-dog {
    top: -71px;
    left: 120px;
    width: 150px;
  }
}
.hero { margin-top: 60px; }
@media (min-width: 768px) { .hero { margin-top: 84px; } }
.hero-content {
  color: var(--white);
  flex: 1.2;
}
.hero-kicker {
  color: var(--denim-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: block;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-sub {
  color: var(--denim-light);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.btn-yellow {
  background: var(--ball);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-yellow:hover { background: #FFD026; }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 768px) { .hero-ctas { margin-bottom: 0; } }

.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.photo-mount {
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 500px;
}
.photo-mount img {
  border-radius: 4px;
  border: 3px solid var(--white); /* The marker frame is essentially white paper border + img? Actually just white padding is the mount */
}
.photo-caption {
  font-family: 'Archivo', sans-serif;
  color: var(--steel);
  font-size: 0.875rem;
  text-align: right;
  margin-top: 12px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Proof Strip */
.proof-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--denim-light);
}
.proof-strip .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .proof-strip .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}
.proof-item svg { color: var(--denim); }
.proof-item a { color: var(--ink); text-decoration: underline; }

/* Services Menu List (Index) */
.services-menu-header {
  margin-bottom: 48px;
}
.services-menu-header h2 { margin-bottom: 16px; }
.services-menu-header p { color: var(--steel); }

.services-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.service-row {
  border-bottom: 1px solid var(--denim-light);
  padding-bottom: 24px;
}
.service-row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.service-row-header h3 { font-size: 1.5rem; color: var(--ink); }
.price-chip {
  background: var(--wash);
  color: var(--denim-deep);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.875rem;
}
.service-row p { color: var(--steel); margin-bottom: 16px; font-size: 1rem; }
.service-row a.read-more {
  color: var(--denim-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-row a.read-more:hover { text-decoration: underline; }

/* Trial Ritual Split */
.trial-split {
  padding: 80px 0;
}
.trial-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .trial-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.trial-photo {
  background: var(--wash);
  border-radius: 12px;
  overflow: hidden;
}
.trial-content h2 { margin-bottom: 24px; }
.trial-content > p { margin-bottom: 32px; color: var(--steel); }
.trial-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.trial-step {
  display: flex;
  gap: 16px;
}
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--denim);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.step-text { font-weight: 600; color: var(--ink); }
.pull-quote-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--denim);
  font-style: italic;
  color: var(--steel);
}

/* Price Highlight */
.price-highlight {
  background: var(--wash);
  padding: 80px 0;
}
.price-highlight h2 { margin-bottom: 48px; }
.menu-boards {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .menu-boards { grid-template-columns: 1fr 1fr; }
}
.menu-board {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
}
.menu-board h3 { margin-bottom: 24px; color: var(--denim-deep); font-size: 1.5rem; }
.menu-list dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted var(--denim-light);
  padding-bottom: 8px;
}
.menu-list dt { font-weight: 600; }
.menu-list dd { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; font-weight: 700; }
.price-highlight-link {
  color: var(--denim-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.price-highlight-link:hover { text-decoration: underline; }

/* Nutrition Block */
.nutrition-block {
  padding: 80px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.nutrition-kicker {
  color: var(--biscuit);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.nutrition-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.nutrition-body { color: var(--steel); margin-bottom: 16px; }
.nutrition-guarantee { font-weight: 600; }

/* Contact Band */
.contact-band {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info h2 { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-item svg { color: var(--ball); margin-top: 4px; flex-shrink: 0; }
.phone-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.hours-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hours-block p { margin-bottom: 8px; font-size: 0.875rem; color: var(--denim-light); }

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  color: var(--ink);
}
.contact-form-card h3 { margin-bottom: 24px; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input:focus-visible { outline: 2px solid #2B57A5; }
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #B9B2A5;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}
.btn-submit {
  background: var(--denim);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.btn-submit:hover { background: var(--denim-deep); }

/* Footer */
.footer {
  background: var(--navy);
  color: var(--denim-light);
  padding: 48px 0 24px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-peek {
  position: absolute;
  top: -38px;
  left: 20px;
  width: 80px;
}
@media (min-width: 768px) { .footer-peek { top: -47px; left: 104px; width: 100px; } }
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal { font-size: 0.875rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--white); }
.footer-social a:hover { color: var(--ball); }

/* Services Page Specifics */
.page-header {
  background: var(--wash);
  padding: 64px 0;
  text-align: center;
}
.page-header h1 { color: var(--denim-deep); margin-bottom: 16px; font-size: clamp(2rem, 5vw, 4rem); }
.page-header p { color: var(--steel); font-size: 1.25rem; }

.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--denim-light);
}
.service-section:last-child { border-bottom: none; }
.service-section-header { margin-bottom: 48px; }
.service-section-header h2 { font-size: 2.5rem; color: var(--ink); margin-bottom: 16px; }

.service-layout {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .service-layout.has-photo { grid-template-columns: 3fr 2fr; }
  .service-layout.photo-right { grid-template-columns: 2fr 3fr; }
  .service-layout.photo-right .service-content { order: 2; }
  .service-layout.photo-right .service-photo { order: 1; }
}

.service-photo img { border-radius: 12px; }

.service-content > p { margin-bottom: 24px; color: var(--steel); }
.service-content ul {
  list-style: none;
  margin-bottom: 32px;
}
.service-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-content ul li::before {
  content: '•';
  color: var(--denim);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.price-table {
  background: var(--white);
  border: 1px solid var(--denim-light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.price-table h3 { margin-bottom: 16px; font-size: 1.25rem; color: var(--denim-deep); }
.price-table dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-table div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted var(--denim-light);
  padding-bottom: 8px;
}
.price-table div:last-child { border-bottom: none; padding-bottom: 0; }
.price-table dt { font-weight: 600; color: var(--ink); }
.price-table dd { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--denim-deep); }
.price-table .subtext { display: block; font-size: 0.875rem; font-weight: normal; color: var(--steel); font-family: 'Archivo', sans-serif; margin-top: 4px; }

.policy-card {
  background: var(--paper);
  border: 2px solid var(--denim-light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.policy-card h3 { color: var(--denim-deep); margin-bottom: 16px; font-size: 1.25rem; }

.forms-section {
  padding: 80px 0;
  background: var(--wash);
}
.forms-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .forms-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .forms-grid { grid-template-columns: repeat(3, 1fr); } }

.form-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  color: var(--denim-deep);
  font-weight: 600;
  border: 1px solid var(--denim-light);
  transition: all 0.2s;
}
.form-link:hover { border-color: var(--denim); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.form-link svg { color: var(--denim); flex-shrink: 0; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 32px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }
