/* ═══════════════════════════════════════════════════════════════
   ANNA READY ART — Design System
   Refined editorial aesthetic · warm earth tones · craft focus
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* Palette — warm rose-copper on deep ink */
  --copper: #d4a574;
  --copper-bright: #e8bd8c;
  --copper-deep: #a87b4f;
  --rose: #e9b8a4;
  --ink: #0f0d0c;
  --ink-2: #16120f;
  --ink-3: #1c1612;
  --surface: #221a14;
  --surface-2: #2a201a;
  --line: #2e251e;
  --line-bright: #463729;
  --cream: #f5ebdf;
  --cream-dim: #d9cdbe;
  --text: #cfc0ad;
  --muted: #8c8175;
  --muted-2: #6b6258;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-in: cubic-bezier(.55,.05,.67,.19);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--copper); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--copper-bright); }
::selection { background: var(--copper); color: var(--ink); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 10px; font-size: 15px; color: var(--text); line-height: 1.78; }
li::marker { color: var(--copper); }
strong, b { color: var(--cream); font-weight: 600; }

/* ── GRAIN OVERLAY (subtle texture) ─────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .035;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ═══ NAV ═══════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,13,12,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 24px; font-weight: 600;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo:hover { color: var(--cream); }
.nav-logo .mark {
  width: 32px; height: 32px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 14px;
  font-style: normal;
  background: radial-gradient(circle at 30% 30%, rgba(212,165,116,.18), transparent 60%);
  transition: transform .4s var(--ease);
}
.nav-logo:hover .mark { transform: rotate(180deg); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13.5px; color: var(--cream-dim);
  font-weight: 500; letter-spacing: .01em;
  position: relative; padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--copper);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 8px; padding: 10px 22px;
  background: var(--copper); color: var(--ink);
  border-radius: 999px; font-weight: 600;
  font-size: 13px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background: var(--copper-bright); color: var(--ink); transform: translateY(-1px); }
.nav-cta::after { display: none; }

.burger {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 22px; cursor: pointer;
  width: 40px; height: 40px;
  border: 1px solid var(--line-bright); border-radius: 8px;
  align-items: center; justify-content: center;
}
.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 28px 24px; gap: 4px;
  border-top: 1px solid var(--line);
  background: rgba(15,13,12,.96);
}
.mobile-menu a {
  font-size: 14px; color: var(--cream-dim);
  padding: 10px 0; display: block;
  border-bottom: 1px solid rgba(46,37,30,.5);
}
.mobile-menu a:hover { color: var(--copper); }

@media(max-width: 920px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .mobile-menu.open { display: flex; }
}

/* ═══ LAYOUT ═══════════════════════════════════════════════ */
.section { padding: 96px 28px; position: relative; }
.section-sm { padding: 56px 28px; }
.dark { background: var(--ink-2); }
.darker { background: var(--ink-3); }
.wrap { max-width: 1240px; margin: 0 auto; position: relative; }
.narrow { max-width: 780px; }
.center { text-align: center; }

/* ═══ TYPOGRAPHY ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--cream);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(40px, 6.5vw, 78px); font-weight: 500; }
h2 { font-size: clamp(30px, 4.2vw, 48px); margin-bottom: 18px; }
h3 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: 12px; }
h4 { font-size: 19px; margin-bottom: 10px; font-weight: 600; }
h5 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }

.italic { font-style: italic; color: var(--copper); }

p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 18px; }
.lead {
  font-size: 19px; line-height: 1.7;
  color: var(--cream-dim);
  font-weight: 400;
}
.muted { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.label::before {
  content: ''; width: 24px; height: 1px;
  background: var(--copper);
  display: inline-block;
}
.label.center, .center .label { justify-content: center; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ═══ HERO ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 120px 28px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212,165,116,.12), transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(233,184,164,.06), transparent 60%),
    linear-gradient(180deg, #0f0d0c 0%, #16120f 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,165,116,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,165,116,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 2;
  width: 100%;
}
.hero-text { animation: fadeUp 1s var(--ease) both; }
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}
.hero .lead { max-width: 560px; margin-bottom: 40px; }

.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: var(--display);
  font-size: 32px; font-weight: 500;
  color: var(--copper);
  font-style: italic;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  animation: fadeIn 1.4s var(--ease) .3s both;
}
.hero-visual .card-stack {
  position: relative;
  height: 520px;
}
.hero-visual .stack-img {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.hero-visual .stack-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .si-1 { top: 0; left: 0; width: 70%; height: 60%; transform: rotate(-3deg); }
.hero-visual .si-2 { top: 30%; right: 0; width: 55%; height: 55%; transform: rotate(4deg); z-index: 2; }
.hero-visual .si-3 { bottom: 0; left: 18%; width: 60%; height: 45%; transform: rotate(-1deg); z-index: 1; }
.hero-visual .stack-tag {
  position: absolute;
  background: var(--ink);
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 3;
}
.hero-visual .tag-1 { top: 8%; right: -10px; }
.hero-visual .tag-2 { bottom: 12%; left: -20px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-10px) rotate(var(--r, 0deg)); } }

.hero-visual .si-1 { --r: -3deg; animation: float 6s ease-in-out infinite; }
.hero-visual .si-2 { --r: 4deg; animation: float 7s ease-in-out infinite .8s; }
.hero-visual .si-3 { --r: -1deg; animation: float 8s ease-in-out infinite 1.6s; }

@media(max-width: 960px) {
  .hero { min-height: auto; padding: 80px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual .card-stack { height: 380px; max-width: 460px; margin: 0 auto; }
}

/* ═══ PAGE HEADER ══════════════════════════════════════════ */
.page-header {
  padding: 120px 28px 64px;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(212,165,116,.08), transparent 60%),
    var(--ink-2);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-header h1 { margin-bottom: 18px; font-size: clamp(36px, 5vw, 60px); }
.page-header p { color: var(--cream-dim); max-width: 620px; margin: 0 auto; font-size: 17px; }

/* ═══ BUTTONS ══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--copper);
  color: var(--ink);
  font-weight: 600; font-size: 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  text-decoration: none;
  letter-spacing: .005em;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  transition: transform .3s var(--ease);
}
.btn:hover {
  background: var(--copper-bright);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(212,165,116,.4);
}
.btn:hover::after { transform: translateX(4px); }

.btn-o {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--cream);
  font-weight: 500; font-size: 14px;
  border-radius: 999px;
  border: 1px solid var(--line-bright);
  cursor: pointer;
  font-family: var(--body);
  text-decoration: none;
  transition: all .25s var(--ease);
}
.btn-o:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(212,165,116,.04);
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.center .btn-row { justify-content: center; }
.btn-lg { padding: 17px 36px; font-size: 15px; }

/* ═══ GRIDS ════════════════════════════════════════════════ */
.g2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; align-items: start; }
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.g4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ═══ CARDS ════════════════════════════════════════════════ */
.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.5);
}
.card:hover::before { opacity: 1; }
.card-alt { background: var(--surface-2); }
.card-title {
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.card p { font-size: 14.5px; line-height: 1.78; color: var(--text); }

.step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px; font-weight: 500;
  color: var(--copper);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
  opacity: .9;
}

/* Card with icon */
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,165,116,.15), rgba(212,165,116,.04));
  border: 1px solid var(--line-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--copper);
}

/* ═══ MEDIA / IMAGES ══════════════════════════════════════ */
.media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); display: block; }
.media:hover img { transform: scale(1.04); }
.media-tall { aspect-ratio: 4/5; }
.media-wide { aspect-ratio: 3/2; }
.media-sq { aspect-ratio: 1/1; }

/* ═══ FEATURED PORTRAIT BLOCK ═════════════════════════════ */
.portrait-block {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.portrait-block img { width: 100%; height: 100%; object-fit: cover; }
.portrait-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,13,12,.85));
}
.portrait-meta {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
}

/* ═══ TRUST METRICS ═══════════════════════════════════════ */
.trust-val {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ═══ CTA SECTION ═════════════════════════════════════════ */
.cta-section {
  padding: 120px 28px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 80% at center, rgba(212,165,116,.1), transparent 70%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '✦';
  position: absolute;
  top: 40px; left: 50%; transform: translateX(-50%);
  color: var(--copper);
  font-size: 24px;
  opacity: .5;
}
.cta-section h2 { margin-bottom: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-section > p {
  color: var(--cream-dim);
  max-width: 580px; margin: 0 auto 40px;
  font-size: 17px;
}
.cta-box {
  background: var(--surface);
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  padding: 44px;
  max-width: 640px; margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}

/* ═══ DIVIDER ═════════════════════════════════════════════ */
.divider { height: 1px; background: var(--line); margin: 48px 0; }
.divider-ornament {
  text-align: center;
  margin: 56px 0;
  color: var(--copper);
  font-size: 18px;
  letter-spacing: 1em;
  opacity: .5;
}

/* ═══ FAQ / LEGAL ═════════════════════════════════════════ */
.legal-block {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h3 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 22px;
}

/* ═══ CONTACT ═════════════════════════════════════════════ */
.contact-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.contact-val {
  color: var(--copper);
  font-size: 17px;
  font-weight: 500;
  word-break: break-word;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  transition: border-color .3s var(--ease);
}
.contact-card:hover { border-color: var(--copper); }
.contact-card .card-icon { margin-bottom: 16px; }

/* ═══ GALLERY ═════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,13,12,.9));
  opacity: .7;
  transition: opacity .3s var(--ease);
}
.gallery-item .label-bar {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  transform: translateY(8px);
  opacity: 0;
  transition: all .35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .label-bar { transform: translateY(0); opacity: 1; }
.gallery-item:hover::after { opacity: 1; }

/* ═══ FOOTER ══════════════════════════════════════════════ */
footer {
  background: #0a0807;
  border-top: 1px solid var(--line);
  padding: 72px 28px 0;
  position: relative;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo .mark {
  width: 30px; height: 30px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 13px;
  font-style: normal;
}
.footer-head {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  color: var(--copper);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.footer-link {
  display: block;
  color: var(--text);
  font-size: 14px;
  padding: 6px 0;
  text-decoration: none;
  transition: color .2s var(--ease), padding .2s var(--ease);
}
.footer-link:hover { color: var(--copper); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 6px;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--copper); }

@media(max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══ ANIMATION UTILITIES ═════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media(max-width: 720px) {
  .section { padding: 64px 22px; }
  .section-sm { padding: 40px 22px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; gap: 22px; }
  .g2 { gap: 36px; }
  .card { padding: 26px; }
  .cta-box { padding: 28px; }
  .cta-section { padding: 72px 22px; }
  .page-header { padding: 80px 22px 44px; }
  .hero-meta { gap: 24px; }
  .hero-meta-item .num { font-size: 28px; }
}

/* Aspect-ratio fallback already covered by modern browsers */
