:root {
  color-scheme: light;
  --ink: #111315;
  --text: #272a2e;
  --muted: #686d73;
  --line: #dfe2e5;
  --paper: #ffffff;
  --soft: #f6f6f4;
  --yellow: #f7c948;
  --yellow-soft: #fff2b6;
  --blue: #1267a5;
  --green: #168b55;
  --red: #cc1822;
  --dark: #171715;
  --max-width: 1180px;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
}

body,
button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.wrap {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid #e3e0d9;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 164px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 10px 13px;
  background: var(--yellow);
  color: #080808;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-wrap {
  border-top: 1px solid #ece9e3;
}

.nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-block: 6px;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 6px;
  padding: 7px 11px;
  color: #3a3a37;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  background: #f1eee6;
  color: #111;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 570px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 16, 5, 0.15) 0%, rgba(22, 16, 5, 0.38) 34%, rgba(22, 16, 5, 0.92) 100%);
  content: "";
}

.hero.kranken::after {
  background: linear-gradient(180deg, rgba(7, 24, 36, 0.18) 0%, rgba(7, 24, 36, 0.4) 36%, rgba(7, 24, 36, 0.97) 100%);
}

.hero-content {
  padding-block: 72px 42px;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #876f00;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section.dark .eyebrow {
  color: var(--yellow);
}

.theme-blue .eyebrow,
.hero.kranken .eyebrow {
  color: #ffd6d9;
}

.theme-red .header-call {
  background: var(--red);
  color: #fff;
}

.theme-red .quick-contact {
  background: var(--red);
}

.theme-red .quick-link {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.94);
}

.theme-red .quick-grid {
  grid-template-columns: 1fr;
}

.theme-red .mobile-callbar a:first-child {
  background: var(--red);
  color: #fff;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 39px;
  font-weight: 850;
  line-height: 1.04;
}

h2 {
  margin-bottom: 14px;
  font-size: 31px;
  font-weight: 820;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

p {
  line-height: 1.58;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.48;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 16px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.96);
}

.button.primary {
  background: var(--yellow);
  color: #090909;
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(13, 16, 18, 0.76);
  color: #fff;
}

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

.quick-contact {
  padding: 16px 0;
  background: var(--yellow);
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.quick-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 7px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-decoration: none;
}

.quick-link span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.quick-link strong {
  font-size: 20px;
  white-space: nowrap;
}

.quick-link em {
  display: block;
  margin-top: 2px;
  color: #525252;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 13px;
  font-size: 14px;
}

.contact-email span {
  font-weight: 750;
}

.contact-email a {
  font-weight: 850;
  text-underline-offset: 3px;
}

.section {
  padding-block: 58px;
}

.section.soft {
  background: var(--soft);
}

.section.yellow {
  background: var(--yellow);
}

.section.yellow .eyebrow {
  color: #5b4700;
}

.section.yellow .note {
  color: #54491f;
}

.section.dark {
  background: var(--dark);
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.about-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.section-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-stack {
  display: grid;
  gap: 44px;
}

.service-row {
  display: grid;
  gap: 22px;
  align-items: center;
}

.service-row img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.service-copy {
  padding: 2px 4px;
}

.service-copy p {
  color: var(--muted);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card .card-body {
  padding: 20px;
}

.image-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-card {
  padding: 20px;
}

.contact-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.phone-line {
  display: inline-flex;
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
  text-decoration: none;
}

.phone-line:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-card {
  overflow: hidden;
}

.partner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.partner-card .card-body {
  padding: 18px;
}

.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-strip,
.order-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.feature-strip > div:first-child,
.order-layout > div:first-child {
  max-width: 650px;
}

.feature-photo {
  display: block;
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: cover;
}

.delivery-visual {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.delivery-visual-head {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--ink);
  color: #fff;
}

.delivery-visual-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-visual-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
}

.delivery-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
}

.delivery-steps li > span:last-child {
  display: grid;
  gap: 2px;
}

.delivery-steps strong,
.delivery-steps small {
  display: block;
}

.delivery-steps small {
  color: var(--muted);
  font-size: 13px;
}

.step-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 18px;
  font-weight: 850;
}

.delivery-visual-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ink);
}

.delivery-price,
.delivery-visual-bottom a {
  display: grid;
  gap: 2px;
  padding: 17px 18px;
  background: var(--yellow-soft);
  color: var(--ink);
  text-decoration: none;
}

.delivery-visual-bottom a {
  background: var(--green);
  color: #fff;
}

.delivery-price small,
.delivery-visual-bottom a small {
  font-size: 12px;
  font-weight: 750;
}

.delivery-price strong,
.delivery-visual-bottom a strong {
  font-size: 23px;
  line-height: 1.1;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.price {
  padding: 19px;
  background: #fff;
}

.price.featured {
  border-color: #d2bd00;
  background: var(--yellow-soft);
}

.price strong {
  display: block;
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 850;
}

.price p {
  margin: 0;
  color: var(--muted);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9ced3;
  border-radius: 6px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: #777d83;
  outline: 3px solid rgba(255, 229, 0, 0.35);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.section.dark .note {
  color: rgba(255, 255, 255, 0.67);
}

.legal-hero {
  padding-block: 48px;
  background: var(--yellow);
  color: var(--ink);
}

.theme-red .legal-hero {
  background: var(--red);
  color: #fff;
}

.legal-hero .eyebrow {
  color: #5b4700;
}

.theme-red .legal-hero .eyebrow {
  color: #ffd6d9;
}

.legal-hero h1 {
  max-width: 880px;
  color: inherit;
  font-size: 29px;
  hyphens: auto;
  overflow-wrap: normal;
}

.legal-hero p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 18px;
}

.legal-layout {
  display: grid;
  gap: 34px;
  padding-block: 42px 72px;
}

.legal-toc {
  display: grid;
  gap: 2px;
  align-self: start;
  border-left: 3px solid var(--yellow);
  padding-left: 16px;
}

.theme-red .legal-toc {
  border-left-color: var(--red);
}

.legal-toc strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.legal-toc a {
  padding-block: 5px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  min-width: 0;
  max-width: 860px;
}

.legal-content section {
  scroll-margin-top: 122px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  margin-bottom: 30px;
}

.legal-content section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 13px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  line-height: 1.68;
}

.legal-content ul,
.legal-content ol {
  padding-left: 21px;
}

.legal-content a {
  overflow-wrap: anywhere;
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-content address {
  font-style: normal;
  line-height: 1.68;
}

.legal-note {
  border-left: 4px solid var(--yellow);
  padding: 15px 17px;
  background: var(--yellow-soft);
}

.theme-red .legal-note {
  border-left-color: var(--red);
  background: #fff0f1;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 30px 0 96px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #fff;
}

.mobile-callbar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid #24282b;
  padding: 6px max(6px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left));
  background: #080a0b;
}

.mobile-callbar a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 5px;
  padding: 5px 3px;
  background: #1c2023;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.mobile-callbar a:first-child {
  background: var(--yellow);
  color: #080808;
}

.mobile-callbar small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.mobile-callbar.single {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .wrap {
    width: min(100% - 48px, var(--max-width));
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

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

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

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

  .delivery-visual-bottom {
    grid-template-columns: 0.8fr 1.2fr;
  }

  label.full {
    grid-column: 1 / -1;
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
  }

  .header-main {
    min-height: auto;
  }

  .brand-logo {
    width: 220px;
    height: 64px;
  }

  .header-call {
    display: none;
  }

  .nav-wrap {
    border-top: 0;
  }

  .nav {
    overflow: visible;
    padding: 0;
  }

  .nav a {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    background-position: center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(22, 16, 5, 0.9) 0%, rgba(22, 16, 5, 0.58) 46%, rgba(22, 16, 5, 0.12) 82%);
  }

  .hero.kranken::after {
    background: linear-gradient(90deg, rgba(7, 24, 36, 0.95) 0%, rgba(7, 24, 36, 0.66) 48%, rgba(7, 24, 36, 0.12) 84%);
  }

  .hero-content {
    padding-block: 120px 88px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }

  .lead {
    font-size: 21px;
  }

  .quick-contact {
    padding-block: 20px;
  }

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

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

  .service-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }

  .service-row.reverse img {
    order: 2;
  }

  .service-row.reverse .service-copy {
    order: 1;
  }

  .section {
    padding-block: 84px;
  }

  .legal-hero {
    padding-block: 72px;
  }

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 64px;
    padding-block: 64px 96px;
  }

  .legal-toc {
    position: sticky;
    top: 102px;
  }

  .legal-content section {
    scroll-margin-top: 96px;
  }

  .feature-strip,
  .order-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 56px;
    align-items: center;
  }

  .order-layout {
    align-items: start;
  }

  .footer {
    padding-bottom: 30px;
  }

  .mobile-callbar {
    display: none;
  }
}
