:root {
  --bg: #f7f8f6;
  --paper: #ffffff;
  --ink: #202322;
  --muted: #636c68;
  --line: #d9ded9;
  --cyan: #0f93a8;
  --amber: #ba7a28;
  --red: #a94b3f;
  --shadow: 0 22px 70px rgba(26, 31, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 246, 0.88);
  border-bottom: 1px solid rgba(217, 222, 217, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav a,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover,
.contact-link:hover {
  color: var(--cyan);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  min-height: calc(100vh - 74px);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px) 44px;
}

.hero-copy {
  max-width: 640px;
}

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

h1 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 6.8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--paper);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.text-link {
  color: var(--muted);
  font-weight: 700;
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 460px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.section {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-index {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-body {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.section-body p {
  margin-bottom: 0;
}

.works {
  background: var(--paper);
}

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

.work-item {
  min-height: 260px;
  padding: 18px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--paper);
}

.work-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.work-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  margin-bottom: 26px;
  border-radius: 6px;
  background: var(--bg);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-content {
  display: grid;
  gap: 28px;
}

.process-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(26, 31, 29, 0.08);
}

.process-photo img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center top;
}

.process-list li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.process-list strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 72px);
  padding: clamp(34px, 5vw, 56px);
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
}

.contact .section-index {
  color: #79d1dc;
}

.contact h2 {
  max-width: 780px;
}

.contact-link {
  color: var(--paper);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-main,
.footer-imprint {
  display: grid;
  gap: 8px;
}

.footer-brand,
.footer-imprint strong {
  color: var(--ink);
  font-weight: 800;
}

.footer-imprint {
  font-style: normal;
}

.footer-imprint a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-imprint a:hover {
  color: var(--cyan);
}

.shop-hero {
  display: grid;
  align-items: end;
  min-height: 54vh;
  padding: clamp(72px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(48px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
}

.shop-hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  white-space: normal;
}

.shop-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(72px, 10vw, 128px);
}

.shop-card {
  padding: 18px 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shop-card h2 {
  margin-top: 22px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.shop-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg);
  aspect-ratio: 4 / 3;
}

.shop-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(0.7) brightness(0.78);
  transform: scale(1.06);
}

.shop-image-wrap span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: rgba(32, 35, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .hero,
  .section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .shop-preview {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: start;
  }

  .contact-link {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.4rem, 11.5vw, 4.4rem);
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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