:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #ffffff;
  --ink: #1d2721;
  --muted: #66706b;
  --line: #dde6df;
  --rose: #1d2721;
  --rose-dark: #111612;
  --green: #1d2721;
  --green-soft: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --whatsapp-ink: #0b1f17;
  --gold: #1d2721;
  --shadow: 0 16px 44px rgba(20, 25, 22, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Avenir Next Condensed", "Avenir Next", "Arial Narrow", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  --header-text-size: 0.86rem;
  --header-text-weight: 680;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  height: 76px;
  content: "";
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 230, 223, 0.72);
  backdrop-filter: blur(18px);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(310px, 32vw);
}

.brand-logo {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #415048;
  font-size: var(--header-text-size);
  font-weight: var(--header-text-weight);
  line-height: 1;
}

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

.nav-links a:hover {
  color: var(--rose);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--whatsapp-ink);
  background: var(--whatsapp);
  border: 1px solid var(--whatsapp);
  border-radius: var(--radius);
  font-size: var(--header-text-size);
  font-weight: var(--header-text-weight);
  line-height: 1;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24);
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 54px;
  padding: 50px 0 26px;
}

.hero-copy {
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.1vw, 4.3rem);
  font-weight: 500;
  line-height: 0.92;
}

h1 span {
  display: block;
}

.title-place {
  font-size: 1em;
  font-weight: inherit;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  color: #47534d;
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--whatsapp-ink);
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.button-primary:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(45, 54, 48, 0.08);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  display: none;
}

.hero-media > img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(221, 230, 223, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(390px, calc(100% - 40px));
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 230, 223, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(45, 54, 48, 0.16);
  backdrop-filter: blur(18px);
  font-size: 0.93rem;
  font-weight: 680;
}

.hero-note span {
  display: grid;
  gap: 2px;
}

.hero-coat {
  width: 42px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-note strong {
  display: block;
  line-height: 1.2;
}

.hero-note small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.35;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 88px;
}

.info-card,
.service-grid article,
.order-panel,
.hours-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(45, 54, 48, 0.06);
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 128px;
  padding: 22px;
}

.info-card svg {
  width: 26px;
  height: 26px;
  color: var(--rose);
  flex: 0 0 auto;
}

.info-card h2 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.whatsapp-section {
  padding: 92px 0;
  background: #ffffff;
  border-block: 1px solid rgba(221, 230, 223, 0.7);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 450px);
  gap: 72px;
  align-items: start;
}

.section-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.whatsapp-section h2,
.section-heading h2,
.contact-layout h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.4vw, 3.75rem);
  font-weight: 500;
  line-height: 1.03;
}

.whatsapp-section p,
.service p,
.contact-band p,
address {
  color: #4d5953;
  font-size: 1.02rem;
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 18px;
  max-width: 650px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  align-items: start;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.04rem;
}

.steps p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.order-panel {
  padding: 28px;
}

.order-panel h3,
.hours-card h3 {
  margin-bottom: 22px;
  font-size: 1.28rem;
  line-height: 1.2;
}

label {
  display: block;
  margin-bottom: 16px;
  color: #39463f;
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d6e1d9;
  border-radius: var(--radius);
  outline: none;
  font-size: 0.96rem;
  line-height: 1.35;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(14, 125, 90, 0.7);
  box-shadow: 0 0 0 4px rgba(14, 125, 90, 0.1);
}

.order-panel .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service {
  padding: 98px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

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

.service-grid article {
  min-height: 276px;
  padding: 28px;
}

.service-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--rose);
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-band {
  padding: 92px 0;
  color: var(--ink);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-band .section-label,
.contact-band address,
.contact-band p {
  color: #4d5953;
}

.contact-band h2 {
  color: var(--ink);
}

address {
  margin-bottom: 26px;
  font-style: normal;
}

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

.contact-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  overflow-wrap: anywhere;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 680;
}

.hours-card {
  padding: 26px;
  color: var(--ink);
  background: #ffffff;
}

.hours-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hours-card div {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-card dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.hours-card dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.35;
}

.site-footer {
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--ink);
  font-weight: 760;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: min(260px, 48vw);
  height: auto;
  mix-blend-mode: multiply;
}

.footer-layout p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 42px;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 18px;
}

.legal-hero p {
  max-width: 720px;
  color: #4d5953;
  font-size: 1.1rem;
  line-height: 1.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.legal-grid-wide {
  align-items: stretch;
}

.legal-section {
  min-width: 0;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(45, 54, 48, 0.06);
  overflow-wrap: anywhere;
}

.legal-grid-wide .legal-section {
  height: 100%;
}

.legal-section h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.legal-section p {
  margin-bottom: 0;
  color: #4d5953;
  line-height: 1.7;
}

.legal-section a {
  color: var(--ink);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.imprint-dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.imprint-dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.imprint-dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.imprint-dl dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 820;
}

.imprint-dl dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.legal-attention {
  background: #ffffff;
  border-color: var(--line);
}

@media (max-width: 920px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding: 52px 0 28px;
  }

  h1 {
    max-width: 14ch;
  }

  .quick-info,
  .service-grid,
  .split,
  .contact-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    padding-bottom: 62px;
  }

  .split,
  .contact-layout {
    gap: 34px;
  }

  .section-heading {
    display: block;
  }

  .footer-layout {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .site-header::before {
    height: 68px;
  }

  .brand {
    width: min(210px, 55vw);
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 2.66rem;
  }

  .hero-lede {
    margin-bottom: 24px;
    line-height: 1.55;
  }

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

  .button {
    width: 100%;
  }

  .hero-note {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .hero-coat {
    width: 34px;
    height: 38px;
  }

  .hero-note small {
    display: none;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media > img {
    aspect-ratio: 4 / 3;
  }

  .info-card,
  .service-grid article,
  .order-panel,
  .hours-card {
    padding: 22px;
  }

  .whatsapp-section,
  .service,
  .contact-band {
    padding-block: 64px;
  }
}
