/*
Theme Name:  Irving Artist
Theme URI:   https://irving.art
Author:      Studio
Description: A living circle — portfolio & shop for a plein air painter.
Version: 3.7.0
License:     GNU General Public License v2 or later
Text Domain: irving-artist
*/

/* ═══════════════════════════════════════════════════════════════
   CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════ */
:root {
  --night:       #080F1A;
  --deep:        #0C1C2E;
  --ocean:       #112538;
  --teal-dark:   #163648;
  --teal-mid:    #1E4D65;
  --teal-bright: #3AB5AE;
  --canvas:      #F5EDE0;
  --canvas-warm: #EDE3CF;
  --canvas-dark: #D4C9B4;
  --gold:        #C4922A;
  --gold-light:  #E0B84A;
  --gold-pale:   #F0D080;
  --coral:       #C0523E;
  --ink:         #18100A;
  --ink-mid:     #3E2E1A;
  --ink-soft:    #7A6248;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-script:  'Beau Rivage', cursive;
  --f-ui:      'Raleway', sans-serif;

  --ease:  cubic-bezier(0.23, 1, 0.32, 1);
  --ease2: cubic-bezier(0.76, 0, 0.24, 1);

  --shadow-circle: 0 30px 80px rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.3);
  --shadow-card:   0 6px 24px rgba(24,16,10,.10);
  --shadow-hover:  0 20px 60px rgba(24,16,10,.18);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-ui);
  background: var(--canvas);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px;
  overflow: hidden; position: absolute;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ═══════════════════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--f-ui);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal-bright);
}
.script-accent {
  font-family: var(--f-script);
  font-size: 1.3rem;
  color: rgba(245,237,224,.45);
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════════════════════════
   NOISE TEXTURE MIXIN
   ═══════════════════════════════════════════════════════════════ */
.noise { position: relative; }
.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .035; pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--f-ui); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-102%);
  transition: transform .3s var(--ease);
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 4px 20px rgba(196,146,42,.25);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(196,146,42,.45); }

.btn-ghost {
  background: transparent; color: rgba(245,237,224,.7);
  border: 1px solid rgba(245,237,224,.22);
}
.btn-ghost:hover { color: var(--canvas); border-color: rgba(245,237,224,.5); }

.btn-outline-dark {
  background: transparent; color: var(--ink);
  border: 1px solid var(--canvas-dark);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.btn-purchase {
  background: var(--gold); color: var(--ink);
  padding: 1.1rem 2.8rem; font-size: .75rem;
  box-shadow: 0 6px 24px rgba(196,146,42,.28);
}
.btn-purchase:hover { box-shadow: 0 12px 40px rgba(196,146,42,.5); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION / HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.6rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s;
}
.site-header.pinned {
  background: rgba(8,15,26,.93);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.nav-brand {
  font-family: var(--f-script);
  font-size: 1.9rem; color: var(--canvas);
  letter-spacing: .04em; position: relative;
  display: flex; align-items: center; gap: .55rem;
}
.nav-logo {
  width: 60px; height: 60px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(196,146,42,.2));
}
.nav-brand-name { line-height: 1; }
.nav-brand::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-brand:hover::after { transform: scaleX(1); }

.nav-menu { display: flex; gap: 2.8rem; list-style: none; }
.nav-menu a {
  font-size: .67rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,237,224,.55); transition: color .3s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.current { color: var(--canvas); }
.nav-menu a:hover::after, .nav-menu a.current::after { transform: scaleX(1); }
.nav-menu .nav-inicio { color: rgba(196,146,42,.75); }
.nav-menu .nav-inicio:hover { color: var(--gold-light); }

.nav-toggle {
  display: none; background: none; border: none;
  width: 32px; height: 22px; position: relative;
  flex-direction: column; justify-content: space-between; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1px; width: 100%; background: var(--canvas);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(8,15,26,.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--f-display);
  font-size: 3rem; font-style: italic;
  color: rgba(245,237,224,.6);
  transition: color .3s;
}
.nav-mobile a:hover { color: var(--canvas); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--night);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 72% 38%, rgba(58,181,174,.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 18% 75%, rgba(196,146,42,.09) 0%, transparent 50%),
    radial-gradient(ellipse 120% 120% at 50% 50%, #112538 0%, #080F1A 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: -50%;
  background:
    radial-gradient(ellipse 40% 30% at 60% 40%, rgba(58,181,174,.07) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 30% 60%, rgba(196,146,42,.05) 0%, transparent 60%);
  animation: bg-drift 20s ease-in-out infinite alternate;
}
@keyframes bg-drift {
  from { transform: translate(0,0) rotate(0deg); }
  to   { transform: translate(3%,2%) rotate(2deg); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 5rem;
  max-width: 1140px; width: 100%; padding: 0 2.5rem;
  margin-top: 5rem;
}
.hero-eyebrow {
  display: block;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--teal-bright); margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(10px);
  animation: fade-up .8s var(--ease) .2s forwards;
}

/* Hero motto: Paisagem · Movimento · Alma */
.hero-motto {
  display: flex; flex-direction: column; gap: 0;
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.05;
  background: linear-gradient(150deg, #F5EDE0 0%, #EAC97C 55%, #C4922A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0; transform: translateY(20px);
  animation: fade-up .9s var(--ease) .35s forwards;
  margin-bottom: 0;
}
.hero-motto-dot {
  font-size: 1.1rem; line-height: 1.4; display: block; letter-spacing: .2em;
  background: none; -webkit-text-fill-color: rgba(58,181,174,.5);
}

/* Featured product block inside hero */
.hero-product {
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(245,237,224,.1);
  margin-top: 1.8rem;
  opacity: 0; transform: translateY(12px);
  animation: fade-up .8s var(--ease) .8s forwards;
}
.hero-product-label {
  display: block; font-size: .56rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(58,181,174,.65); margin-bottom: .75rem;
}
.hero-product-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: var(--canvas); line-height: 1.1; margin-bottom: .3rem;
}
.hero-product-meta {
  font-size: .7rem; color: rgba(245,237,224,.35);
  letter-spacing: .04em; margin-bottom: .9rem;
}
.hero-product-price {
  font-family: var(--f-display);
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}

/* Desktop grid: texto col 1, imagem col 2 (span 2 linhas), preço/botões col 1 linha 2 */
.hero-text       { grid-column: 1; grid-row: 1; }
.hero-visual     { grid-column: 2; grid-row: 1 / 3; }
.hero-cta-group  { grid-column: 1; grid-row: 2; }
.hero-cta {
  margin-top: 1.6rem; display: flex; gap: 1.2rem; align-items: center;
  opacity: 0; animation: fade-up .8s var(--ease) 1.05s forwards;
}

/* hero-circle também pode ser link */
a.hero-circle { display: block; text-decoration: none; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  opacity: 0; animation: fade-in 1s ease .6s forwards;
}
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-ring-1 { width: 500px; height: 500px; border: 1px dashed rgba(196,146,42,.2); animation: spin-slow 45s linear infinite; }
.hero-ring-2 { width: 580px; height: 580px; border: 1px solid rgba(58,181,174,.1); animation: spin-slow 70s linear infinite reverse; }
.hero-ring-3 { width: 420px; height: 420px; border: 2px solid rgba(196,146,42,.07); }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-circle {
  width: 420px; height: 420px; border-radius: 50%; overflow: hidden;
  border: 5px solid rgba(196,146,42,.28);
  box-shadow: var(--shadow-circle);
  position: relative; z-index: 1;
  animation: float-piece 7s ease-in-out infinite;
}
.hero-circle img, .hero-circle .art-ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(58,181,174,.18) 0%, transparent 70%);
  filter: blur(30px); z-index: 0;
  animation: float-piece 7s ease-in-out infinite;
}
@keyframes float-piece { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: rgba(245,237,224,.3); font-size: .6rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  text-decoration: none; z-index: 2; transition: color .3s;
  opacity: 0; animation: fade-in 1s ease 1.5s forwards;
}
.hero-scroll:hover { color: rgba(245,237,224,.7); }
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(245,237,224,.35), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: .3; transform: scaleY(.4); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════════
   WAVE DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.wave-divider { position: relative; overflow: hidden; height: 100px; margin-top: -2px; background: var(--canvas); }
.wave-divider svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADS
   ═══════════════════════════════════════════════════════════════ */
.section-head { text-align: center; margin-bottom: 4.5rem; }
.section-head .eyebrow { margin-bottom: 1rem; display: block; }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1;
  position: relative; display: inline-block;
  margin-bottom: .6rem;
}
.section-title--light { color: var(--canvas); }

.title-brush { display: block; width: 100%; max-width: 320px; height: 14px; margin: 0 auto; }
.title-brush path { stroke-dasharray: 300; stroke-dashoffset: 300; }
.title-brush.visible path { animation: draw-brush .9s var(--ease) .1s forwards; }

/* ═══════════════════════════════════════════════════════════════
   GALLERY / SHOP
   ═══════════════════════════════════════════════════════════════ */
.section-gallery { padding: 7rem 0 8rem; background: var(--canvas); position: relative; }

.gallery-filters {
  display: flex; gap: .8rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3.5rem;
}
.filter-btn {
  padding: .45rem 1.4rem; border: 1px solid var(--canvas-dark);
  border-radius: 100px; background: transparent;
  color: var(--ink-soft); font-family: var(--f-ui);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--canvas); }

.artwork-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.5rem; margin-bottom: 4.5rem;
}

/* Card */
.artwork-card { opacity: 0; transform: translateY(35px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.artwork-card.visible { opacity: 1; transform: translateY(0); }
.artwork-card:nth-child(1) { transition-delay:  0s; }
.artwork-card:nth-child(2) { transition-delay: .1s; }
.artwork-card:nth-child(3) { transition-delay: .2s; }
.artwork-card:nth-child(4) { transition-delay: .15s; }
.artwork-card:nth-child(5) { transition-delay: .25s; }
.artwork-card:nth-child(6) { transition-delay: .35s; }

.card-link { display: block; }
.card-circle-wrap { position: relative; width: 100%; padding-bottom: 100%; margin-bottom: 1.6rem; }
.card-circle {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  box-shadow: 0 8px 32px rgba(24,16,10,.14);
  border: 3px solid transparent;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s;
}
.card-circle img, .card-circle .art-ph {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.artwork-card:hover .card-circle { box-shadow: 0 20px 60px rgba(24,16,10,.22); transform: translateY(-7px); border-color: var(--gold); }
.artwork-card:hover .card-circle img,
.artwork-card:hover .card-circle .art-ph { transform: scale(1.06); }

.card-overlay {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(8,15,26,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.artwork-card:hover .card-overlay { opacity: 1; }
.card-overlay span { font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--canvas); border-bottom: 1px solid rgba(245,237,224,.4); padding-bottom: 2px; }

/* ── Shape: square overrides ────────────────────────────────────── */
.artwork-card.shape-square .card-circle,
.artwork-card.shape-square .card-overlay { border-radius: 10px; }

.hero-circle.shape-square { border-radius: 14px; }

.artwork-circle-large.shape-square { border-radius: 14px; }

.card-info { text-align: center; padding: 0 .5rem; }
.card-title { font-family: var(--f-display); font-size: 1.25rem; font-weight: 400; font-style: italic; color: var(--ink); margin-bottom: .3rem; line-height: 1.3; }
.card-medium { font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; margin-bottom: .5rem; }
.card-price { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--gold); }

.card-badge { display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: .15rem .6rem; border-radius: 100px; margin-top: .3rem; }
.badge-avail { background: rgba(58,181,174,.1); color: var(--teal-bright); border: 1px solid rgba(58,181,174,.3); }
.badge-sold  { background: rgba(192,82,62,.1);  color: var(--coral);       border: 1px solid rgba(192,82,62,.25); }

.gallery-foot { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   SECTION: ABOUT TEASER
   ═══════════════════════════════════════════════════════════════ */
.section-about { position: relative; overflow: hidden; background: var(--deep); padding: 8rem 0; }
.section-about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.section-about::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(58,181,174,.07) 0%, transparent 65%);
  pointer-events: none;
}
.about-text .eyebrow { margin-bottom: 1.4rem; display: block; }
.about-title { font-family: var(--f-display); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 300; font-style: italic; color: var(--canvas); line-height: 1.15; margin-bottom: 2rem; }
.about-body { font-size: .92rem; line-height: 1.95; color: rgba(245,237,224,.5); margin-bottom: 1.4rem; }
.about-body em { font-style: italic; color: rgba(245,237,224,.7); }
.about-body:last-of-type { margin-bottom: 2.5rem; }
.about-body-wrap { margin-bottom: 2.5rem; }
.about-body-wrap p { font-size: .92rem; line-height: 1.95; color: rgba(245,237,224,.5); margin-bottom: 1.4rem; }
.about-body-wrap p:last-child { margin-bottom: 0; }
.about-body-wrap em { font-style: italic; color: rgba(245,237,224,.7); }
.about-image-circle { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 4px solid rgba(196,146,42,.25); box-shadow: var(--shadow-circle); }

/* ═══════════════════════════════════════════════════════════════
   SECTION: PROCESS
   ═══════════════════════════════════════════════════════════════ */
.section-process { padding: 6rem 0; background: var(--canvas-warm); border-top: 1px solid var(--canvas-dark); border-bottom: 1px solid var(--canvas-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; text-align: center; }
.process-item { padding: 1.5rem 2rem; }
.process-icon { width: 96px; height: 96px; border-radius: 50%; background: var(--canvas); margin: 0 auto 1.8rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(24,16,10,.08); overflow: hidden; padding: 14px; }
.process-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.process-name { font-family: var(--f-display); font-size: 1.6rem; font-style: italic; color: var(--ink); margin-bottom: .7rem; }
.process-desc { font-size: .85rem; line-height: 1.85; color: var(--ink-soft); }

/* ═══════════════════════════════════════════════════════════════
   SINGLE ARTWORK PAGE
   ═══════════════════════════════════════════════════════════════ */
.artwork-single { min-height: 100vh; background: var(--night); padding-top: 80px; }
.artwork-single__layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 80px); }

.artwork-display {
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 4rem; background: var(--deep); position: relative; overflow: hidden;
}
.artwork-display-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(58,181,174,.08) 0%, transparent 70%);
}
.artwork-display-rings {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: .12; z-index: 0;
}
.artwork-circle-large {
  width: min(450px, 80%); height: min(450px, 80%);
  border-radius: 50%; overflow: hidden;
  border: 5px solid rgba(196,146,42,.22);
  box-shadow: var(--shadow-circle);
  position: relative; z-index: 1;
  cursor: zoom-in;
}
.artwork-circle-large img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Zoom button (desktop overlay) */
.aw-zoom-btn {
  position: absolute; bottom: 1.4rem; right: 1.4rem; z-index: 5;
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 8px;
  background: rgba(10,8,12,.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(196,146,42,.3); color: rgba(245,237,224,.85);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.aw-zoom-btn:hover { background: rgba(196,146,42,.18); border-color: rgba(196,146,42,.6); }
.aw-zoom-btn-label { text-transform: uppercase; }

/* Tap hint — visível apenas em mobile sobre a imagem */
.aw-tap-hint {
  display: none; /* escondido por padrão; ativado em mobile via media query */
  position: absolute; bottom: 0; left: 0; right: 0;
  align-items: center; justify-content: center; gap: 6px;
  padding: 10px 0 12px;
  background: linear-gradient(to top, rgba(6,4,8,.72) 0%, transparent 100%);
  color: rgba(245,237,224,.82); font-size: 12px; letter-spacing: .04em;
  pointer-events: none;
  animation: tap-hint-fade 2.8s ease 1.2s both;
}
@keyframes tap-hint-fade {
  0%   { opacity: 0; transform: translateY(6px); }
  25%  { opacity: 1; transform: translateY(0);   }
  75%  { opacity: 1; transform: translateY(0);   }
  100% { opacity: 0; transform: translateY(0);   }
}

/* ── Lightbox ──────────────────────────────────────────────── */
#aw-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(6, 4, 8, .96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
#aw-lightbox[hidden] { display: none; }

.aw-lb-viewport {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: grab; user-select: none; overflow: hidden;
  touch-action: none;
}
.aw-lb-viewport.dragging { cursor: grabbing; }

#awLbImg {
  position: absolute;
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; display: block;
  transform-origin: center center;
  pointer-events: none; user-select: none;
  transition: transform .08s linear;
  border-radius: 4px;
}

.aw-lb-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(245,237,224,.8); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.aw-lb-close:hover { background: rgba(255,255,255,.16); color: #fff; }

.aw-lb-controls {
  position: absolute; bottom: 3.2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: .5rem;
}
.aw-lb-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(245,237,224,.8); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.aw-lb-btn:hover { background: rgba(255,255,255,.16); }
.aw-lb-btn-reset { width: auto; padding: 0 14px; font-size: 11px; }

.aw-lb-hint {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 10; font-size: 11px; color: rgba(245,237,224,.3);
  white-space: nowrap; pointer-events: none; text-align: center;
}
.aw-lb-hint-mobile { display: none; }

.artwork-info-panel {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--canvas);
}
.aw-type-label { font-size: .62rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 1rem; }
.aw-title { font-family: var(--f-display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.05; margin-bottom: 2rem; }
.aw-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; padding: 1.8rem 0; border-top: 1px solid var(--canvas-dark); border-bottom: 1px solid var(--canvas-dark); margin-bottom: 1.8rem; }
.meta-label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .2rem; }
.meta-value { font-family: var(--f-display); font-size: 1rem; font-style: italic; color: var(--ink); }
.aw-desc { font-size: .88rem; line-height: 1.95; color: var(--ink-mid); margin-bottom: 2rem; }
.aw-price { font-family: var(--f-display); font-size: 3.2rem; font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 1.6rem; }
.aw-price sup { font-size: 1.2rem; font-weight: 300; color: var(--ink-soft); vertical-align: super; }
.aw-ship { font-size: .75rem; color: var(--ink-soft); margin-top: .8rem; display: flex; align-items: center; gap: .4rem; }

/* Related artworks strip */
.related-artworks { padding: 5rem 0; background: var(--canvas-warm); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE: GALLERY PAGE
   ═══════════════════════════════════════════════════════════════ */
.archive-hero { background: var(--deep); padding: 10rem 0 5rem; position: relative; overflow: hidden; }
.archive-hero__title { font-family: var(--f-display); font-size: clamp(3.5rem, 8vw, 7rem); font-style: italic; color: var(--canvas); font-weight: 300; margin-top: 1rem; }
.archive-body { padding: 5rem 0 8rem; background: var(--canvas); }

/* ═══════════════════════════════════════════════════════════════
   PAGE: ABOUT
   ═══════════════════════════════════════════════════════════════ */
/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-page-hero { min-height: 65vh; background: var(--deep); display: flex; align-items: center; padding: 8rem 2rem 5rem; position: relative; overflow: hidden; }
.about-page-hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-hero-text {}
.about-hero-photo { display: flex; justify-content: center; }
.about-hero-circle { width: 320px; height: 320px; border-radius: 50%; overflow: hidden; border: 4px solid rgba(196,146,42,.3); box-shadow: var(--shadow-circle); }
.about-page-title { font-family: var(--f-display); font-size: clamp(3.5rem, 8vw, 7rem); font-style: italic; color: var(--canvas); font-weight: 300; line-height: .95; }
.about-page-sub { font-family: var(--f-script); font-size: 1.5rem; color: rgba(245,237,224,.4); margin-top: 1.5rem; }
.about-page-content { padding: 7rem 0; background: var(--canvas); }
.about-page-content .wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 6rem; align-items: start; }
.about-prose p { font-size: 1rem; line-height: 2.05; color: var(--ink-mid); margin-bottom: 1.5rem; }
/* When no intro/body divs (e.g. WP post content), style first paragraph large */
.about-prose > p:first-of-type { font-family: var(--f-display); font-size: 1.5rem; font-style: italic; color: var(--ink); line-height: 1.6; }
.about-intro { margin-bottom: 2.5rem; }
.about-intro p { font-family: var(--f-display); font-size: 1.5rem; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 1.5rem; }
.about-intro p:last-child { margin-bottom: 0; }
/* Reset: body paragraphs must be normal — override any inherited large-text rules */
.about-body p,
.about-body p:first-of-type { font-family: var(--f-body); font-size: .97rem; font-style: normal; color: var(--ink-mid); line-height: 2.05; margin-bottom: 1.5rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-sidebar { }
.about-sidebar-box { background: var(--canvas-warm); padding: 2rem; border: 1px solid var(--canvas-dark); }
.about-sidebar-label { font-size: .62rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--teal-bright); margin-bottom: 1.2rem; }
.about-sidebar-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.about-sidebar-list li { font-family: var(--f-display); font-style: italic; font-size: 1rem; color: var(--ink); }
.about-sidebar-list li::before { content: '· '; color: var(--gold); }
.about-sidebar-hr { border: none; border-top: 1px solid var(--canvas-dark); margin: 1.5rem 0; }
.about-sidebar-note { font-family: var(--f-display); font-style: italic; font-size: 1rem; color: var(--ink); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════
   GENERIC PAGE
   ═══════════════════════════════════════════════════════════════ */
.page-hero { background: var(--deep); padding: 9rem 0 4rem; overflow: hidden; position: relative; }
.page-hero__title { font-family: var(--f-display); font-size: clamp(3rem, 6vw, 5rem); font-style: italic; color: var(--canvas); margin-top: 1rem; }
.page-content { padding: 5rem 0 8rem; }
.page-content .entry-content p { font-size: 1rem; line-height: 2; color: var(--ink-mid); margin-bottom: 1.5rem; }
.page-content .entry-content h2 { font-family: var(--f-display); font-size: 2rem; font-style: italic; color: var(--ink); margin: 2.5rem 0 1rem; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--night); padding: 5.5rem 0 3rem; position: relative; overflow: hidden; }
.footer-brand-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 3.5rem; }
.footer-brand { font-family: var(--f-script); font-size: 5.5rem; color: rgba(245,237,224,.35); line-height: 1; letter-spacing: .04em; }
.footer-logo { width: 80px; height: 80px; border-radius: 0; object-fit: contain; flex-shrink: 0; opacity: .9; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,237,224,.07); margin-bottom: 2.5rem; }
.footer-bio { font-size: .85rem; line-height: 1.85; color: rgba(245,237,224,.65); max-width: 300px; margin-bottom: 1rem; }
.footer-email { font-size: .75rem; color: rgba(245,237,224,.55); font-style: italic; }
.footer-col-title { font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-list a { font-size: .83rem; color: rgba(245,237,224,.6); transition: color .3s; }
.footer-list a:hover { color: rgba(245,237,224,.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: rgba(245,237,224,.55); }
.footer-bottom em { font-style: italic; opacity: .7; }
.footer-design-credit { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: rgba(245,237,224,.6); letter-spacing: .04em; text-decoration: none; transition: color .3s; }
.footer-design-credit:hover { color: #25d366; }
.footer-whatsapp { color: rgba(245,237,224,.1); display: flex; align-items: center; transition: color .3s; }
.footer-whatsapp:hover { color: #25D366; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEALS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fade-up  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes draw-brush { to { stroke-dashoffset: 0; } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   ARTWORK PLACEHOLDER GRADIENTS
   ═══════════════════════════════════════════════════════════════ */
.ph-1 { background: linear-gradient(155deg, #0C2238 0%, #1B6B78 28%, #3AB5AE 52%, #E9C46A 76%, #C4922A 100%); }
.ph-2 { background: linear-gradient(140deg, #041A3A 0%, #0A5A96 35%, #2E9FCB 58%, #90D8EF 80%, #B4EAF8 100%); }
.ph-3 { background: linear-gradient(148deg, #0A2018 0%, #1B4A2E 30%, #2E8A50 54%, #68C880 72%, #A8E09A 100%); }
.ph-4 { background: linear-gradient(158deg, #2A0E08 0%, #8B3220 30%, #C85843 52%, #E9904A 72%, #F2C050 100%); }
.ph-5 { background: linear-gradient(142deg, #0A1628 0%, #123658 25%, #1E6A9A 50%, #D4933C 72%, #E87040 100%); }
.ph-6 { background: linear-gradient(152deg, #100830 0%, #2A1070 30%, #4A40B8 55%, #8890E8 75%, #C0C8F8 100%); }
.ph-7 { background: linear-gradient(160deg, #1A0808 0%, #5A1A20 28%, #C0523E 52%, #E9B040 72%, #F8E068 100%); }

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════════ */
body { cursor: none; }
@media (hover: none), (pointer: coarse) { body { cursor: auto; } }

.cursor-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-light);
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: transform .1s, background .3s, opacity .3s;
  will-change: left, top;
}
.cursor-ring {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(196,146,42,.5);
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, opacity .3s;
  will-change: left, top;
}
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 48px; height: 48px; }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.archive-pagination {
  margin-top: 4rem; text-align: center;
  display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--canvas-dark);
  font-family: var(--f-ui); font-size: .72rem; font-weight: 600;
  color: var(--ink-soft); transition: background .25s, color .25s, border-color .25s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .current {
  background: var(--ink); color: var(--canvas); border-color: var(--ink);
}
.archive-pagination .prev, .archive-pagination .next {
  width: auto; padding: 0 1.2rem; letter-spacing: .1em; text-transform: uppercase; font-size: .65rem;
}

/* ═══════════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════════ */
.archive-empty {
  text-align: center; padding: 5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.archive-empty-circle {
  width: 120px; height: 120px; border-radius: 50%;
  opacity: .35; margin: 0 auto;
}
.archive-empty p { font-family: var(--f-display); font-size: 1.2rem; font-style: italic; color: var(--ink-soft); }

/* ═══════════════════════════════════════════════════════════════
   PAGE: CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-page-body { padding: 6rem 0 8rem; background: var(--canvas); }
.contact-grid { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }

/* Info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem; background: var(--canvas-warm);
  border: 1px solid var(--canvas-dark);
}
.contact-info-icon {
  font-size: 1.2rem; flex-shrink: 0;
  color: var(--teal-bright); margin-top: .05rem;
}
.contact-info-label {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--teal-bright); margin-bottom: .4rem;
}
.contact-info-link {
  font-family: var(--f-display); font-style: italic;
  font-size: 1rem; color: var(--ink);
  transition: color .3s;
}
.contact-info-link:hover { color: var(--gold); }
.contact-info-text { font-size: .82rem; line-height: 1.8; color: var(--ink-soft); }

.contact-deco-circle {
  width: 100%; max-width: 180px; aspect-ratio: 1;
  border-radius: 50%; margin: 1.5rem auto 0;
  opacity: .3;
}

/* Form */
.contact-form-wrap { min-width: 0; }
.contact-form-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300; font-style: italic;
  color: var(--ink); margin-bottom: 2rem;
  line-height: 1;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.form-required { color: var(--coral); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1px solid var(--canvas-dark);
  background: var(--canvas-warm);
  font-family: var(--f-ui); font-size: .9rem;
  color: var(--ink); outline: none;
  transition: border-color .25s, box-shadow .25s;
  border-radius: 0;
  appearance: none; -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6248' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 160px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(58,181,174,.1);
}
.contact-submit { align-self: flex-start; }
.form-privacy { font-size: .7rem; color: var(--ink-soft); margin-top: .5rem; }

/* Form feedback */
.contact-success {
  text-align: center; padding: 4rem 2rem;
  border: 1px solid rgba(58,181,174,.25);
  background: rgba(58,181,174,.04);
}
.contact-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-bright); color: white;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-success h3 { font-family: var(--f-display); font-size: 2rem; font-style: italic; color: var(--ink); margin-bottom: .5rem; }
.contact-success p { color: var(--ink-soft); }
.contact-error {
  padding: 1rem 1.4rem; margin-bottom: 1.5rem;
  background: rgba(192,82,62,.06); border: 1px solid rgba(192,82,62,.2);
  font-size: .85rem; color: var(--coral); line-height: 1.7;
}
.contact-error a { color: inherit; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   PAGE: 404
   ═══════════════════════════════════════════════════════════════ */
.error-page {
  min-height: 100vh; background: var(--night);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 8rem 0;
}
.error-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 35%, rgba(58,181,174,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 75%, rgba(196,146,42,.07) 0%, transparent 50%),
    var(--night);
}
.error-page .wrap { position: relative; z-index: 1; }
.error-page-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }

.error-circles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.error-circle { position: absolute; border-radius: 50%; opacity: .12; }
.error-c1 { width: 280px; height: 280px; top: -60px; right: 10%; }
.error-c2 { width: 200px; height: 200px; bottom: -40px; left: 5%; }
.error-c3 { width: 140px; height: 140px; top: 30%; right: 3%; }

.error-code {
  font-family: var(--f-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300; font-style: italic; line-height: 1;
  background: linear-gradient(150deg, #F5EDE0 0%, #EAC97C 50%, #C4922A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.error-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300; font-style: italic;
  color: var(--canvas); margin-bottom: .2rem;
}
.error-desc {
  font-size: .9rem; line-height: 1.85;
  color: rgba(245,237,224,.4); max-width: 400px;
}
.error-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

.error-recent { margin-top: 3.5rem; width: 100%; }
.error-recent-label {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,237,224,.3); margin-bottom: 1.8rem; display: block;
}
.error-recent-grid { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.error-recent-item { display: flex; flex-direction: column; align-items: center; gap: .8rem; transition: transform .3s; }
.error-recent-item:hover { transform: translateY(-6px); }
.error-recent-circle {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(196,146,42,.2); box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.error-recent-circle img { width: 100%; height: 100%; object-fit: cover; }
.error-recent-title {
  font-family: var(--f-display); font-style: italic;
  font-size: .9rem; color: rgba(245,237,224,.5);
  max-width: 120px; text-align: center; line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-brush { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-circle { width: 340px; height: 340px; }
  .hero-ring-1 { width: 400px; height: 400px; }
  .hero-ring-2 { width: 470px; height: 470px; }
  .hero-ring-3 { width: 350px; height: 350px; }
  .artwork-grid { grid-template-columns: repeat(2, 1fr); }
  .section-about .wrap { grid-template-columns: 1fr; gap: 4rem; }
  .artwork-single__layout { grid-template-columns: 1fr; }
  .about-page-hero .wrap { grid-template-columns: 1fr; }
  .about-hero-circle { width: 260px; height: 260px; margin: 0 auto; }
  .about-page-content .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-deco-circle { display: none; }
  /* Formulário aparece antes das informações em telas menores */
  .contact-form-wrap { order: -1; }
  .contact-info { order: 1; }
}
@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .hero-circle { width: 280px; height: 280px; }
  .hero-ring-1 { width: 330px; height: 330px; }
  .hero-ring-2 { width: 390px; height: 390px; }
  .hero-ring-3 { width: 290px; height: 290px; }
  .artwork-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { font-size: 3rem; }
  .footer-logo { width: 60px; height: 60px; }
  .process-grid { grid-template-columns: 1fr; }
  .artwork-info-panel { padding: 2.5rem 1.5rem; }

  /* Mobile: sem círculo — obra ocupa largura total */
  .artwork-display { padding: 1.8rem 0 0; min-height: 0; overflow: visible; }
  .artwork-display-glow,
  .artwork-display-rings { display: none; }
  .artwork-circle-large {
    width: 100%; height: auto; aspect-ratio: 1;
    border-radius: 0; border: none; box-shadow: none; cursor: zoom-in;
  }
  .artwork-circle-large img { object-fit: contain; background: var(--night); }
  /* Ocultar botão de zoom em mobile (usa pinça no lightbox) */
  .aw-zoom-btn { display: none; }
  /* Mostrar hint de toque */
  .aw-tap-hint { display: flex; }

  /* Lightbox mobile: ocultar botões +/−, mostrar dica de pinça */
  .aw-lb-controls { display: none; }
  .aw-lb-hint-desktop { display: none; }
  .aw-lb-hint-mobile { display: inline; }
  .aw-lb-hint { bottom: .8rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  /* Contact */
  .contact-info { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; justify-content: center; }
  /* Error */
  .error-recent-grid { flex-direction: column; align-items: center; }
  .archive-pagination { gap: .3rem; }
  .archive-pagination .page-numbers { width: 36px; height: 36px; font-size: .65rem; }

  /* ── MOBILE-ONLY LAYOUT FIXES ───────────────────────────────── */

  /* 1. Barra superior: afastar hero do nav fixo */
  .hero { align-items: flex-start; padding-top: 5rem; }
  .hero-inner { margin-top: 3rem; }

  /* 2. Obra em destaque: specs → imagem → preço/botões
        Ordem natural do HTML: hero-text → hero-visual → hero-cta-group ✓
        Sem display:contents — sem problemas de animação */
  .hero-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }
  /* Cancelar placement explícito do desktop — flex column cuida da ordem */
  .hero-text      { grid-column: auto; grid-row: auto; }
  .hero-visual    { grid-column: auto; grid-row: auto; }
  .hero-cta-group { grid-column: auto; grid-row: auto; width: 100%; text-align: center; padding: 0 1.5rem 4rem; }
  .hero-cta { justify-content: center; margin-top: 1rem; }
  .hero-product { border-top: none; }
  /* Esconder scroll indicator no mobile (sobreposição com preço) */
  .hero-scroll { display: none; }

  /* 3. Reduzir gap entre hero e galeria */
  .wave-divider { height: 40px; }
  .section-gallery { padding: 3rem 0 4rem; }

  /* 4. O Artista: título → foto → bio */
  .section-about .wrap { display: flex; flex-direction: column; gap: 2.5rem; }
  .about-text { display: contents; }
  .about-text-head { order: 1; width: 100%; text-align: center; }
  .about-image { order: 2; }
  .about-text-body { order: 3; width: 100%; }
  .about-text-head .eyebrow { display: block; }

  /* 5. Espaçamentos uniformes entre seções */
  .section-process { padding: 4rem 0; }
  .section-about { padding: 4rem 0; }
}

/* ═══════════════════════════════════════════════════════════════
   ENCOMENDAS PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Hero */
.enc-hero { position: relative; overflow: hidden; background: var(--deep); padding: 9rem 2rem 7rem; }
.enc-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(58,181,174,.06) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 80% 60%, rgba(196,146,42,.05) 0%, transparent 70%); pointer-events: none; }
.enc-hero-grain { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"); pointer-events: none; }
.enc-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.enc-hero-title { font-family: var(--f-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; font-style: normal; color: var(--canvas); line-height: .95; margin: 1rem 0 1.5rem; }
.enc-hero-title em { font-style: italic; color: var(--gold-light); }
.enc-hero-divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.enc-hero-desc { font-size: 1rem; line-height: 1.85; color: rgba(245,237,224,.65); max-width: 560px; }

/* Gallery */
/* Circle rows — distributed across encomendas page */
.enc-circles { padding: 4rem 0; background: var(--canvas); display: flex; justify-content: center; }
.enc-circles--duo { gap: 5rem; }
.enc-circles--solo { }
.enc-circle-wrap { display: flex; justify-content: center; }
.enc-circle { width: 260px; height: 260px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(196,146,42,.22); box-shadow: var(--shadow-circle); flex-shrink: 0; }
.enc-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Temas */
.enc-temas { padding: 7rem 0; background: var(--canvas-warm); }
.enc-temas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.enc-tema-item { text-align: center; padding: 2rem 1.5rem; border: 1px solid rgba(196,146,42,.12); border-radius: 12px; background: rgba(245,237,224,.45); }
.enc-tema-name { font-family: var(--f-display); font-size: 1.2rem; font-style: italic; color: var(--ink); margin-bottom: .6rem; }
.enc-tema-desc { font-size: .83rem; line-height: 1.7; color: var(--ink-soft); }

/* Valores */
.enc-valores { padding: 7rem 0; background: var(--deep); }
.enc-valores .section-title { color: var(--canvas); }
.enc-valores .eyebrow { color: var(--teal-bright); }
.enc-valores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.enc-valor-card { background: rgba(255,255,255,.03); border: 1px solid rgba(245,237,224,.08); border-radius: 12px; padding: 2.5rem 2rem; }
.enc-valor-card--featured { background: rgba(196,146,42,.06); border-color: rgba(196,146,42,.25); transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.enc-valor-badge { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(196,146,42,.3); display: inline-block; padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem; }
.enc-valor-label { font-size: .83rem; color: rgba(245,237,224,.45); line-height: 1.6; margin-bottom: 1.5rem; min-height: 2.5em; }
.enc-valor-price { font-family: var(--f-display); font-size: 1.8rem; font-style: italic; color: var(--gold-light); margin-bottom: 1.5rem; }
.enc-valor-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.enc-valor-list li { font-size: .83rem; color: rgba(245,237,224,.55); line-height: 1.6; padding-left: 1.2rem; position: relative; }
.enc-valor-list li::before { content: '·'; position: absolute; left: 0; color: var(--teal-bright); }

/* Processo */
.enc-processo { padding: 7rem 0; background: var(--canvas); }
.enc-steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.enc-step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid var(--canvas-dark); }
.enc-step:last-child { border-bottom: none; }
.enc-step-number { font-family: var(--f-display); font-size: 3rem; font-style: italic; color: var(--gold); opacity: .35; line-height: 1; margin-top: -.3rem; }
.enc-step-title { font-family: var(--f-display); font-size: 1.3rem; font-style: italic; color: var(--ink); margin-bottom: .4rem; }
.enc-step-desc { font-size: .9rem; line-height: 1.8; color: var(--ink-soft); }

/* Info */
.enc-info { padding: 5rem 0; background: var(--canvas-warm); }
.enc-info-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.enc-info-title { font-family: var(--f-display); font-size: 2rem; font-style: italic; color: var(--ink); margin-bottom: 2rem; }
.enc-info-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.enc-info-list li { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; padding-left: 1.4rem; position: relative; text-align: left; }
.enc-info-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal-bright); font-size: .8rem; }

/* CTA */
.enc-cta { padding: 8rem 0; background: var(--deep); text-align: center; }
.enc-cta .eyebrow { color: var(--teal-bright); }
.enc-cta-inner { max-width: 600px; margin: 0 auto; }
.enc-cta-title { font-family: var(--f-display); font-size: clamp(2.5rem, 5vw, 4rem); font-style: italic; color: var(--canvas); font-weight: 300; margin: 1rem 0 1.5rem; }
.enc-cta-desc { font-size: .9rem; line-height: 1.85; color: rgba(245,237,224,.55); margin-bottom: 1.5rem; }
.enc-cta-quote { font-family: var(--f-display); font-size: 1.1rem; color: rgba(245,237,224,.3); margin-bottom: 2.5rem; }
.enc-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Encomendas responsive */
@media (max-width: 1024px) {
  .enc-temas-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .enc-valores-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .enc-valor-card--featured { transform: none; }
}
@media (max-width: 768px) {
  .enc-circles--duo { gap: 2.5rem; }
  .enc-circle { width: 200px; height: 200px; }
  .enc-step { grid-template-columns: 56px 1fr; gap: 1rem; }
  .enc-step-number { font-size: 2.2rem; }
}
@media (max-width: 640px) {
  .enc-temas-grid { grid-template-columns: 1fr; }
  .enc-circles--duo { flex-direction: column; align-items: center; gap: 2rem; padding: 3rem 0; }
  .enc-circle { width: 180px; height: 180px; }
  .about-hero-circle { width: 220px; height: 220px; }
  /* Encomendas: espaçamentos compactos em mobile */
  .enc-hero { padding: 5.5rem 1.5rem 3.5rem; }
  .enc-circles { padding: 2.5rem 0; }
  .enc-temas { padding: 3.5rem 0; }
  .enc-temas-grid { margin-top: 2rem; }
  .enc-valores { padding: 3.5rem 0; }
  .enc-valores-grid { margin-top: 2rem; }
  .enc-processo { padding: 3.5rem 0; }
  .enc-steps { margin-top: 2rem; }
  .enc-info { padding: 3rem 0; }
  .enc-cta { padding: 4rem 0; }
}

/* ═══════════════════════════════════════════════════════════════
   WORDPRESS CORE OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
.wp-block-image { margin-bottom: 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }
.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: .5rem; font-style: italic; }
