@import url('https://fonts.googleapis.com/css2?family=Birthstone+Bounce:wght@400;500&family=Lexend:wght@200;300;400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --silver: #efefef;
  --warm-white: #FDFAF7;
  --berry: #873260;
  --berry-dark: #5C0F27;
  --ink: #4A4A4A;
  --script: 'Birthstone Bounce', cursive;
  --main: 'Lexend', sans-serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #fafafa;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: var(--silver);
  backdrop-filter: blur(10px);
  border-bottom: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-height: 48px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--berry-dark);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--berry-dark); }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ── */
.hero {
  background: var(--silver);
      padding: 5rem 3rem 4rem;
      border-bottom: 0px solid #e0e0e0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-headline {
  font-family: var(--main);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-headline em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--berry);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  max-width: 380px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--berry);
  color: white;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--berry-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--berry); }

.btn-ghost::after {
  content: '→';
  transition: transform 0.2s;
}

.btn-ghost:hover::after { transform: translateX(3px); }

/* Hero right — negative space */
.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right-accent {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 21, 53, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── SECTION: THREE PANELS ── */
.panels-section {
  padding: 3.5rem 3rem 4rem;
  background: #fafafa;
  position: relative;
}

.panels-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--main);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.section-title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--berry);
}

.panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.panel-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--silver);
}

.panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,74,74,0.95) 0%, rgba(74,74,74,0.5) 35%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}

.panel-card:hover .panel-overlay {
  background: linear-gradient(to top, rgba(74,74,74,0.97) 0%, rgba(74,74,74,0.6) 55%, rgba(74,74,74,0.15) 85%);
}

.panel-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.panel-name {
  font-family: var(--main);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.panel-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;
  opacity: 0;
}

.panel-card:hover .panel-desc {
  max-height: 80px;
  opacity: 1;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s, gap 0.2s;
}

.panel-link:hover { border-color: white; gap: 0.65rem; }

/* ── SOCIAL PROOF ── */
.proof-section {
  padding: 5rem 3rem;
  background: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  border-top: 0px solid var(--ink);
  border-bottom: 0px solid var(--ink);
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-family: var(--main);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--berry);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.proof-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--ink);
}

.proof-quote {
  max-width: 380px;
  text-align: center;
}

.proof-quote blockquote {
  font-family: var(--main);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.proof-quote cite {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-style: normal;
}

/* ── FEATURED PROJECT ── */
.featured-section {
  padding: 6rem 3rem;
  background: var(--cream);
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.featured-image-wrap {
  position: relative;
}

.featured-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.featured-image-note {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
  box-shadow: 0 4px 20px rgba(74,55,40,0.1);
}

.featured-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1rem;
  display: block;
}

.featured-title {
  font-family: var(--main);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.featured-title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--berry);
}

.featured-body {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 2rem;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 6rem 3rem;
  background: var(--berry);
  text-align: center;
}

.cta-handwrite {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  display: block;
}

.cta-headline {
  font-family: var(--main);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-headline em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

.cta-sub {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.btn-light {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--berry);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}

.btn-light:hover {
  background: var(--silver);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  padding: 1.75rem 3rem;
  background: #fafafa;
  border-top: 1px solid var(--silver);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
   @media (max-width: 900px) {
     nav { padding: 1rem 1.25rem; }
     nav-links { gap: 1rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3.5rem 1.5rem 3rem; }
  .panels-grid { grid-template-columns: 1fr; }
  .proof-section { gap: 2.5rem; }
  .proof-divider { display: none; }
  .featured-inner { grid-template-columns: 1fr; gap: 3rem; }
  .featured-image-note { bottom: -1rem; right: 0.5rem; }
  .panels-section, .featured-section, .cta-section { padding: 4rem 1.5rem; }
  .footer { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}