/* Golden Hour Paws — brand palette & type per docs/brand-direction.md */
:root {
  --cream: #FAF6EF;
  --amber: #D9973B;
  --charcoal: #40362E;
  --sage: #A8B5A0;
  --pale-gold: #F3DCB2;
  --radius: 10px;
  --font-display: "Playfair Display", "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }

a { color: var(--amber); }

section {
  padding: 4rem 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--cream);
  box-shadow: 0 0 24px var(--pale-gold);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 36px var(--pale-gold);
  transform: translateY(-1px);
}

.link-quiet {
  display: inline-block;
  margin-left: 1.25rem;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--charcoal);
}

.brand-icon { width: 40px; height: 40px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.site-nav a {
  margin-left: 1.5rem;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--amber); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-sub {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius);
}

/* Transformations */
.pair-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pair { margin: 0; }

.pair-images {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.pair-images.placeholder {
  background: linear-gradient(160deg, var(--pale-gold), var(--cream) 70%);
  border: 1px solid var(--pale-gold);
}

.pair figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.honesty-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--sage);
  text-align: center;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  counter-reset: step;
  padding: 0;
}

.steps li { counter-increment: step; }

.steps li h3::before {
  content: counter(step);
  display: block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 50%;
  background: var(--pale-gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.reassurance {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 2rem;
}

.art-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: 0.5rem;
}

/* Products */
.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tier-row.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 44rem;
  margin: 0 auto;
}

.tier .btn { margin-top: 0.75rem; }

.tier {
  background: #fff9f0;
  border: 1px solid var(--pale-gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.tier .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0.25rem 0 0.75rem;
}

.tier .size {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--sage);
}

.more-link { text-align: center; margin-top: 1.5rem; }

/* Trust */
.trust {
  background: var(--pale-gold);
  border-radius: var(--radius);
  text-align: center;
}

.trust > p {
  max-width: 38rem;
  margin: 0 auto 1rem;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.reviews blockquote {
  margin: 0;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-size: 0.95rem;
}

.reviews cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--sage);
}

/* Gift */
.gift { text-align: center; }
.gift p { max-width: 38rem; margin: 0 auto; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--pale-gold);
  padding: 1rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 3rem 1.25rem;
  text-align: center;
}

.footer-brand .brand-icon { width: 48px; height: 48px; }

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  margin: 0.5rem 0 2rem;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  margin: 0 0.75rem;
  color: var(--charcoal);
}

.email-capture {
  max-width: 26rem;
  margin: 0 auto 2rem;
}

.email-capture label {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.email-capture p {
  font-size: 0.9rem;
  margin: 0.35rem 0 1rem;
}

.capture-row {
  display: flex;
  gap: 0.6rem;
}

.capture-row input {
  flex: 1;
  border: 1px solid var(--pale-gold);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff9f0;
  color: var(--charcoal);
}

.fineprint {
  font-size: 0.8rem;
  color: var(--sage);
}

/* Legal pages (terms, privacy) */
.legal {
  max-width: 46rem;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

/* Products page */
.products-intro {
  max-width: 38rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pale-gold);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.product-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
}

.product-card .price {
  font-weight: 600;
  margin: 0.25rem 0;
}

.product-card.coming-soon img { opacity: 0.55; filter: saturate(0.7); }

.soon-badge {
  display: inline-block;
  background: var(--pale-gold);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Order page */
.order-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.order-media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(64, 54, 46, 0.18);
  background: var(--charcoal);
}

.order-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.order-thumbs .thumb {
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.order-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Fullscreen image lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox[open] { display: flex; }

.lightbox::backdrop { background: rgba(24, 19, 15, 0.88); }

.lightbox img {
  max-width: min(92vw, 60rem);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: none;
  background: rgba(250, 246, 239, 0.12);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(250, 246, 239, 0.28); }

.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-nav.prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1rem; top: 50%; transform: translateY(-50%); }


.order-sub { color: var(--charcoal); opacity: 0.85; }

.size-options {
  border: none;
  margin: 1.5rem 0;
  padding: 0;
}

.size-options legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.size-options label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--pale-gold);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.size-options label:has(input:checked) {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px var(--pale-gold);
}

.size-options .size-name { flex: 1; }
.size-options .size-name em { font-style: normal; color: var(--amber); font-size: 0.85rem; }
.size-options .size-price { font-weight: 600; }

.btn-buy { width: 100%; text-align: center; }
.btn-buy:disabled { opacity: 0.6; cursor: wait; }

.checkout-note {
  font-size: 0.85rem;
  color: var(--sage);
  margin: 0.75rem 0 1rem;
}

.checkout-note.error { color: #a4442f; }

.order-hero .link-quiet { margin-left: 0; }


/* Mobile */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; }
  .pair-row, .steps, .tier-row, .tier-row.two, .reviews, .product-grid { grid-template-columns: 1fr; }
  .order-hero { grid-template-columns: 1fr; }
  .order-thumbs { grid-template-columns: repeat(3, 1fr); }
  .site-nav a { margin-left: 1rem; }
  section { padding: 3rem 1.25rem; }
}
