:root {
  --ink: #161923;
  --muted: #4f4a45;
  --paper: #ffffff;
  --cream: #fff7e8;
  --sun: #efa13b;
  --sun-soft: #ffe1aa;
  --berry: #d9292f;
  --berry-dark: #a91820;
  --green: #84c63d;
  --green-dark: #68a92e;
  --purple: #5f1b84;
  --line: rgba(22, 25, 35, 0.14);
  --shadow: 0 16px 34px rgba(22, 25, 35, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--purple);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--sun);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.top-strip {
  background: var(--purple);
  color: #fff;
  font-size: 0.9rem;
}

.top-strip-inner {
  min-height: 34px;
  padding: 6px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(210px, 52vw);
  overflow: hidden;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 125%;
  max-width: none;
  max-height: 62px;
  object-fit: contain;
  transform: translateX(-20%);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--berry);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 900;
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: #050505;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 4px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: var(--berry);
  border-bottom-color: var(--purple);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 22px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 38px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--berry);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 5.6vw, 4.8rem);
  color: var(--berry);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  color: var(--ink);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

p {
  margin-top: 0;
}

.lead,
.hero p {
  max-width: 700px;
  font-size: 1.15rem;
}

.hero-media {
  display: grid;
  justify-items: center;
}

.hero-media img {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  width: min(430px, 100%);
}

.section {
  padding: 46px 22px;
}

.section.compact {
  padding-block: 30px;
}

.section.alt {
  background: var(--green);
}

.cream-band {
  background: var(--cream);
  border-block: 1px solid rgba(239, 161, 59, 0.28);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(58, 35, 66, 0.07);
}

a.card,
.document-card {
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.card:hover,
.document-card:hover {
  border-color: var(--berry);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.action-card {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.action-card span {
  color: var(--muted);
  font-weight: 700;
}

.service-card {
  border-top: 6px solid var(--sun);
}

.service-card:nth-child(2) {
  border-top-color: var(--green);
}

.service-card:nth-child(3) {
  border-top-color: var(--berry);
}

.document-card {
  display: block;
  min-height: 164px;
}

.info-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.cta-row.vertical {
  align-items: stretch;
  flex-direction: column;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--berry);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--berry-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.button.secondary:hover {
  background: var(--green-dark);
  color: #fff;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.delivery-panel {
  align-items: center;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  padding: 18px;
  border-left: 6px solid var(--sun);
  border-radius: 8px;
  background: var(--cream);
}

.service-list article:nth-child(2) {
  border-left-color: var(--green);
}

.service-list article:nth-child(3) {
  border-left-color: var(--berry);
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list strong {
  font-size: 1.08rem;
}

.service-list span {
  color: var(--muted);
  font-weight: 700;
}

.feature-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li,
.check-list li {
  padding: 12px 14px;
  border-left: 5px solid var(--sun);
  background: #fff;
  border-radius: 8px;
  font-weight: 800;
}

.feature-list li:nth-child(3n + 2),
.check-list li:nth-child(3n + 2) {
  border-left-color: var(--green);
}

.feature-list li:nth-child(3n),
.check-list li:nth-child(3n) {
  border-left-color: var(--berry);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.gallery figure {
  margin: 0;
  display: grid;
  gap: 8px;
  align-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 128px;
  padding: 12px;
  text-align: center;
}

.gallery img {
  max-height: 72px;
  width: 100%;
  object-fit: contain;
}

.gallery figcaption {
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--muted);
}

.featured-gallery figure {
  min-height: 260px;
}

.featured-gallery img {
  max-height: 180px;
}

.brand-gallery {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.page-title {
  padding: 48px 22px 28px;
  background: linear-gradient(90deg, rgba(255, 247, 232, 0.92), rgba(255, 255, 255, 1));
}

.page-title .container {
  border-left: 8px solid var(--green);
  padding-left: 20px;
}

.content {
  max-width: 860px;
}

.intro-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.address-box {
  display: grid;
  gap: 8px;
  font-size: 1.05rem;
}

.hours {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 900;
}

.hours dd {
  margin: 0;
}

.contact-card {
  border-top: 6px solid var(--sun);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(239, 161, 59, 0.35);
  border-color: var(--sun);
}

.notice {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff3c7;
  border: 1px solid #f1cf71;
  color: #5e4310;
}

.site-footer {
  background: var(--sun);
  color: #fff;
  padding: 34px 22px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-grid div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: grid;
  gap: 4px;
  text-align: right;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 12px 0 16px;
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    min-height: 44px;
    background: rgba(255, 255, 255, 0.26);
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero,
  .grid.two,
  .grid.three,
  .quick-actions,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .intro-row {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .section,
  .page-title,
  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .button {
    width: 100%;
  }
}
