:root {
  color-scheme: light;
  --ink: #171411;
  --muted: #6b625a;
  --line: #ded6cc;
  --paper: #f7f2eb;
  --cream: #fffaf3;
  --clay: #a95f3d;
  --olive: #5a6347;
  --stone: #d7d0c6;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 250, 243, 0.22);
  color: var(--cream);
  background: rgba(23, 20, 17, 0.42);
  backdrop-filter: blur(18px);
}

.page-header {
  color: var(--ink);
  border-bottom-color: rgba(23, 20, 17, 0.12);
  background: rgba(247, 242, 235, 0.86);
}

.page-header .brand small {
  color: var(--muted);
}

.page-header .language-switch a {
  border-color: rgba(23, 20, 17, 0.2);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 250, 243, 0.74);
  font-size: 0.72rem;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.88rem;
  font-weight: 600;
}

.language-switch {
  justify-self: end;
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch a {
  display: grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.3);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(22px, 5vw, 72px) 72px;
  color: var(--cream);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.82), rgba(23, 20, 17, 0.3) 54%, rgba(23, 20, 17, 0.08)),
    linear-gradient(0deg, rgba(23, 20, 17, 0.56), rgba(23, 20, 17, 0.05) 46%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(4rem, 11vw, 9.6rem);
}

.hero-subtitle {
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 34px;
  color: rgba(255, 250, 243, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

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

.button,
.contact-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button-secondary {
  border-color: rgba(255, 250, 243, 0.54);
  background: rgba(255, 250, 243, 0.08);
  color: var(--cream);
}

.button-outline {
  border-color: var(--clay);
  background: transparent;
  color: var(--clay);
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 5vw, 72px);
}

.intro,
.credentials,
.services,
.czech {
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.section h2,
.contact h2 {
  font-size: clamp(2.3rem, 5vw, 5.4rem);
}

.prose p,
.section-heading p,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 6vw, 72px);
  background: var(--cream);
}

.credential-list {
  display: grid;
  gap: 18px;
}

.credential-list article,
.focus-grid article,
.process-steps article,
.czech-summary article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.credential-list span,
.service-number {
  color: var(--clay);
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

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

.focus {
  background: var(--olive);
  color: var(--cream);
}

.focus .section-kicker,
.focus article p {
  color: rgba(255, 250, 243, 0.72);
}

.focus h2 {
  max-width: 940px;
}

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

.focus-grid article {
  border-color: rgba(255, 250, 243, 0.18);
  background: rgba(255, 250, 243, 0.08);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 54px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.artwork-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.artwork-download .section-kicker {
  margin-bottom: 10px;
}

.artwork-download h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.service {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 26px;
  padding: clamp(26px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.service-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 999px;
}

.service h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.service-lead {
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 600;
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.process {
  background: var(--ink);
  color: var(--cream);
}

.process .section-kicker {
  color: var(--stone);
}

.process-steps,
.czech-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.process-steps article {
  min-height: 180px;
  border-color: rgba(255, 250, 243, 0.15);
  background: rgba(255, 250, 243, 0.06);
}

.process-steps span {
  display: block;
  margin-bottom: 42px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.process-steps p {
  color: rgba(255, 250, 243, 0.72);
}

.czech {
  background: var(--cream);
}

.artworks-hero {
  padding: 164px clamp(22px, 5vw, 72px) 58px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.artworks-hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 1.02;
}

.artwork-gallery {
  display: grid;
  gap: clamp(46px, 8vw, 96px);
  padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 72px)
    clamp(76px, 10vw, 132px);
}

.artwork-item {
  display: grid;
  gap: 18px;
  margin: 0;
}

.artwork-item img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.artwork-item figcaption {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.7rem);
  line-height: 1.16;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(76px, 10vw, 132px) clamp(22px, 5vw, 72px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border-color: var(--clay);
  background: var(--clay);
  color: var(--cream);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro-grid,
  .credentials,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .focus-grid,
  .process-steps,
  .czech-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 20px 48px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(23, 20, 17, 0.84), rgba(23, 20, 17, 0.18));
  }

  .hero h1 {
    font-size: clamp(3.2rem, 19vw, 5.4rem);
  }

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

  .artwork-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }
}
