:root {
  --navy: #123a5a;
  --navy-dark: #09283f;
  --red: #c93420;
  --mustard: #e5a51c;
  --mustard-light: #f4c75c;
  --cream: #f7ecd8;
  --cream-light: #fffaf0;
  --brown: #4e3021;
  --white: #ffffff;
  --shadow: rgba(45, 29, 19, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(229, 165, 28, 0.10), transparent 24rem),
    radial-gradient(circle at 88% 74%, rgba(201, 52, 32, 0.08), transparent 25rem),
    var(--cream);
  color: var(--navy-dark);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

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

.narrow {
  width: min(760px, calc(100% - 40px));
  text-align: center;
}

/* Kopfbereich */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--navy);
  background: rgba(247, 236, 216, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 220px;
  max-height: 76px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-navigation a {
  position: relative;
  padding-block: 10px;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
}

/* Allgemeine Elemente */

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 690px;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 25px;
  border: 3px solid var(--navy);
  border-radius: 7px;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button-primary {
  background: var(--mustard);
  box-shadow: 7px 7px 0 var(--navy);
  color: var(--navy-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 10px 10px 0 var(--navy);
}

.button-secondary {
  border-color: var(--cream-light);
  background: var(--mustard);
  box-shadow: 7px 7px 0 var(--red);
  color: var(--navy-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 10px 10px 0 var(--red);
}

/* Startbereich */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  padding: 95px 0 105px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -260px;
  right: -240px;
  width: 760px;
  height: 760px;
  border: 4px solid rgba(18, 58, 90, 0.12);
  border-radius: 50%;
  background: var(--mustard-light);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: 38px;
  left: -80px;
  width: 220px;
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 18px,
    transparent 18px 32px
  );
  content: "";
  transform: rotate(-8deg);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.hero-text {
  max-width: 610px;
  margin: 30px 0 36px;
  color: var(--brown);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.hero-button {

  margin-top: 36px;

}

.hero-image-wrapper {
  position: relative;
  border: 4px solid var(--navy);
  border-radius: 46% 46% 16px 16px;
  background: #dcc4ab;
  box-shadow:
    14px 14px 0 var(--red),
    22px 22px 0 rgba(18, 58, 90, 0.15);
  transform: rotate(1.5deg);
}

.hero-image-wrapper::before {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: -23px;
  padding: 8px 16px;
  border: 3px solid var(--navy);
  background: var(--cream-light);
  color: var(--navy);
  content: "BEMMIE’S";
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  transform: rotate(-6deg);
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(46% - 4px) calc(46% - 4px) 12px 12px;
  object-fit: cover;
}

/* Produktbereich */

.product-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  border-block: 4px solid var(--navy);
  background: var(--mustard);
}

.product-section::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 45px solid rgba(201, 52, 32, 0.16);
  border-radius: 50%;
  content: "";
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.product-image-wrapper {
  padding: 13px;
  border: 4px solid var(--navy);
  background: var(--cream-light);
  box-shadow: -13px 13px 0 var(--red);
  transform: rotate(-1.5deg);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-content {
  position: relative;
  z-index: 1;
}

.product-content .eyebrow {
  color: var(--navy);
}

.product-content p {
  max-width: 600px;
  color: var(--brown);
  font-size: 1.16rem;
}

.product-slogan {
  display: inline-block;
  margin-top: 30px;
  padding: 9px 15px;
  border: 3px solid var(--navy);
  background: var(--cream-light);
  color: var(--navy) !important;
  font-size: 0.98rem !important;
  font-weight: 900;
  letter-spacing: 0.06em;
  transform: rotate(-1deg);
}

/* Markenbereich */

.brand-section {
  position: relative;
  padding: 125px 0;
  background: var(--cream-light);
}

.brand-section::before,
.brand-section::after {
  position: absolute;
  top: 50%;
  width: 110px;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    var(--mustard) 0 14px,
    transparent 14px 24px
  );
  content: "";
}

.brand-section::before {
  left: 4%;
  transform: rotate(8deg);
}

.brand-section::after {
  right: 4%;
  transform: rotate(-8deg);
}

.brand-section p:last-child {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.7;
}

/* Kontakt */

.contact-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(9, 40, 63, 0.94), rgba(9, 40, 63, 0.94)),
    var(--navy-dark);
}

.contact-box {
  padding: clamp(38px, 7vw, 76px);
  border: 4px solid var(--cream-light);
  background: var(--navy);
  box-shadow: 14px 14px 0 var(--red);
  text-align: center;
}

.contact-box .eyebrow {
  color: var(--mustard-light);
}

.contact-box h2 {
  color: var(--cream-light);
}

.contact-box p {
  margin: 0 auto 32px;
  color: var(--cream);
  font-size: 1.12rem;
}

/* Fußbereich */

.site-footer {
  border-top: 4px solid var(--navy);
  background: var(--red);
  color: var(--cream-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 25px;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-inner a {
  border-bottom: 2px solid var(--mustard-light);
}

/* Darstellung auf Smartphones */

@media (max-width: 780px) {
  .container,
  .narrow {
    width: min(100% - 28px, 620px);
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding: 14px 0 12px;
    gap: 6px;
  }

  .brand-logo {
    width: 180px;
    max-height: 60px;
  }

  .main-navigation {
    width: 100%;
    justify-content: center;
    gap: 18px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 82px;
  }

  .hero::before {
    top: 420px;
    right: -290px;
    width: 620px;
    height: 620px;
  }

  .hero-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 60px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero-image-wrapper {
    width: min(92%, 480px);
    margin-inline: auto;
    box-shadow:
      9px 9px 0 var(--red),
      15px 15px 0 rgba(18, 58, 90, 0.15);
  }

  .product-section {
    padding: 82px 0;
  }

  .product-layout {
    gap: 58px;
  }

  .product-image-wrapper {
    width: min(94%, 480px);
    margin-inline: auto;
    box-shadow: -9px 9px 0 var(--red);
  }

  .brand-section {
    padding: 90px 0;
  }

  .brand-section::before,
  .brand-section::after {
    display: none;
  }

  .contact-section {
    padding: 72px 0;
  }

  .contact-box {
    box-shadow: 9px 9px 0 var(--red);
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .main-navigation {
    gap: 12px;
    font-size: 0.66rem;
  }

  .button {
    width: 100%;
  }

  .hero-image-wrapper::before {
    left: -10px;
  }
}
