/* kOnzept.reyhe — single page, no frameworks, no JS */

:root {
  --paper: #fefcf8;
  --cream: #f6efe2;
  --oak: #d4b896;
  --oak-deep: #a07d56;
  --gold: #d4a574;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-faint: #7a6f60;
  --line: rgba(26, 26, 26, 0.08);

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-display: clamp(2.4rem, 5.5vw, 4.6rem);
  --t-h2: clamp(2rem, 4vw, 3.2rem);
  --t-h3: clamp(1.15rem, 1.5vw, 1.4rem);
  --t-body: 1.0625rem;
  --t-small: 0.875rem;
  --t-eyebrow: 0.78rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--oak-deep); }
a:focus-visible { outline: 2px solid var(--oak-deep); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: var(--t-display); font-weight: 300; }
h2 { font-size: var(--t-h2); font-weight: 400; }
h3 { font-size: var(--t-h3); font-weight: 500; letter-spacing: 0.005em; }

p { margin: 0 0 1.2em; }
.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  margin: 0 0 1.2em;
}
.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 36em;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  background: rgba(254, 252, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.wordmark .k, .wordmark .o, .wordmark .rest { display: inline; }
.wordmark .o { color: var(--oak-deep); }
.nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 32px);
  font-size: var(--t-small);
  letter-spacing: 0.04em;
}
.nav a { font-weight: 400; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
@media (max-width: 640px) {
  .nav { display: none; }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: clamp(560px, 82vh, 820px);
  background: var(--cream);
}
.hero__image {
  background-image: url("../img/hero-render.webp");
  background-size: cover;
  background-position: center 62%;
}
.hero__copy {
  padding: clamp(40px, 6vw, 96px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.hero__copy h1 {
  font-style: italic;
  font-weight: 300;
}
.hero__copy .lede { margin-bottom: 2.4em; }
.cta {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  background: var(--ink);
  padding: 16px 30px;
  border: 1px solid var(--ink);
  transition: background .25s ease, color .25s ease, transform .15s ease;
}
.cta:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}
.cta--ghost {
  background: transparent;
  color: var(--ink);
}
.cta--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { aspect-ratio: 4 / 3; }
  .hero__copy { padding: 56px var(--gutter); }
}

/* SECTION BASE */
section {
  padding: clamp(72px, 9vw, 140px) var(--gutter);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

/* ATELIER */
.atelier {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.atelier__copy { max-width: 30em; }
.atelier__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.95) contrast(1.02);
}
@media (max-width: 880px) {
  .atelier { grid-template-columns: 1fr; }
  .atelier__photo { order: -1; }
}

/* OBJECTS */
.objects { background: var(--cream); }
.objects__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.object {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line), 0 12px 28px -22px rgba(45, 30, 12, 0.18);
  transition: transform .35s ease, box-shadow .35s ease;
}
.object:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 transparent, 0 28px 44px -22px rgba(160, 125, 86, 0.4);
}
.object img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--cream);
}
.object figcaption {
  padding: 28px 28px 32px;
}
.object h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.4em;
  color: var(--ink);
}
.object p {
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-soft);
}
.objects__footer {
  max-width: 640px;
  margin: clamp(56px, 7vw, 96px) auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.objects__footer .cta {
  margin-top: 1.6em;
}
@media (max-width: 880px) {
  .objects__grid { grid-template-columns: 1fr; }
}

/* WORKSHOP */
.workshop {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.workshop__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.workshop__copy { max-width: 30em; }
@media (max-width: 880px) {
  .workshop { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.contact__inner {
  max-width: 540px;
  margin: 0 auto;
}
.contact h2 {
  color: var(--paper);
  font-style: italic;
  font-weight: 300;
}
.contact .eyebrow { color: var(--oak); }
.contact__address {
  font-size: 1.1rem;
  line-height: 1.85;
  margin: 2em 0 2em;
  color: rgba(254, 252, 248, 0.92);
}
.contact__channels {
  font-size: 1.1rem;
  line-height: 2.1;
}
.contact__channels a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.contact__channels a:hover {
  color: var(--paper);
  border-bottom-color: var(--gold);
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(254, 252, 248, 0.55);
  text-align: center;
  font-size: var(--t-small);
  padding: 32px var(--gutter) 48px;
  border-top: 1px solid rgba(254, 252, 248, 0.08);
}
.footer p { margin: 0.3em 0; }
.footer a {
  color: rgba(254, 252, 248, 0.7);
  border-bottom: 1px dotted rgba(254, 252, 248, 0.3);
}
.footer a:hover { color: var(--paper); border-bottom-color: var(--gold); }

/* LEGAL PAGES */
.legal {
  background: var(--paper);
  padding: clamp(56px, 8vw, 120px) var(--gutter);
}
.legal__inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2em;
}
.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.4em;
  margin-bottom: 0.5em;
  font-weight: 500;
}
.legal p, .legal li {
  font-size: 1rem;
  line-height: 1.7;
}
.legal ul {
  padding-left: 1.4em;
  margin: 0 0 1.2em;
}
.legal li { margin-bottom: 0.4em; }
.legal a {
  color: var(--oak-deep);
  border-bottom: 1px solid var(--line);
}
.legal a:hover { color: var(--ink); border-bottom-color: var(--oak-deep); }
.legal__back {
  margin-top: 3em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

/* MOTION RESPECT */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
