/* =========================================================
   Expressive Notion — style.css (cleaned + de-duplicated)
   Keeps all existing classes + behavior intact.
   ========================================================= */

/* ---------------- FONTS ---------------- */

/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ---------------- TOKENS ---------------- */
:root {
  --bg: #f6f5f3;
  --text: #1e1e1e;
  --muted: #6f6f6f;
  --border: rgba(0, 0, 0, 0.08);
  --header-height: 120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* media blur behavior */
img,
video {
  transition: filter 0.8s ease;
}

img.blurred,
video.blurred {
  filter: blur(14px) brightness(0.95);
}

/* ---------------- LAYOUT ---------------- */
main {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem 6rem;
}

section { margin-bottom: 6rem; }

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

/* ---------------- HEADER / NAV ---------------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;

  background: rgba(246, 245, 243, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem 2rem;

  display: flex;
  justify-content: space-between;
  align-items: baseline;

  position: relative;
}


.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;

  font-size: 1.2rem;
  color: var(--muted);
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

/* Instagram in nav */
.nav-instagram {
  margin-left: auto;
  margin-right: 1.5rem;

  display: inline-flex;
  align-items: center;

  color: var(--muted);
}
.nav-instagram:hover { color: var(--text); }

.nav-instagram .instagram-icon {
  width: 25px;
  height: 25px;
  display: block;
}


/* ---------------- HERO ---------------- */
.hero-strip {
  display: flex;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;
}

.hero-strip img {
  width: 50%;
  height: auto;
  display: block;
}

/* ---------------- ABOUT ---------------- */
.about {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding-top: cm;
}

/* toggles container */
.about-toggles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* toggle button */
.about-toggle {
  width: 100%;
  margin: 1.2rem auto 0;

  display: inline-flex;           /* needed for ::after arrow */
  align-items: center;
  justify-content: space-between; /* pushes arrow to the far right */

  background: none;
  border: none;
  cursor: pointer;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);

  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;

  transition: color 0.25s ease, transform 0.25s ease;
}

.about-toggle:hover {
  color: var(--text);
  font-weight: 600;
}

.about-statement-toggle {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Arrow chevron (V shape) */
.about-toggle::after {
  content: "";
  width: 8px;
  height: 8px;

  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;

  transform: rotate(45deg);
  position: relative;
  top: -1px;

  transition: transform 0.25s ease;
}

/* Smooth expandable sections (BIO + STATEMENT) */
.about-expanded,
.about-statement-expanded {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;

  transition:
    max-height 0.6s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease;
}

.about-expanded.active,
.about-statement-expanded.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;

  max-width: 900px;
  margin: 0 auto;
  text-align: left;

  align-items: start;
}

.about-image { margin-top: 0.4rem; }

.about-image img {
  opacity: 0.9;

  width: 200px;
  height: 200px;
  object-fit: cover;

  border-radius: 50%;
  display: block;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

/* ---------------- SERIES ---------------- */
.series-gallery {
  max-width: 1400px;
  margin: auto;
  margin-top: 3cm;
}

.series { margin-bottom: 5rem; }

.series h3 {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.series-grid img {
  max-width: 100%;
  cursor: pointer;
}

.series-more { grid-template-columns: repeat(3, 1fr); }

.series-toggle {
  margin-top: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;

  font-size: 0.85rem;
  color: var(--muted);

  border-bottom: 1px solid var(--border);
}

/* ---------------- CONTACT ---------------- */
.contact {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-intro {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-line { margin-top: 1.5rem; }

.contact a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
}
.contact a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.instagram-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.4rem;
  transform: translateY(3px); /* ← precise, reliable */

  background-color: currentColor;

  mask: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">\
<path d="M7 2C4.24 2 2 4.24 2 7v10c0 2.76 2.24 5 5 5h10c2.76 0 5-2.24 5-5V7c0-2.76-2.24-5-5-5H7zm10 2c1.65 0 3 1.35 3 3v10c0 1.65-1.35 3-3 3H7c-1.65 0-3-1.35-3-3V7c0-1.65 1.35-3 3-3h10zm-5 3a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6z"/>\
<circle cx="17" cy="7" r="1.25"/>\
</svg>') no-repeat center;

  mask-size: contain;
}

/* ---------------- CONTACT FORM ---------------- */
.contact-form {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 0.4rem 0;

  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--text);
}

.form-submit {
  margin-top: 2rem;
  background: none;
  border: none;
  cursor: pointer;

  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);

  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
}

/* ---------------- FOOTER ---------------- */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ---------------- LIGHTBOX ---------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;

  background: rgba(246, 245, 243, 0.9);
  backdrop-filter: blur(5px);

  display: none;
  align-items: center;
  justify-content: center;

  pointer-events: none; /* only interactive when active */
}

.lightbox.active {
  display: flex;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: none;
  border: none;
  cursor: pointer;

  font-size: 1.5rem;
  color: var(--muted);
  padding: 1rem;
}
.lightbox-arrow:hover { color: var(--text); }

.lightbox-arrow.prev { left: 2rem; }
.lightbox-arrow.next { right: 2rem; }

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;

  background: none;
  border: none;
  cursor: pointer;

  font-size: 1.5rem;
  color: var(--muted);
}
.lightbox-close:hover { color: var(--text); }

/* ---------------- BURGER ---------------- */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;

  width: 24px;
  height: 18px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;

  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .burger { display: block; }

  /* mobile nav (single source of truth) */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;

    background: var(--bg);
    flex-direction: column;

    padding: 2rem;
    gap: 1.5rem;

    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* about layout */
  .about-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-text { text-align: left; }

  /* lightbox controls smaller */
  .lightbox-arrow { font-size: 1.2rem; }
}


.about-statement-content {
    display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;

  max-width: 900px;
  margin: 0 auto;
  text-align: left;

  align-items: start;
}

.about-statement-text {
  text-align: left;
  color: #6f6f6f;
}
#about,
#series,
#contact {
  scroll-margin-top: var(--header-height);
}