/* =========================================
   STEF.N — STEPH NORVAL ARTIST WEBSITE
   Painterly · Warm · Editorial · Alive
   ========================================= */

:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EAE4D6;
  --warm-white:   #FAF8F4;
  --charcoal:     #1C1A17;
  --charcoal-mid: #2E2B26;
  --stone:        #6B6358;
  --stone-light:  #9A9088;

  --paint-red:    #C0392B;
  --paint-teal:   #2E7D6A;
  --paint-ochre:  #C49A3C;
  --paint-blue:   #3A6B9E;
  --paint-green:  #4A7C5A;
  --paint-sienna: #8B4B2C;
  --paint-sage:   #7A8C6A;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Helvetica, sans-serif;

  --max-w: 1200px;
  --section-pad: 6rem 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
em { font-style: italic; color: var(--paint-sienna); }
p  { font-family: var(--font-body); font-weight: 300; line-height: 1.8; color: var(--stone); font-size: 1rem; }
a  { text-decoration: none; color: inherit; }

.sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 1rem;
}
.section-tag.light { color: rgba(255,255,255,0.55); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--paint-sienna); border-color: var(--paint-sienna); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(28,26,23,0.4);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-large { padding: 1.1rem 2.8rem; font-size: 0.85rem; }

/* =========================================
   PAINT SMEAR SVG BACKGROUNDS
   Real brush-stroke shapes — always visible
   ========================================= */
.smear-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 20px rgba(28,26,23,0.08);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--paint-sienna);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: transform 0.3s, opacity 0.3s; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 8rem 2.5rem 4rem;
  max-width: 820px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 0.5rem;
}
.title-line { display: block; animation: fadeUp 1s ease both; }
.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.35s; font-style: italic; color: var(--paint-sienna); }

.hero-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--paint-red);
  margin: 1rem 0 1.5rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 1s 0.75s ease both; }

/* Hero — featured painting panel on right */
.hero-painting {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  z-index: 2;
  overflow: hidden;
}
.hero-painting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  animation: fadeIn 1.5s 0.5s ease both;
}
.hero-painting::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 35%);
  z-index: 2;
}
.hero-painting::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(245,240,232,0.3) 0%, transparent 20%, transparent 80%, rgba(245,240,232,0.3) 100%);
  z-index: 2;
}

/* Colour palette dots */
.hero-palette {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  display: flex;
  gap: 0.6rem;
  z-index: 4;
  animation: fadeUp 1s 1s ease both;
}
.swatch { width: 14px; height: 14px; border-radius: 50%; }
.s1 { background: var(--paint-red); }
.s2 { background: var(--paint-teal); }
.s3 { background: var(--paint-ochre); }
.s4 { background: var(--paint-blue); }
.s5 { background: var(--paint-sienna); }

/* Scroll indicator — tall colourful paint-tube bar */
.scroll-hint {
  position: absolute;
  bottom: 0;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  padding-bottom: 0;
  animation: fadeIn 1s 1.2s ease both;
}
.scroll-hint-label {
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}
.scroll-bar {
  width: 6px;
  height: 140px;
  background: linear-gradient(to bottom,
    #C0392B 0%,
    #C49A3C 25%,
    #2E7D6A 55%,
    #3A6B9E 78%,
    #8B4B2C 100%
  );
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* =========================================
   STATEMENT BAND
   ========================================= */
.statement {
  background: var(--charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--paint-red) 0%,
    var(--paint-ochre) 30%,
    var(--paint-teal) 65%,
    var(--paint-blue) 100%
  );
}
.statement-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.statement-accent { font-size: 2rem; color: var(--paint-ochre); margin-bottom: 1.5rem; opacity: 0.6; }
.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.statement-cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* =========================================
   PAINTINGS STRIP (3 works)
   ========================================= */
.paintings-strip {
  padding: var(--section-pad);
  background: var(--warm-white);
}
.paintings-strip .section-header { margin-bottom: 3rem; }
.paintings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.painting-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  /* Safety: auto-reveal after 1.2s even if JS observer never fires */
  animation: revealFallback 0.7s ease 1.2s both;
}
.painting-item:nth-child(2) { animation-delay: 1.35s; }
.painting-item:nth-child(3) { animation-delay: 1.5s; }
.painting-item.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes revealFallback {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.painting-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.painting-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.9);
}
.painting-item:hover .painting-img-wrap img {
  transform: scale(1.03);
  filter: saturate(1.1);
}
.painting-caption {
  padding: 1rem 0 0.5rem;
}
.painting-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.painting-caption span {
  font-size: 0.75rem;
  color: var(--stone-light);
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}
.painting-medium {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paint-sienna);
  margin-top: 0.3rem;
}

/* =========================================
   WHAT I DO
   ========================================= */
.what-section { padding: var(--section-pad); background: var(--cream); }
.section-header { margin-bottom: 3.5rem; }
.section-title { margin-top: 0.5rem; }
.what-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.what-card {
  padding: 2.5rem 2rem;
  background: var(--warm-white);
  border-top: 4px solid var(--cream-dark);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
  animation: revealFallback 0.6s ease 1.3s both;
}
.what-card:nth-child(2) { animation-delay: 1.43s; }
.what-card:nth-child(3) { animation-delay: 1.56s; }
.what-card.visible {
  opacity: 1; transform: translateY(0);
  animation: none;
}
.what-card:hover { border-top-color: var(--paint-sienna); }
.what-icon { color: var(--stone-light); margin-bottom: 1.2rem; }
.what-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--charcoal); }
.what-card p { font-size: 0.95rem; }

/* =========================================
   PROCESS STRIP
   ========================================= */
.process-strip { background: var(--charcoal-mid); padding: 3.5rem 0; }
.process-steps { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.step { display: flex; flex-direction: column; gap: 0.3rem; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--paint-ochre); opacity: 0.7; line-height: 1; }
.step-label { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }
.step-desc { font-size: 0.8rem; color: var(--stone-light); font-family: var(--font-body); font-weight: 300; max-width: 160px; }
.step-divider { font-size: 1.5rem; color: var(--stone-light); opacity: 0.4; }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--cream-dark);
}
.cta-band-inner { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-band-inner h2 { margin-bottom: 1rem; }
.cta-band-inner p { margin-bottom: 2.5rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--charcoal); padding: 3rem 0 1.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-brand .sig { color: var(--cream); display: block; margin-bottom: 0.3rem; }
.footer-brand p { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--stone-light); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact { align-items: flex-end; }
.footer-links a, .footer-contact a { font-size: 0.8rem; color: var(--stone-light); letter-spacing: 0.05em; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cream); }
.footer-base { text-align: center; }
.footer-base span { font-size: 0.7rem; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }
.footer-sig { font-size: 1.4rem !important; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  padding-bottom: 4rem;
}
.about-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.about-hero-painting {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-hero-painting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.4;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 20%, rgba(28,26,23,0.5) 60%, rgba(28,26,23,0.2) 100%);
  z-index: 2;
}
.about-hero-content {
  position: relative;
  z-index: 3;
  padding: 8rem 2.5rem 0;
  animation: fadeUp 1s ease both;
}
.about-hero-content h1 { font-size: clamp(4rem, 8vw, 8rem); line-height: 0.9; margin: 0.5rem 0 1rem; color: var(--cream); }
.about-hero-content h1 em { color: var(--paint-ochre); }
.about-divider { width: 60px; height: 3px; background: var(--paint-red); margin-bottom: 1.5rem; }
.about-intro { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: rgba(245,240,232,0.75); max-width: 480px; }
.about-hero-content .section-tag { color: rgba(245,240,232,0.5); }

/* About body */
.about-body { padding: var(--section-pad); background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }

/* Portrait */
.portrait-frame { position: relative; display: inline-block; width: 100%; }
.portrait-photo { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.frame-accent { position: absolute; width: 30px; height: 30px; border-color: var(--paint-sienna); border-style: solid; }
.frame-tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.frame-br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
.portrait-caption { font-size: 0.75rem; text-align: center; color: var(--stone-light); margin-top: 0.8rem; letter-spacing: 0.1em; }

/* About text */
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; font-size: 1rem; }
.inline-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
  border-left: 3px solid var(--paint-sienna);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.inline-quote cite { display: block; font-size: 0.8rem; font-style: normal; font-family: var(--font-body); letter-spacing: 0.1em; color: var(--stone-light); margin-top: 0.5rem; }

/* Approach section */
.approach-section { padding: var(--section-pad); background: var(--cream); }
.approach-inner > h2 { margin-bottom: 3rem; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2rem; }
.approach-swatch { width: 40px; height: 5px; border-radius: 3px; margin-bottom: 1rem; }
.approach-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: revealFallback 0.6s ease 1.4s both;
}
.approach-item:nth-child(2) { animation-delay: 1.52s; }
.approach-item:nth-child(3) { animation-delay: 1.64s; }
.approach-item:nth-child(4) { animation-delay: 1.76s; }
.approach-item.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
.approach-item h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--charcoal); }
.approach-item p { font-size: 0.9rem; }

/* Commissions */
.commissions-section { padding: var(--section-pad); background: var(--warm-white); }
.commissions-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.commissions-text h2 { margin-bottom: 1.2rem; }
.commissions-text p { margin-bottom: 1rem; }
.commissions-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.commissions-list li { font-family: var(--font-body); font-size: 0.9rem; color: var(--stone); padding-left: 1.2rem; position: relative; }
.commissions-list li::before { content: '—'; position: absolute; left: 0; color: var(--paint-sienna); }
.comm-step {
  display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 2rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: revealFallback 0.5s ease 1.4s both;
}
.comm-step:nth-child(2) { animation-delay: 1.55s; }
.comm-step:nth-child(3) { animation-delay: 1.70s; }
.comm-step:nth-child(4) { animation-delay: 1.85s; }
.comm-step.visible {
  opacity: 1; transform: translateY(0);
  animation: none;
}
.comm-num { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--paint-sienna); color: var(--paint-sienna); font-family: var(--font-display); font-size: 1rem; flex-shrink: 0; }
.comm-step strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--charcoal); }
.comm-step p { font-size: 0.9rem; margin: 0; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--charcoal);
  overflow: hidden;
}
.contact-inner { position: relative; z-index: 2; }
.contact-header { max-width: 600px; margin-bottom: 3rem; }
.contact-header h2 { color: var(--cream); margin-bottom: 1rem; }
.contact-header p { color: rgba(245,240,232,0.65); }

.contact-methods { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.2rem 1.8rem;
  transition: background 0.2s, border-color 0.2s;
  min-width: 240px;
}
.contact-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.contact-icon { color: var(--paint-ochre); flex-shrink: 0; }
.contact-label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.45); margin-bottom: 0.2rem; }
.contact-value { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }

/* Contact form */
.contact-form-wrap { max-width: 680px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 2.5rem; }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin-bottom: 2rem; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group select option { background: var(--charcoal-mid); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--paint-ochre); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 1rem; font-size: 0.85rem; cursor: pointer; }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(245,240,232,0.3); margin-top: 1rem; letter-spacing: 0.05em; }
.form-success { text-align: center; padding: 3rem 2rem; }
.success-sig { font-family: var(--font-display); font-style: italic; font-size: 3.5rem; color: var(--paint-ochre); margin-bottom: 1rem; opacity: 0.8; }
.form-success h3 { color: var(--cream); font-size: 1.8rem; margin-bottom: 0.8rem; }
.form-success p { color: rgba(245,240,232,0.6); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.08); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-painting { width: 42%; }
}
@media (max-width: 900px) {
  .hero-painting { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait-col { max-width: 320px; }
  .commissions-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { align-items: center; }
  .process-steps { flex-direction: column; align-items: flex-start; }
  .paintings-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-methods { flex-direction: column; }
  .paintings-grid { grid-template-columns: 1fr; }
}
