/* ============================================================
   SAKURA MATSUMOTO — sakura.lesalondore.com
   Quentin script labels · Playfair Display headings · Montserrat nav
   Dark #14161A · Gold #C9A96E
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Montserrat:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');

/* ---- Quentin script via @font-face if available, fallback to Dancing Script ---- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap');

:root {
  --bg:          #14161A;
  --bg-warm:     #1A1B1F;
  --surface:     #1E2026;
  --gold:        #C9A96E;
  --gold-light:  #E2C99A;
  --gold-dim:    rgba(201, 169, 110, 0.35);
  --white:       #F5F0E8;
  --text:        #D4CFC6;
  --text-dim:    #8A857C;
  --border:      rgba(201, 169, 110, 0.18);

  /* Typography */
  --font-heading: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-label:   'Dancing Script', 'Brush Script MT', cursive; /* Quentin fallback */
  --font-nav:     'Montserrat', sans-serif;
  --font-body:    'EB Garamond', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 19px;        /* +3px from base 16 */
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 76px;
  background: rgba(20, 22, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo-link { text-decoration: none; }

.nav-logo-circle {
  width: 48px;
  height: 48px;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo-circle:hover { opacity: 0.75; }

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

.nav-links a {
  font-family: var(--font-nav);
  font-size: 11px;        /* small but intentional — +0 here, +3 elsewhere */
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 9px 22px !important;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-gallery {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: opacity 1.4s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 22, 26, 0.72) 0%,
    rgba(20, 22, 26, 0.38) 55%,
    rgba(20, 22, 26, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
}

.hero-name-jp {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.25em;
  opacity: 0.75;
}

.hero-name-en {
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 42px;
  opacity: 0.85;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 17px 40px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.hero-cta:hover {
  background: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-nav);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   SECTION LABEL (Quentin script / gold italic)
   ============================================================ */
.section-label {
  font-family: var(--font-label);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}

/* ============================================================
   SECTION HEADING (Playfair / Times New Roman · huge)
   ============================================================ */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 48px;
  background: var(--bg);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.about-portrait-wrap {
  position: relative;
}

.about-portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 1;
}

.about-portrait-accent {
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  border: 1px solid var(--gold-dim);
  z-index: 0;
}

.about-bio p {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.8;
}
.about-bio a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
}
.about-bio a:hover { border-color: var(--gold); }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat {}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work {
  padding: 120px 48px;
  background: var(--bg-warm);
}

.work-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}

.work-subtitle {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
}

.work-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-item:hover img { transform: scale(1.05); }

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,22,26,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.work-item:hover .work-item-overlay { opacity: 1; }

.work-footer {
  max-width: 1200px;
  margin: 60px auto 0;
  text-align: center;
}

.work-ig {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.work-ig:hover { border-color: var(--gold); }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 140px 48px;
  background: var(--bg);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.philosophy-quote-block {
  border-left: 2px solid var(--gold);
  padding-left: 40px;
  padding-top: 10px;
}

.philosophy-quote-block blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 22px;
}

.philosophy-quote-block cite {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.pillar {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.pillar:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.pillar h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 13px;
}

.pillar p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.75;
}

/* ============================================================
   PETALS
   ============================================================ */
.petals {
  position: relative;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  width: 8px;
  height: 12px;
  background: var(--gold-dim);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: petalFall linear infinite;
  opacity: 0;
}

@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(140px) rotate(360deg); opacity: 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 48px;
  background: var(--bg-warm);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
  text-align: left;
}

.service-card {
  background: var(--surface);
  padding: 44px 36px;
  border-top: 2px solid var(--border);
  transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--gold); }

.service-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 48px;
  background: var(--bg);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-note {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.contact-btn {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 17px 36px;
  text-decoration: none;
  transition: background 0.25s;
}
.contact-btn:hover { background: var(--gold-light); }

.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.contact-social:hover { border-color: var(--gold); }

.contact-portrait {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 52px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-jp {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--gold);
  font-style: italic;
  opacity: 0.7;
}

.footer-en {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-copy a:hover { color: var(--gold-light); }

.footer-legal {
  font-size: 13px;
  color: var(--text-dim);
  opacity: 0.5;
}

/* ============================================================
   BLOG (shared styles for blog.css override)
   ============================================================ */
.blog-label { font-family: var(--font-label); font-size: 22px; color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 76px 0 0;
    background: var(--bg);
    padding: 40px 32px;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 14px; }
  .nav-toggle { display: flex; }
  .about-inner,
  .philosophy-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .about, .work, .philosophy, .services, .contact { padding: 80px 24px; }
  .about-portrait-wrap { max-width: 400px; margin: 0 auto; }
  .contact-portrait { max-width: 380px; margin: 0 auto; }
}
