/* ── TOKENS ── */
:root {
  --cream:    #f0e8d8;
  --cream2:   #e8dcc8;
  --cream3:   #ddd0b8;
  --parchment:#f7f2e8;
  --ink:      #1c1812;
  --ink-mid:  #3d3628;
  --ink-soft: #7a6e58;
  --rust:     #8b2e1a;
  --rust-lt:  #b84030;
  --white:    #fdfaf4;
  --rule:     #cfc4ae;

  --serif:  'Playfair Display', Georgia, serif;
  --body:   'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 52px;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rust); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 57px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--cream2);
  top: 8%;
  right: 3%;
  z-index: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero-name em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.hero-sub {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 380px;
  line-height: 2;
  margin-bottom: 44px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s;
}

.btn-primary { background: var(--rust); color: var(--white); }
.btn-primary:hover { background: var(--rust-lt); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { border-color: var(--rust); color: var(--rust); }

/* Hero visual panel */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 60px 48px;
}

.hero-story-panel {
  background: var(--ink);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow: 12px 16px 0 var(--cream3);
}

.hero-story-panel::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 20px;
  font-family: var(--serif);
  font-size: 20rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-story-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--rust);
}

.hero-story-inner { position: relative; z-index: 2; }

.hero-story-label {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust-lt);
  margin-bottom: 16px;
}

.hero-story-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-story-excerpt {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(253,250,244,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 2px solid var(--rust);
}

.hero-story-body {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(253,250,244,0.45);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(253,250,244,0.3);
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.2s;
}

.hero-story-link:hover { color: var(--rust-lt); border-color: var(--rust-lt); }

/* ── SECTION BASE ── */
section { padding: 100px 64px; }

.s-label {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.s-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.s-title em { font-style: italic; font-weight: 400; color: var(--rust); }

.s-intro {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 2;
  margin-bottom: 56px;
}

hr.rule { border: none; border-top: 1px solid var(--rule); }

/* ── ABOUT ── */
#about {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 100px 64px;
}

#about::before {
  content: 'A';
  position: absolute;
  right: -40px;
  top: -80px;
  font-family: var(--serif);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}

#about .s-label { color: var(--rust-lt); }

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  padding-left: 28px;
  border-left: 3px solid var(--rust);
  margin-bottom: 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(253,250,244,0.1);
  transform: translate(10px, 10px);
  pointer-events: none;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.about-body {
  font-family: var(--body);
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(253,250,244,0.55);
  line-height: 2;
  max-width: 440px;
  margin-bottom: 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.about-item .lbl {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust-lt);
  margin-bottom: 5px;
}

.about-item p {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,250,244,0.55);
  line-height: 1.7;
}

/* ── ART ── */
#art {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

#art::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--cream2);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.art-card {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--cream3);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 10px 0 var(--cream3);
}

.art-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.art-card-img svg.sk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.art-card-img--photo,
.studio-card-img--photo { background: var(--cream3); }

.art-card-img--photo img,
.studio-card-img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.art-ph { position: relative; z-index: 2; text-align: center; }
.art-ph svg { opacity: 0.2; }
.art-ph p {
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
  opacity: 0.4;
}

.art-card-info {
  padding: 16px 16px 18px;
  border-top: 3px solid var(--cream2);
}

.art-card-info .tag {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 4px;
}

.art-card-info h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.paintings-block {
  border: 2px dashed var(--rule);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  background: var(--cream2);
  position: relative;
  z-index: 2;
}

.paintings-block h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.paintings-block p {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 360px;
  line-height: 1.9;
}

/* ── WRITING ── */
#writing {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#writing .fade-in {
  position: relative;
  z-index: 2;
}

#writing::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--cream2);
  top: -120px;
  left: -200px;
  pointer-events: none;
  z-index: 0;
}

.writing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.story-card {
  background: var(--white);
  padding: 48px;
  border-top: 4px solid var(--rust);
  box-shadow: 8px 8px 0 var(--cream3);
}

.story-card .tag {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.story-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--ink);
}

.story-card .excerpt {
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 32px;
}

.story-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: 28px;
}

.story-meta span {
  font-family: var(--body);
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.writing-aside { padding-top: 8px; }

.writing-aside blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--rust);
}

.writing-aside p {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 32px;
}

/* ── STUDIO ── */
#studio {
  background: var(--cream2);
  position: relative;
}

.studio-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}

.studio-top p.desc {
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 2;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.studio-card {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--cream3);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.studio-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 8px 0 var(--cream3);
}

.studio-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.studio-card-img--contain img {
  object-fit: contain;
  background: var(--cream2);
  padding: 12px;
}

.studio-ph { text-align: center; }
.studio-ph svg { opacity: 0.2; }
.studio-ph p {
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
  opacity: 0.35;
}

.studio-card-info {
  padding: 14px 14px 16px;
  border-top: 2px solid var(--cream2);
}

.studio-card-info .tag {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 3px;
}

.studio-card-info h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.studio-card-info .studio-credit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--rust);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(253,250,244,0.92);
  padding: 0 24px;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(253,250,244,0.4);
  flex-shrink: 0;
}

/* ── CONTACT ── */
#contact {
  background: var(--ink);
  padding: 120px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(139,46,26,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#contact .s-label { color: var(--rust-lt); }

#contact .s-title {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 14px;
}

#contact .s-title em { color: var(--rust-lt); }

#contact > div > p {
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(253,250,244,0.4);
  margin-bottom: 48px;
}

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--rust);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover { color: var(--rust-lt); border-color: var(--rust-lt); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer .logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: rgba(253,250,244,0.5);
  font-size: 1rem;
}

footer p {
  font-family: var(--body);
  font-size: 0.68rem;
  color: rgba(253,250,244,0.2);
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,24,18,0.9);
  z-index: 200;
  overflow-y: auto;
  padding: 60px 20px;
}

.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

.modal {
  background: var(--parchment);
  max-width: 660px;
  width: 100%;
  padding: 64px;
  position: relative;
  border-top: 4px solid var(--rust);
  animation: fadeUp 0.26s ease;
}

@keyframes fadeUp {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--rust); }

.modal h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--ink);
}

.mtag {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.modal-body p {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 2.1;
  margin-bottom: 1.6em;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  section { padding: 72px 32px; }
  nav { padding: 16px 28px; }
  .nav-links { gap: 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-text { padding: 96px 32px 48px; }
  .hero-visual { padding: 0 32px 64px; justify-content: flex-start; }
  .hero-story-panel { max-width: 100%; }
  #about { grid-template-columns: 1fr; gap: 40px; padding: 72px 32px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { aspect-ratio: 4/3; object-position: center 20%; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .writing-layout { grid-template-columns: 1fr; gap: 40px; }
  .studio-top { grid-template-columns: 1fr; gap: 16px; }
  .studio-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; padding: 24px 32px; }
  .modal { padding: 44px 28px; }
}

@media (max-width: 560px) {
  .art-grid { grid-template-columns: 1fr; }
  .paintings-block { flex-direction: column; }
  .nav-links li:nth-child(n+4) { display: none; }
}
