/* ===== Design tokens ===== */
:root {
  --ink: #1c1a17;
  --ink-soft: #4a463f;
  --muted: #8a847a;
  --cream: #faf7f2;
  --cream-2: #f2ede4;
  --line: #e6dfd3;
  --gold: #b08d57;
  --gold-dark: #977545;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(28, 26, 23, 0.10);
  --radius: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }

h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: 0.2px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); }
.section-lead { color: var(--ink-soft); max-width: 620px; margin: 18px auto 0; font-size: 1.05rem; }
.section-head { text-align: center; margin-bottom: 60px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-block { width: 100%; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: all 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(28,26,23,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.4px;
  transition: color 0.35s var(--ease);
}
.site-header.scrolled .brand-name { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
  transition: color 0.25s var(--ease);
}
.nav a:hover { color: #fff; }
.site-header.scrolled .nav a { color: var(--ink-soft); }
.site-header.scrolled .nav a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 22px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 999px;
}
.site-header.scrolled .nav-cta { border-color: var(--gold); color: var(--gold) !important; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all 0.3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("assets/images/gallery/paris-05.jpg") center/cover no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.45) 0%, rgba(20,18,15,0.35) 45%, rgba(20,18,15,0.65) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 60px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #f0e4d2;
  margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700; margin-bottom: 22px; }
.hero-text { font-size: 1.15rem; font-weight: 300; max-width: 560px; margin-bottom: 38px; color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.7); border-radius: 14px;
  position: relative;
}
.scroll-cue span::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 20px; } }

/* ===== About ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.about-copy .section-title { margin-bottom: 24px; }
.about-points { margin-top: 26px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.about-points span { color: var(--gold); }

/* ===== Experiences ===== */
.experiences { background: var(--cream-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28,26,23,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media { overflow: hidden; aspect-ratio: 3/2; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px 26px 30px; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 16px; }
.badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(176,141,87,0.12);
  padding: 6px 14px;
  border-radius: 999px;
}
.experiences-note { text-align: center; margin-top: 60px; }
.experiences-note p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1.05rem; }

/* ===== Gallery ===== */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery-grid figure { overflow: hidden; border-radius: 10px; margin: 0; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ===== Contact ===== */
.contact { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-copy p { color: var(--ink-soft); margin-bottom: 24px; }
.contact-copy .section-title { margin-bottom: 22px; }
.contact-details { display: grid; gap: 16px; margin-top: 10px; }
.contact-details li { color: var(--ink); font-weight: 500; }
.c-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-form { background: var(--white); padding: 38px; border-radius: var(--radius); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; }
.form-note { margin-top: 16px; color: var(--gold-dark); font-weight: 500; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cfc8bd; padding: 50px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: "Cormorant Garamond", serif; font-size: 1.3rem; color: #fff; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.9rem; color: #cfc8bd; transition: color 0.25s var(--ease); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.82rem; color: #8f887c; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; }
  .cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 1; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--cream);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s var(--ease);
    z-index: 60;
  }
  .nav.open { right: 0; }
  .nav a { color: var(--ink-soft) !important; font-size: 1.1rem; }
  .nav-cta { border-color: var(--gold); color: var(--gold) !important; }
  .nav-toggle { display: flex; z-index: 61; }
  .nav-toggle.active span { background: var(--ink) !important; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 520px) {
  .brand-name { font-size: 1.1rem; }
  .contact-form { padding: 26px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
