@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&family=Playfair+Display:wght@600;700;800&display=swap');

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Pastel palette */
  --cream:       #faf8f4;
  --warm-white:  #fff9f5;
  --blush:       #f7e8e8;
  --lavender:    #e8e4f7;
  --sky:         #e4f1f7;
  --mint:        #e4f7f1;
  --peach:       #f7ede4;

  --accent-rose:    #d4808a;
  --accent-violet:  #8b7ec8;
  --accent-sky:     #6baacc;
  --accent-sage:    #7bbda0;
  --accent-peach:   #d4956a;

  --text-dark:   #2d2a26;
  --text-mid:    #6b6460;
  --text-light:  #9e9893;

  --border:      rgba(45,42,38,0.08);
  --shadow:      0 4px 32px rgba(45,42,38,0.07);
  --shadow-md:   0 8px 48px rgba(45,42,38,0.10);

  --radius-sm:   14px;
  --radius-md:   24px;
  --radius-lg:   40px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== SUBTLE BACKGROUND BLOBS ========== */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.blob-1 { width: 500px; height: 500px; background: #f0d7dc; top: -100px; left: -100px; animation: driftA 18s ease-in-out infinite; }
.blob-2 { width: 420px; height: 420px; background: #dcd7f0; top: 30%; right: -100px; animation: driftB 22s ease-in-out infinite; }
.blob-3 { width: 380px; height: 380px; background: #d7edf0; bottom: 10%; left: 20%; animation: driftA 20s ease-in-out 3s infinite reverse; }
.blob-4 { width: 280px; height: 280px; background: #f0ead7; top: 60%; right: 25%; animation: driftB 16s ease-in-out 5s infinite; }

@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-35px, 30px) scale(1.04); }
  66%       { transform: translate(20px, -25px) scale(0.98); }
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

.footer-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  opacity: 0.9;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-dark);
  background: rgba(45,42,38,0.05);
}

.nav-links .nav-contact {
  background: var(--text-dark);
  color: var(--cream) !important;
  border-radius: 8px;
  padding: 8px 18px !important;
}

.nav-links .nav-contact:hover {
  background: #3d3a36 !important;
  color: var(--cream) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 32px 80px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  letter-spacing: 0.3px;
}

.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--accent-sage);
  border-radius: 50%;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-violet);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  max-width: 480px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-dark);
  color: var(--cream);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-dark:hover {
  background: #3d3a36;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--text-dark);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========== STATS ========== */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ========== ABOUT / STUDIO SECTION ========== */
.studio-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.studio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.studio-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.studio-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.studio-title em { font-style: italic; color: var(--accent-rose); }

.studio-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}

.pillar:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.pillar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pillar-icon.rose     { background: var(--blush); }
.pillar-icon.lavender { background: var(--lavender); }
.pillar-icon.sky      { background: var(--sky); }

.pillar-text h4 {
  font-weight: 600;
  font-size: 0.94rem;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.pillar-text p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========== STUDIO VISUAL ========== */
.studio-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 360px;
}

.vis-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vis-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.vis-card-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }

.vis-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.vis-card-sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

.vis-card.tall { grid-row: span 1; }

.vis-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  border-color: transparent;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.vis-card-featured .vis-card-icon { margin-bottom: 0; font-size: 2.2rem; }

.vis-card-featured .vis-card-title { font-size: 1.05rem; }

/* ========== VALUES SECTION ========== */
.values-section {
  padding: 0 0 120px;
  position: relative;
  z-index: 1;
}

.values-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text-dark);
}

.section-title em { font-style: italic; color: var(--accent-violet); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.v-rose     { background: var(--blush); }
.v-lavender { background: var(--lavender); }
.v-sky      { background: var(--sky); }
.v-mint     { background: var(--mint); }
.v-peach    { background: var(--peach); }

.value-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: white;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-left .section-title { text-align: left; margin-bottom: 12px; }

.contact-left .contact-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow); background: white; }

.cc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cc-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.cc-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ========== FOOTER ========== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 32px 36px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo .logo-name {
  color: rgba(255,255,255,0.85);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-links-row {
  display: flex;
  gap: 24px;
}

.footer-links-row a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links-row a:hover { color: rgba(255,255,255,0.85); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(45,42,38,0.2); border-radius: 3px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .studio-inner { grid-template-columns: 1fr; gap: 52px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { flex-direction: column; }
  .contact-left .section-title { text-align: center; }
  .contact-left .contact-sub { max-width: 100%; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 8px; width: 100%; }
  .hamburger { display: flex; }
  .stat-item { padding: 20px 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links-row { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; border-radius: var(--radius-sm); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
