/* ZAza Barber Studio — warm kraft & ink, nach der Foto-Session abgestimmt.
   Paleta e extrasă din fundalul ședinței foto (caramel #9f6738–#c79d76). */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/cormorant-garamond-var-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-var-latin.woff2") format("woff2");
}

:root {
  --sand: #efe3d3;        /* page ground */
  --bone: #f8f2e7;        /* light panels & text on dark */
  --ink: #1a1310;         /* warm near-black */
  --coffee: #241a12;      /* dark section ground */
  --caramel: #a9743f;     /* photo-shoot background tone */
  --umber: #6d5137;       /* secondary text on sand */
  --line: rgba(26, 19, 16, 0.14);
  --line-light: rgba(248, 242, 231, 0.18);
  --pad: clamp(20px, 5vw, 72px);
  --sunstripe: repeating-linear-gradient(
    45deg,
    transparent 0 110px,
    rgba(255, 244, 224, 0.06) 110px 170px
  );
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ink); color: var(--bone); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

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

/* ---------- Type helpers ---------- */
.zz-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--umber);
}
.zz-eyebrow--light { color: rgba(248, 242, 231, 0.66); }

.zz-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  margin: 10px 0 clamp(28px, 5vh, 56px);
}

/* ---------- Buttons ---------- */
.zz-btn {
  display: inline-block;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.zz-btn:hover { transform: translateY(-1px); }
.zz-btn--ink { background: var(--ink); color: var(--bone); }
.zz-btn--ink:hover { background: var(--coffee); }
.zz-btn--bone { background: var(--bone); color: var(--ink); }
.zz-btn--bone:hover { background: #fff; }
.zz-btn--big { padding: 19px 44px; font-size: 14px; }

/* ---------- Announcement ---------- */
.zz-announce {
  display: block;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: 9px var(--pad);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.zz-announce:hover { color: #fff; }

/* ---------- Header (hamburger | mark centrat | konto+coș) ---------- */
.zz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px var(--pad);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.zz-header.is-solid { box-shadow: 0 8px 30px rgba(26, 19, 16, 0.08); }
.zz-header__mark {
  grid-column: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  line-height: 1;
  gap: 4px;
}
.zz-mark__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.zz-mark__sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--umber);
}
.zz-menu-btn {
  grid-column: 1;
  justify-self: start;
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.zz-menu-btn span {
  display: block;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.zz-menu-btn.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.zz-menu-btn.open span:nth-child(2) { opacity: 0; }
.zz-menu-btn.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
.zz-header__icons {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 6px;
}
.zz-header__icons a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background 0.2s;
}
.zz-header__icons a:hover { background: rgba(26, 19, 16, 0.07); }
.zz-header__icons svg { width: 22px; height: 22px; }

/* ---------- Drawer ---------- */
.zz-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  width: min(340px, 84vw);
  background: var(--sand);
  border-right: 1px solid var(--line);
  padding: 110px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
}
.zz-drawer.open {
  transform: none;
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.zz-drawer a {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s, color 0.25s;
}
.zz-drawer a:hover { padding-left: 10px; color: var(--caramel); }
.zz-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(26, 19, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0s linear 0.35s;
}
.zz-scrim.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s;
}

/* ---------- Hero (poza completă, fără crop) ---------- */
.zz-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: center;
  height: calc(100svh - 133px);
  min-height: 560px;
  max-height: 960px;
  overflow: hidden;
  background: #2a1c0e;
  isolation: isolate;
}
/* fundal = aceeași poză, blurată — umple tot, fără chenare */
.zz-hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: url("img/studio-founder.webp") center 30% / cover no-repeat;
  filter: blur(34px) brightness(0.52) saturate(1.05);
}
.zz-hero__copy {
  padding: 0 var(--pad);
  color: var(--bone);
}
.zz-hero__copy .zz-eyebrow { color: rgba(248, 242, 231, 0.72); margin-bottom: 16px; }
.zz-hero__copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.zz-hero__sub {
  max-width: 36ch;
  font-size: 16.5px;
  font-weight: 500;
  color: rgba(248, 242, 231, 0.92);
  margin-bottom: 30px;
}
.zz-hero__copy > * {
  animation: zz-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.zz-hero__copy > :nth-child(2) { animation-delay: 0.08s; }
.zz-hero__copy > :nth-child(3) { animation-delay: 0.16s; }
.zz-hero__copy > :nth-child(4) { animation-delay: 0.24s; }
@keyframes zz-rise {
  from { transform: translateY(22px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.zz-hero__stage {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zz-hero__stage img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* ---------- Info strip ---------- */
.zz-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}
.zz-strip div {
  padding: 20px var(--pad);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--umber);
  text-align: center;
}
.zz-strip div + div { border-left: 1px solid var(--line); }

/* ---------- Produkte ---------- */
.zz-products {
  padding: clamp(64px, 12vh, 130px) var(--pad);
  text-align: center;
  background:
    var(--sunstripe),
    var(--sand);
}
.zz-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 48px);
  max-width: 1160px;
  margin: 0 auto;
  text-align: left;
}
.zz-product { background: var(--bone); border: 1px solid var(--line); }
.zz-product__media { aspect-ratio: 1 / 1; overflow: hidden; }
.zz-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.zz-product:hover .zz-product__media img { transform: scale(1.035); }
.zz-product__body { padding: clamp(22px, 3vw, 36px); }
.zz-product__eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--umber);
  margin-bottom: 10px;
}
.zz-product__body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 12px;
}
.zz-product__desc { color: var(--umber); max-width: 48ch; }
.zz-product__body ul {
  list-style: none;
  margin: 20px 0 24px;
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.zz-product__body li { padding-top: 8px; border-top: 1px solid var(--line); }
.zz-product__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.zz-product__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.zz-product__price small {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--umber);
  letter-spacing: 0.04em;
}
.zz-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Studio ---------- */
.zz-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--coffee);
  color: var(--bone);
}
.zz-studio__media { order: 2; }
.zz-studio__media img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 30%;
}
.zz-studio__copy {
  align-self: center;
  padding: clamp(56px, 10vh, 110px) var(--pad);
  max-width: 640px;
  justify-self: end;
}
.zz-studio__copy .zz-eyebrow { margin-bottom: 14px; }
.zz-studio__copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 20px;
}
.zz-studio__copy p { color: rgba(248, 242, 231, 0.82); margin-bottom: 16px; max-width: 52ch; }
.zz-studio__copy .zz-btn { margin-top: 14px; }

/* ---------- Über mich ---------- */
.zz-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 12vh, 130px) var(--pad);
  max-width: 1240px;
  margin: 0 auto;
}
.zz-about__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.zz-about__copy .zz-eyebrow { margin-bottom: 14px; }
.zz-about__copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.03;
  margin-bottom: 20px;
}
.zz-about__copy p { color: var(--umber); margin-bottom: 14px; max-width: 52ch; }

/* ---------- Cuts Galerie ---------- */
.zz-cuts {
  padding: clamp(64px, 12vh, 130px) 0;
  text-align: center;
}
.zz-cuts .zz-eyebrow, .zz-cuts .zz-section-title, .zz-cuts__intro { padding: 0 var(--pad); }
.zz-cuts__intro {
  color: var(--umber);
  max-width: 56ch;
  margin: -28px auto 40px;
}
.zz-cuts__track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px var(--pad) 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--caramel) transparent;
}
.zz-cuts__track figure {
  flex: 0 0 clamp(230px, 26vw, 340px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--line);
}
.zz-cuts__track img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.zz-cuts__track figcaption {
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber);
  text-align: center;
}

/* ---------- Kontakt ---------- */
.zz-contact {
  background:
    var(--sunstripe),
    linear-gradient(160deg, #b07c46 0%, var(--caramel) 55%, #8f5f31 100%);
  color: var(--bone);
  text-align: center;
  padding: clamp(80px, 14vh, 160px) var(--pad);
}
.zz-contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 34px;
  text-shadow: 0 2px 30px rgba(26, 19, 16, 0.25);
}
.zz-contact h2 em { font-style: italic; }
.zz-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: clamp(48px, 8vh, 80px) auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
  text-align: center;
}
.zz-contact__grid h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248, 242, 231, 0.66);
  margin-bottom: 8px;
}
.zz-contact__grid p { font-size: 15.5px; font-weight: 500; }
.zz-contact__grid a { border-bottom: 1px solid rgba(248, 242, 231, 0.5); padding-bottom: 1px; }
.zz-contact__grid a:hover { border-color: var(--bone); }

/* ---------- Footer ---------- */
.zz-footer {
  border-top: 1px solid var(--line);
  padding: 26px var(--pad) 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: var(--umber);
}
.zz-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  letter-spacing: 0.08em;
}
.zz-footer nav a:hover { color: var(--ink); }

/* ---------- Scroll reveal ---------- */
.zz-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.zz-reveal.in { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.zz-legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 10vh, 110px) var(--pad) 90px;
}
.zz-legal h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  margin-bottom: 36px;
}
.zz-legal h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 34px 0 10px;
  letter-spacing: 0.03em;
}
.zz-legal p, .zz-legal li { color: var(--umber); margin-bottom: 12px; }
.zz-legal ul { padding-left: 20px; }
.zz-legal a { border-bottom: 1px solid var(--line); }
.zz-legal .todo {
  border: 1px dashed var(--caramel);
  padding: 14px 18px;
  color: var(--ink);
  font-size: 14px;
  margin: 10px 0 20px;
  background: var(--bone);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px), (orientation: portrait) {
  .zz-hero {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    padding-bottom: 48px;
  }
  .zz-hero__stage { order: -1; }
  .zz-hero__stage img { width: 100%; height: auto; }
  .zz-hero__copy { padding-top: 26px; text-align: center; }
  .zz-hero__sub { margin-left: auto; margin-right: auto; }
  .zz-hero__copy h1 { font-size: clamp(40px, 11vw, 64px); }

  .zz-about { grid-template-columns: 1fr; }

  .zz-strip { grid-template-columns: 1fr; }
  .zz-strip div + div { border-left: none; border-top: 1px solid var(--line); }

  .zz-products__grid { grid-template-columns: 1fr; }

  .zz-studio { grid-template-columns: 1fr; }
  .zz-studio__media { order: 0; }
  .zz-studio__media img { max-height: 62svh; }
  .zz-studio__copy { justify-self: start; }

  .zz-contact__grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .zz-hero__copy > * { animation: none; }
  .zz-drawer, .zz-scrim, .zz-menu-btn span { transition: none; }
  .zz-reveal { opacity: 1; transform: none; transition: none; }
  .zz-product__media img { transition: none; }
  .zz-btn { transition: none; }
}
