:root {
  --red: #C41A1F;
  --red-deep: #B01216;
  --red-ink: #A31418;
  --red-light: #F2B8B9;
  --ink: #1A1A1C;
  --vinyl: #FAFAF8;
  --card: #FFFFFF;
  --lawn: #EAF2E4;
  --bg: #FFFFFF;
  --text: #1A1A1C;
  --border: rgba(26,26,28,0.1);
  --picket-bg: var(--lawn);
  --picket-color: #FFFFFF;
  --picket-border: rgba(26,26,28,0.15);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141416;
    --card: #1E1E21;
    --vinyl: #141416;
    --lawn: #141416;
    --text: #EFEFEA;
    --ink: #EFEFEA; 
    --red-ink: #F2B8B9; 
    --red: #C41A1F;
    --border: rgba(239,239,234,0.1);
    --picket-bg: #1E1E21;
    --picket-color: #FAFAF8; 
    --picket-border: rgba(255,255,255,0.1);
  }
}

@font-face {
  font-family: 'Ultra';
  src: url('../fonts/ultra-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Catamaran';
  src: url('../fonts/catamaran-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Catamaran';
  src: url('../fonts/catamaran-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Catamaran', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

h1, h2, h3, h4, .ultra {
  font-family: 'Ultra', serif;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
}
h1 { font-size: clamp(2.3rem,5vw,3.7rem); }
h2 { font-size: clamp(1.7rem,3.2vw,2.5rem); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #FFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--red-deep);
  min-height: 44px;
  line-height: 1.2;
}
.btn:hover { background: var(--red-deep); color: #FFF; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* Ribbon */
.ribbon {
  background: var(--vinyl);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.ribbon.hidden { display: none; }
.ribbon a { text-decoration: underline; font-weight: 600; }
.ribbon button {
  background: none; border: none; cursor: pointer; text-decoration: underline; color: inherit; font-size: 0.85rem; font-family: inherit; font-weight: 600; padding: 4px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-plate {
  background: #1A1A1C;
  color: #FFF;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.8;
  font-weight: 600;
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav > a { font-weight: 600; }
.desktop-nav .btn { min-height: 44px; }

/* Mobile Nav */
.mobile-nav { display: none; }
.sticky-call { display: none; }

@media (max-width: 800px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary {
    list-style: none;
    font-size: 1.5rem;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  /* Hamburger icon */
  .mobile-nav summary::before {
    content: "\2261"; /* mathematical identical to/hamburger */
    font-size: 2rem;
    line-height: 1;
  }
  .mobile-nav[open] .mobile-nav-content {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .mobile-nav-content a { font-weight: 600; padding: 8px 0; }
}

@media (max-width: 767px) {
  .sticky-call {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--red);
    color: #FFF;
    text-align: center;
    padding: 16px;
    font-weight: 600;
    z-index: 50;
    font-size: 1.1rem;
    border-top: 1px solid var(--red-deep);
  }
  body { padding-bottom: 60px; }
}

/* Typography elements */
.kicker {
  color: var(--red-ink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.sub {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Picket Line */
.picket-line-wrapper {
  background: var(--picket-bg);
  padding-top: 16px;
}
.picket-line {
  height: 46px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  gap: 4px;
  padding: 0 4px;
}
.picket {
  flex: 0 0 22px;
  height: 38px;
  background: var(--picket-color);
  border: 1px solid var(--picket-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.picket:nth-child(5n) {
  height: 46px;
}

/* Sections */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

/* Index - Hero */
.hero {
  background: var(--vinyl);
  display: flex;
  justify-content: center;
}
.hero-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 { margin-bottom: 24px; max-width: 600px; }
.hero .sub { max-width: 500px; }
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.trust {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 600;
}
.trust a { text-decoration: underline; }

/* Menu Board */
.menu-board {
  background: #1A1A1C;
  color: #FFF;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.menu-board h3 {
  color: #FFF;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.menu-group {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #3A3A3E;
}
.menu-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.menu-group h4 {
  color: #F2B8B9;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.menu-group p {
  font-size: 0.95rem;
  color: #EFEFEA;
  line-height: 1.5;
  margin: 0;
}

/* Proof Band */
.proof-band {
  background: var(--vinyl);
  text-align: center;
}
.proof-band h2 { margin-bottom: 16px; }
.proof-band .sub { margin: 0 auto 48px; max-width: 600px; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  background: var(--card);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  border: 1px solid var(--border);
}
.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.proof-caption {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.proof-caption p { font-style: italic; font-size: 0.95rem; margin: 0; }
.proof-chip {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--red-ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* About Band */
.about-band { background: var(--lawn); }
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; } }
.about-text h2 { margin-bottom: 24px; }
.about-text blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.about-kicker {
  color: var(--red-ink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-image img { border-radius: 6px; width: 100%; height: auto; }
.about-image figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Review Band */
.review-band {
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}
.review-band h2 { margin-bottom: 16px; }
.review-band p {
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Ask Band */
.ask-band { background: var(--vinyl); }
.ask-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .ask-content { grid-template-columns: 1fr; } }
.ask-text h2 { margin-bottom: 24px; }
.ask-text p { font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.ask-text .btn { margin-bottom: 24px; }
.ask-text .second-line { font-size: 0.9rem; opacity: 0.8; }
.ask-text .second-line a { text-decoration: underline; }

.quote-form {
  background: var(--card);
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
}
.quote-form h3 { margin-bottom: 24px; font-size: 1.5rem; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.form-note {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 16px;
  text-align: center;
}
.quote-form .btn { width: 100%; margin-top: 8px; }

/* Footer */
footer {
  background: #1A1A1C;
  color: #EFEFEA;
  padding: 64px 24px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-left .brand {
  font-size: 1.2rem;
  color: #FFF;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.footer-left p { font-size: 0.9rem; opacity: 0.8; }
.footer-left a { text-decoration: underline; }
.footer-right { text-align: right; }
@media (max-width: 768px) { .footer-right { text-align: left; } }
.footer-right .phones {
  color: #F2B8B9;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-right .phones a { text-decoration: none; }
.footer-right .phones a:hover { text-decoration: underline; }
.footer-right .reviews a {
  font-size: 0.9rem;
  opacity: 0.8;
  text-decoration: underline;
}

/* Services Page */
.services-hero {
  background: var(--vinyl);
  text-align: center;
  padding: 80px 24px 64px;
}
.services-hero .kicker { margin-bottom: 16px; }
.services-hero h1 { margin: 0 auto 24px; max-width: 800px; }
.services-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }

.services-sections {
  background: var(--bg);
  padding: 80px 24px;
}
.service-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-section:last-child { margin-bottom: 0; }
.service-section:nth-child(even) { direction: rtl; }
.service-section:nth-child(even) > * { direction: ltr; }
@media (max-width: 768px) {
  .service-section { grid-template-columns: 1fr; direction: ltr !important; }
}
.service-section h2 { margin-bottom: 16px; }
.service-section p { font-size: 1.1rem; opacity: 0.9; line-height: 1.6; }
.service-section img {
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 100%;
}
