/* Tracy Tries Watercolour — shared site styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Karla:wght@400;500;700&family=Gochi+Hand&display=swap');

:root {
  --cream: oklch(97% 0.014 75);
  --cream-white: oklch(99% 0.005 80);
  --card-bg: oklch(94.5% 0.018 70);
  --ink: oklch(24% 0.03 50);
  --ink-soft: oklch(35% 0.03 50);
  --muted: oklch(42% 0.03 50);
  --border: oklch(90% 0.02 70);
  --terracotta: oklch(58% 0.14 40);
  --terracotta-dark: oklch(50% 0.14 40);
  --sage: oklch(46% 0.05 155);
  --teal: oklch(40% 0.13 195);
  --teal-dark-bg: oklch(22% 0.05 195);
  --gold: oklch(78% 0.13 85);
  --sage-dot: oklch(50% 0.07 150);
  --blue-dot: oklch(60% 0.09 230);
  --rose: oklch(58% 0.15 355);
  --dusty-rose: oklch(62% 0.1 340);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--ink);
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin: 0;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Logo lockup ---------- */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
}
.logo-lockup svg { flex-shrink: 0; }
.logo-wordmark {
  font-family: 'Gochi Hand', cursive;
  color: var(--teal);
  line-height: 1;
  white-space: nowrap;
}
.logo-lockup.large { gap: 18px; }
.logo-dots { display: flex; gap: 7px; margin-top: 6px; }
.logo-dots span { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.logo-dots span:nth-child(1) { background: var(--terracotta); }
.logo-dots span:nth-child(2) { background: var(--gold); }
.logo-dots span:nth-child(3) { background: var(--sage-dot); }
.logo-dots span:nth-child(4) { background: var(--blue-dot); }

/* ---------- Nav ---------- */
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.site-header .logo-wordmark { font-size: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 15px;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-icons { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle svg { display: block; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  header.site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    z-index: 20;
  }
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 32px 90px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-copy { flex: 1 1 460px; max-width: 540px; }
.hero-copy h1 { font-size: 52px; line-height: 1.14; color: oklch(22% 0.03 50); }
.hero-copy p { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin-top: 22px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.hero-visual {
  flex: 1 1 380px;
  max-width: 480px;
  aspect-ratio: 1.13;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: oklch(93% 0.03 60);
}
.hero-visual .wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, oklch(70% 0.13 40 / 0.75) 0%, transparent 55%),
    radial-gradient(circle at 68% 22%, oklch(75% 0.10 90 / 0.65) 0%, transparent 50%),
    radial-gradient(circle at 60% 68%, oklch(60% 0.09 150 / 0.6) 0%, transparent 55%),
    radial-gradient(circle at 20% 75%, oklch(65% 0.08 230 / 0.5) 0%, transparent 50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--terracotta); color: var(--cream-white); padding: 16px 34px; }
.btn-primary:hover { background: var(--terracotta-dark); color: var(--cream-white); }
.btn-outline { background: transparent; color: var(--terracotta); border: 1.5px solid var(--terracotta); padding: 13px 30px; }
.btn-outline:hover { background: var(--terracotta); color: var(--cream-white); }
.link-underline {
  font-size: 15px; font-weight: 700; color: var(--ink);
  border-bottom: 1.5px solid var(--terracotta); padding-bottom: 3px;
}

/* ---------- Section shells ---------- */
section { padding: 70px 32px; }
.section-heading { font-size: 32px; margin-bottom: 8px; }
.section-sub { font-size: 16px; color: var(--ink-soft); max-width: 560px; margin-bottom: 36px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tinted { background: var(--card-bg); }

/* ---------- Collections grid ---------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.collection-card { display: flex; flex-direction: column; gap: 14px; }
.paint-wash {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.collection-card .paint-wash { background: oklch(90% 0.03 40); }
.collection-card h3 { font-size: 20px; }
.wash-1 { background: radial-gradient(circle at 30% 30%, oklch(66% 0.15 35 / 0.8) 0%, transparent 55%), radial-gradient(circle at 70% 70%, oklch(72% 0.12 50 / 0.6) 0%, transparent 55%); }
.wash-2 { background: radial-gradient(circle at 35% 35%, oklch(62% 0.1 240 / 0.75) 0%, transparent 55%), radial-gradient(circle at 65% 65%, oklch(68% 0.08 260 / 0.6) 0%, transparent 55%); }
.wash-3 { background: radial-gradient(circle at 30% 40%, oklch(58% 0.09 150 / 0.75) 0%, transparent 55%), radial-gradient(circle at 68% 68%, oklch(66% 0.07 160 / 0.6) 0%, transparent 55%); }
.wash-4 { background: radial-gradient(circle at 32% 32%, oklch(78% 0.13 95 / 0.75) 0%, transparent 55%), radial-gradient(circle at 68% 65%, oklch(70% 0.12 40 / 0.55) 0%, transparent 55%); }
.wash-5 { background: radial-gradient(circle at 35% 30%, oklch(65% 0.14 25 / 0.8) 0%, transparent 55%), radial-gradient(circle at 65% 70%, oklch(70% 0.1 60 / 0.55) 0%, transparent 55%); }
.wash-6 { background: radial-gradient(circle at 32% 35%, oklch(60% 0.1 210 / 0.8) 0%, transparent 55%), radial-gradient(circle at 68% 65%, oklch(68% 0.08 190 / 0.55) 0%, transparent 55%); }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--cream-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px oklch(30% 0.03 50 / 0.25);
  display: flex;
  flex-direction: column;
}
.product-card .paint-wash { aspect-ratio: 4/5; border-radius: 0; }
.product-info { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.product-info h3 { font-size: 20px; }
.product-price { font-size: 15px; color: var(--ink-soft); }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px;
}

/* ---------- About ---------- */
.about-section { display: flex; align-items: center; gap: 64px; }
.about-photo {
  width: 240px; height: 240px; border-radius: 50%; flex-shrink: 0; position: relative; overflow: hidden;
  background: oklch(90% 0.03 40);
}
.about-photo .placeholder-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 14px; color: oklch(35% 0.03 50 / 0.7); text-align: center; padding: 0 20px;
}
.about-copy { max-width: 560px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; display: block;
}
.about-copy h2 { font-size: 36px; margin-bottom: 16px; }
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- Holiday banner ---------- */
.holiday-banner {
  background: var(--sage); color: var(--cream-white);
  padding: 52px 32px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.holiday-banner h2 { font-size: 26px; }
.holiday-banner p { margin: 6px 0 0; font-size: 15px; color: oklch(94% 0.01 80 / 0.85); }
.holiday-banner .btn-outline { border-color: var(--cream-white); color: var(--cream-white); }
.holiday-banner .btn-outline:hover { background: var(--cream-white); color: var(--sage); }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; display: flex; flex-direction: column; align-items: center; }
.newsletter h2 { font-size: 30px; margin-bottom: 10px; }
.newsletter p { font-size: 16px; color: var(--ink-soft); max-width: 460px; margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  width: 280px; max-width: 70vw; padding: 15px 20px; border-radius: 999px; border: 1.5px solid var(--border);
  background: var(--cream-white); font-family: 'Karla', sans-serif; font-size: 15px; color: var(--ink-soft);
}

/* ---------- Photo band (full-width atmosphere image) ---------- */
.photo-band { height: 280px; overflow: hidden; padding: 0; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 780px) {
  .photo-band { height: 180px; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
footer .foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
footer .foot-links a { color: var(--ink-soft); font-size: 15px; }
.copyright { font-size: 14px; color: var(--muted); }

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-visual { width: 100%; max-width: none; }
  .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .about-section { flex-direction: column; text-align: center; }
  .about-copy { max-width: none; }
}
