/* The Fur Studio — implemented from "The Fur Studio.dc.html" design */

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('/fonts/Nunito-VariableFont_wght.woff2') format('woff2');
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: #FBF9F6;
  color: #2b2621;
}

a { color: #a8172a; text-decoration: none; }
a:hover { color: #c8354a; }
::selection { background: #a8172a; color: #fff; }

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

.gallery, .visit, .pricing { scroll-margin-top: 74px; }

/* ---------- Reveal on scroll ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero h1 { animation: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(251, 249, 246, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 38, 33, 0.08);
}

.brand { display: flex; align-items: center; transition: opacity 0.3s ease; }
.brand:hover { opacity: 0.75; }
.brand img { height: 38px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.site-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 38, 33, 0.72);
  transition: color 0.25s ease;
}
.site-nav a:hover { color: #a8172a; }

.site-nav a.btn-pill {
  padding: 10px 22px;
  border-radius: 999px;
  background: #a8172a;
  color: #fff;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-nav a.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 23, 42, 0.3);
  background: #8f1424;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-layer { position: absolute; inset: 0; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 249, 246, 0.92) 0%, rgba(251, 249, 246, 0.55) 32%, rgba(251, 249, 246, 0.05) 55%),
    linear-gradient(0deg, rgba(251, 249, 246, 0.9) 0%, rgba(251, 249, 246, 0) 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 32px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8172a;
}

.hero-eyebrow {
  color: #8f7f6f;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 820px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.hero h1 .accent { color: #a8172a; }
.hero h1 .hero-nowrap { white-space: nowrap; }

/* ---------- Intro ---------- */
.intro {
  padding: 80px 40px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5a5045;
}
.intro p .accent-text {
  color: #a8172a;
  font-weight: 700;
}

/* ---------- Info strip ---------- */
.info-strip {
  border-top: 1px solid rgba(43, 38, 33, 0.08);
  border-bottom: 1px solid rgba(43, 38, 33, 0.08);
  margin-top: 40px;
}
.info-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  color: #5a5045;
}
.info-item span { color: #a8172a; font-weight: 700; }
.info-item-link { transition: color 0.25s ease; }
.info-item-link:hover { color: #a8172a; }

/* ---------- Legacy strip ---------- */
.legacy-strip {
  padding: 36px 40px 0;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.legacy-strip div {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8172a;
}

/* ---------- Galleries ---------- */
.gallery {
  padding: 100px 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
  border-bottom: 1px solid rgba(43, 38, 33, 0.1);
  padding-bottom: 28px;
}
.gallery-head .eyebrow { margin-bottom: 10px; }
.gallery-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #2b2621;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(43, 38, 33, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 38, 33, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(43, 38, 33, 0.12);
}

.card .card-media { width: 100%; aspect-ratio: 3 / 4; flex: none; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder shown when a slot photo hasn't been added yet */
.card-media.is-empty {
  position: relative;
  background: linear-gradient(150deg, #F3ECE3 0%, #E9DFD2 100%);
}
.card-media.is-empty::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8f7f6f;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 100px 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 44px;
}
.pricing-banner img { width: 100%; height: 100%; object-fit: cover; max-height: 320px; }

.pricing-head { text-align: center; margin-bottom: 44px; }
.pricing-head .eyebrow { margin-bottom: 10px; }
.pricing-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: #2b2621;
}
.pricing-head p { font-size: 1rem; font-weight: 300; color: #5a5045; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(43, 38, 33, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 38, 33, 0.05);
}

.plan-name {
  background: #3a2a1e;
  color: #f3ece3;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.plan-lines {
  flex: 1 1 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: #5a5045;
  line-height: 1.4;
}
.plan-line span:last-child { font-weight: 700; color: #2b2621; white-space: nowrap; }

.plan-price {
  flex: none;
  background: #3a2a1e;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.plan-regular { font-size: 0.8rem; color: rgba(243, 236, 227, 0.55); text-decoration: line-through; }
.plan-sale { font-size: 1.9rem; font-weight: 800; color: #d9a441; }
.plan-save { font-size: 0.75rem; color: rgba(243, 236, 227, 0.75); }

.pricing-note {
  margin-top: 32px;
  padding: 20px 28px;
  border: 1px solid rgba(43, 38, 33, 0.1);
  border-radius: 16px;
  text-align: center;
  font-size: 0.95rem;
  color: #5a5045;
}

.pricing-gift {
  margin-top: 40px;
  background: #F3ECE3;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.pricing-gift-title { font-size: 1.4rem; font-weight: 800; color: #a8172a; }
.pricing-gift-desc { font-size: 0.95rem; color: #5a5045; }

.btn-pill-solid {
  padding: 14px 28px;
  border-radius: 999px;
  background: #a8172a;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-pill-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(168, 23, 42, 0.3); color: #fff; }

/* ---------- Visit / footer ---------- */
.visit { margin-top: 60px; position: relative; overflow: hidden; }

.visit-panel {
  background: #F3ECE3;
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 32px 32px 0 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.visit-grid .eyebrow { margin-bottom: 16px; }
.visit-grid h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 20px;
  color: #2b2621;
}
.visit-grid p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5a5045;
  margin: 0 0 28px;
  max-width: 460px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #2b2621;
}
.visit-details .muted { color: #8a8074; }

.visit-photo {
  width: 100%;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: auto;
}

.site-footer {
  background: #FBF9F6;
  padding: 28px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #8a8074;
  border-top: 1px solid rgba(43, 38, 33, 0.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  .site-nav { gap: 16px; }
  .hero { min-height: 72vh; }
  .hero-content { padding: 0 20px 24px; }
  .intro { padding: 64px 20px 32px; }
  .info-strip-inner { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery { padding: 72px 20px 32px; }
  .pricing { padding: 72px 20px 32px; }
  .pricing-gift { padding: 24px 20px; }
  .visit-panel { padding: 56px 20px; }
  .site-footer { padding: 24px 20px; }
}
