:root {
  --paper: #fffaf0;
  --cream: #fff0c7;
  --ink: #182536;
  --muted: #627084;
  --line: #f0ddbd;
  --red: #f05a4f;
  --green: #16a085;
  --yellow: #f7bd2f;
  --blue: #2f9ad6;
  --pink: #f06ba5;
  --mint: #dff8ee;
  --sky: #dff3ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(240, 90, 79, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(247, 189, 47, 0.2), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(47, 154, 214, 0.18), transparent 26%),
    var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(240, 221, 189, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: fit-content;
}

.brand-logo {
  width: clamp(146px, 15vw, 202px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314255;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover {
  color: var(--red);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  color: var(--white);
  background: var(--green);
}

.button svg,
.header-action svg,
.service-card svg,
.quick-strip svg,
.map-card svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 76px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(62px, 8vw, 110px) clamp(20px, 5vw, 70px);
  isolation: isolate;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 37, 54, 0.84) 0%, rgba(24, 37, 54, 0.58) 44%, rgba(24, 37, 54, 0.08) 78%),
    linear-gradient(0deg, rgba(22, 160, 133, 0.18), rgba(247, 189, 47, 0.08));
}

.hero-content {
  width: min(730px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffe083;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(3.15rem, 8vw, 7.6rem);
  line-height: 0.92;
  font-weight: 800;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lead {
  width: min(680px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff7c54);
  box-shadow: 0 14px 34px rgba(240, 90, 79, 0.3);
}

.button.primary.light {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.secondary.on-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(16px, 4vw, 56px);
  transform: translateY(-34px);
  background: var(--yellow);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-strip article {
  min-height: 118px;
  padding: 22px;
  background: var(--white);
}

.quick-strip article:nth-child(1) svg {
  color: var(--yellow);
}

.quick-strip article:nth-child(2) svg {
  color: var(--blue);
}

.quick-strip article:nth-child(3) svg {
  color: var(--green);
}

.quick-strip article:nth-child(4) svg {
  color: var(--pink);
}

.quick-strip span,
.quick-strip strong {
  display: block;
}

.quick-strip span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.quick-strip strong {
  margin-top: 4px;
  font-size: 1.08rem;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 70px);
}

.updates-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  padding-top: 18px;
  padding-bottom: clamp(56px, 7vw, 90px);
}

.update-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px 20px;
  min-height: 286px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(24, 37, 54, 0.08);
}

.offer-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(247, 189, 47, 0.38), transparent 36%),
    var(--white);
  border-top: 6px solid var(--yellow);
}

.event-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(240, 107, 165, 0.25), transparent 36%),
    var(--white);
  border-top: 6px solid var(--pink);
}

.update-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  border-radius: 14px;
}

.offer-card .update-icon {
  background: var(--yellow);
}

.event-card .update-icon {
  color: var(--white);
  background: var(--pink);
}

.update-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.4;
}

.update-copy .eyebrow {
  margin: 4px 0 12px;
}

.update-copy h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.update-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.text-link {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: end;
  width: fit-content;
  min-height: 42px;
  padding: 0 2px;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.text-link:focus-visible,
.button:focus-visible,
.header-action:focus-visible,
.map-card a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr) minmax(320px, 0.48fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding-top: 42px;
}

.section-copy p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.illustration-card,
.feature-images figure,
.status-panel,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(47, 154, 214, 0.12);
}

.illustration-card,
.feature-images figure {
  margin: 0;
  overflow: hidden;
}

.illustration-card img,
.feature-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.status-panel {
  padding: 26px;
}

.status-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

.open-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.status-panel h3 {
  margin-top: 22px;
  font-size: 1.7rem;
}

.hours-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.hours-list div {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hours-list span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 34px;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 240, 199, 0.86), rgba(223, 243, 255, 0.74)),
    var(--cream);
}

.feature-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 0 22px;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.review-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 236px;
  padding: 26px;
  border-top: 5px solid var(--red);
  box-shadow: 0 12px 34px rgba(24, 37, 54, 0.06);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.service-card h3 {
  margin-top: 28px;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-card.accent-green {
  border-top-color: var(--green);
}

.service-card.accent-green svg {
  color: var(--green);
}

.service-card.accent-yellow {
  border-top-color: var(--yellow);
}

.service-card.accent-yellow svg {
  color: var(--yellow);
}

.service-card.accent-blue {
  border-top-color: var(--blue);
}

.service-card.accent-blue svg {
  color: var(--blue);
}

.service-card.accent-pink {
  border-top-color: var(--pink);
}

.service-card.accent-pink svg {
  color: var(--pink);
}

.service-card.accent-ink {
  border-top-color: var(--ink);
}

.service-card.accent-ink svg {
  color: var(--ink);
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 160, 133, 0.96), rgba(47, 154, 214, 0.92)),
    var(--green);
}

.order-band h2 {
  width: min(920px, 100%);
  font-size: clamp(1.9rem, 3vw, 3.5rem);
}

.reviews-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(240, 107, 165, 0.12), transparent 26%),
    radial-gradient(circle at 88% 5%, rgba(247, 189, 47, 0.18), transparent 24%),
    var(--paper);
}

.review-grid figure {
  padding: 28px;
}

blockquote {
  margin: 0;
  color: #283541;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.62;
}

.review-note {
  max-width: 830px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 248, 238, 0.72)),
    var(--white);
}

.map-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.map-card svg {
  width: 38px;
  height: 38px;
  color: var(--red);
}

.map-card strong {
  font-size: 1.32rem;
  line-height: 1.25;
}

.map-card span {
  color: var(--muted);
}

.map-card a {
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.legal-hero {
  padding: clamp(66px, 9vw, 122px) clamp(20px, 5vw, 70px) clamp(42px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 16%, rgba(247, 189, 47, 0.25), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(240, 107, 165, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(223, 248, 238, 0.56));
}

.legal-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.68;
}

.legal-layout {
  display: grid;
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 70px) clamp(58px, 8vw, 108px);
}

.legal-card {
  width: min(980px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 37, 54, 0.06);
}

.legal-card:nth-child(even) {
  justify-self: end;
}

.legal-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.legal-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--muted);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.legal-highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  border-top: 5px solid var(--yellow);
}

.legal-highlight svg {
  width: 36px;
  height: 36px;
  color: var(--yellow);
}

.cookie-choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
  font-weight: 800;
}

.cookie-choice strong {
  color: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer a,
.footer-links a {
  color: var(--white);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .quick-strip,
  .updates-section,
  .service-grid,
  .review-grid,
  .contact-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 142px;
    max-height: 42px;
  }

  .header-action {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .hero {
    min-height: 680px;
    padding: 48px 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(24, 37, 54, 0.92), rgba(24, 37, 54, 0.54)),
      linear-gradient(0deg, rgba(22, 160, 133, 0.26), rgba(247, 189, 47, 0.08));
  }

  h1 {
    font-size: clamp(2.55rem, 12.2vw, 4rem);
    line-height: 0.99;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .quick-strip,
  .updates-section,
  .service-grid,
  .feature-images,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin: 0 16px;
    transform: translateY(-24px);
  }

  .quick-strip article {
    min-height: 94px;
  }

  .section {
    padding: 54px 18px;
  }

  .order-band {
    grid-template-columns: 1fr;
  }

  .legal-list div,
  .legal-highlight {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}
