:root {
  --yellow: #ffd800;
  --yellow-dark: #d2b000;
  --ink: #1f1a18;
  --black: #0f0f0f;
  --white: #ffffff;
  --paper: #f7f7f4;
  --muted: #66615c;
  --line: #ddd8cf;
  --red: #c81324;
  --red-soft: #fff1f2;
  --green: #0f6b48;
  --shadow: 0 18px 50px rgba(15, 15, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(31, 26, 24, 0.96);
  border-bottom: 4px solid var(--yellow);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 24vw, 250px);
}

.brand img {
  border-radius: 4px;
}

.header-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 216, 0, 0.42);
  border-radius: 8px;
  background: rgba(255, 216, 0, 0.08);
  text-align: right;
}

.header-notice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-notice strong {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.25;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(15, 15, 15, 0.96), rgba(31, 26, 24, 0.9) 55%, rgba(62, 55, 49, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 216, 0, 0.11) 0 2px, transparent 2px 78px),
    radial-gradient(circle at 85% 20%, rgba(255, 216, 0, 0.24), transparent 28%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -36% 48%;
  height: 320px;
  border: 42px solid rgba(255, 216, 0, 0.18);
  border-radius: 999px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: center;
  min-height: 620px;
  padding: 76px 0 84px;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: clamp(2.6rem, 8vw, 5.75rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.12;
}

.move-alert {
  display: inline-block;
  margin-bottom: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-content > p:not(.eyebrow):not(.move-alert):not(.lead) {
  max-width: 720px;
  color: #f3f0e9;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

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

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.quick-card {
  padding: 30px;
  border: 1px solid rgba(255, 216, 0, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-card h2 {
  margin-bottom: 12px;
  color: var(--black);
}

.quick-card address {
  margin-bottom: 22px;
  font-style: normal;
  font-size: 1.18rem;
  font-weight: 700;
}

.phone-link {
  display: inline-flex;
  color: var(--red);
  font-size: 1.65rem;
  font-weight: 900;
  text-decoration: none;
}

.urgent-section,
.contact-section {
  padding: 62px 0;
}

.urgent-section {
  background: var(--white);
}

.alert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.alert-card {
  min-height: 128px;
  padding: 24px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
}

.alert-card strong {
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.25;
}

.webshop-section {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(255, 216, 0, 0.92), rgba(255, 216, 0, 0.72)),
    linear-gradient(135deg, #f6e05e, #ffd800);
}

.webshop-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.webshop-panel .eyebrow {
  color: var(--black);
}

.webshop-panel h2 {
  margin-bottom: 0;
  color: var(--black);
}

.webshop-panel p:last-child {
  margin-bottom: 0;
  color: #2e2b26;
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
}

.contact-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--black);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  font-weight: 900;
  text-decoration-color: var(--yellow-dark);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 34px 0 26px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.site-footer address {
  margin-top: 6px;
  color: #d9d3c9;
  font-style: normal;
}

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

.footer-links a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.copyright {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 0;
  color: #bdb6aa;
  font-size: 0.9rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: 74px;
  }

  .header-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
  }

  .brand {
    width: 190px;
  }

  .header-notice {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-grid,
  .webshop-panel,
  .contact-grid,
  .alert-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 56px;
  }

  .hero::after {
    inset: auto -40% -22% 18%;
    height: 240px;
  }

  .quick-card {
    padding: 24px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(15, 15, 15, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(15, 15, 15, 0.24);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 6px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .move-alert {
    width: 100%;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
