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

:root {
  --cream: #F5F0E8;
  --deep-espresso: #1A1208;
  --warm-black: #0D0B08;
  --sand: #C9B99A;
  --gold: #B8935A;
  --gold-light: #D4A96A;
  --text-muted: #7A6E60;
  --text-light: #A89C8C;
  --section-bg: #F9F5EE;
  --card-bg: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--deep-espresso);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  transition: background 0.4s ease, padding 0.3s ease;
}
nav.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(184,147,90,0.2);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--deep-espresso);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-espresso);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-reserve {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--deep-espresso);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-reserve:hover {
  background: var(--gold);
  color: var(--cream);
}

/* HERO */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-title .line2 { padding-left: 2.5rem; }
.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.btn-primary {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--deep-espresso);
  padding: 1rem 2.2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-espresso);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-ghost .arrow {
  width: 30px;
  height: 1px;
  background: var(--deep-espresso);
  position: relative;
  transition: width 0.3s;
}
.btn-ghost .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}
.btn-ghost:hover .arrow { width: 50px; }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-wrapper {
  position: absolute;
  inset: 3rem;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  background: url('soleil-image/P1082867.JPG') center 30% / cover no-repeat;
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,7,3,0.2) 100%);
}
.hero-img-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,14,8,0.35) 0%, transparent 55%);
}

.hero-float {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: var(--deep-espresso);
  color: var(--cream);
  padding: 1.5rem;
  width: 160px;
  z-index: 3;
}
.hero-float .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.hero-float .label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.4rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

/* SECTION base */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  max-width: 80px;
}

/* CONCEPT */
.concept { background: var(--warm-black); color: var(--cream); }
.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.concept .section-label { color: var(--gold); }
.concept-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.concept-title em { font-style: italic; color: var(--gold-light); }
.concept-text {
  color: rgba(245,240,232,0.65);
  line-height: 2;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.concept-visual {
  position: relative;
  height: 500px;
}
.concept-img-main {
  position: absolute;
  left: 0; top: 0;
  width: 75%;
  height: 80%;
  background: url('soleil-image/P1082866.JPG') center / cover no-repeat;
  overflow: hidden;
}
.concept-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,10,4,0.52);
}
.concept-img-secondary {
  position: absolute;
  right: 0; bottom: 0;
  width: 50%;
  height: 45%;
  background: url('soleil-image/P1082975.JPG') center / cover no-repeat;
  border: 3px solid var(--warm-black);
  overflow: hidden;
}
.concept-accent {
  position: absolute;
  right: 55%; bottom: 48%;
  background: var(--gold);
  color: var(--deep-espresso);
  padding: 0.8rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.concept-img-main .img-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}
.concept-img-main .img-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(184,147,90,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-img-main .img-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.concept-img-main .img-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(184,147,90,0.7);
}

/* MENU */
.menu { background: var(--section-bg); }
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
}
.menu-title em { font-style: italic; color: var(--gold); }
.menu-tabs {
  display: flex;
  border: 1px solid rgba(184,147,90,0.3);
}
.menu-tab {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: none;
  transition: all 0.3s;
  border-right: 1px solid rgba(184,147,90,0.3);
}
.menu-tab:last-child { border-right: none; }
.menu-tab.active {
  background: var(--deep-espresso);
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,147,90,0.15);
}
.menu-item {
  background: var(--section-bg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s;
}
.menu-item:hover { background: var(--card-bg); }
.menu-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.menu-item:hover::before { width: 100%; }
.menu-item-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.6;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.menu-item:hover .menu-item-name { color: var(--gold); }
.menu-item-name em { font-style: italic; }
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--deep-espresso);
}
.menu-item-tag {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cream);
  padding: 0.25rem 0.6rem;
}

/* EXPERIENCE */
.experience { background: var(--cream); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.exp-card {
  padding: 3rem 2.5rem;
  background: var(--section-bg);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.exp-card:hover {
  border-color: rgba(184,147,90,0.3);
  background: var(--card-bg);
}
.exp-card:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.exp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184,147,90,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.exp-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
}
.exp-visual {
  height: 200px;
  background: url('soleil-image/P1021706.JPG') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.exp-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184,147,90,0.2) 0%, transparent 70%);
}

/* INFO */
.info { background: var(--deep-espresso); color: var(--cream); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(184,147,90,0.2);
  margin-top: 4rem;
}
.info-block {
  padding: 3rem;
  border-right: 1px solid rgba(184,147,90,0.2);
}
.info-block:last-child { border-right: none; }
.info-block .section-label { color: var(--gold); }
.info-block .info-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0.4rem;
}
.info-block .info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.info-block .info-note {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
}

/* GALLERY */
.gallery { background: var(--cream); overflow: hidden; }
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  margin-bottom: 3rem;
}
.gallery-title em { font-style: italic; color: var(--gold); }
.gallery-strip {
  display: flex;
  gap: 2px;
  overflow: hidden;
}
.gallery-cell {
  flex-shrink: 0;
  height: 360px;
  flex: 1;
  transition: flex 0.6s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: none;
  isolation: isolate;
}
.gallery-cell:hover { flex: 2.5; }
.gallery-cell .g-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-cell:hover .g-bg { transform: scale(1.05); }
.gallery-cell .g-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,7,3,0.45);
  transition: background 0.5s ease;
  z-index: 1;
}
.gallery-cell:hover .g-bg::before {
  background: rgba(10,7,3,0.18);
}
.g-bg-1 { background-image: url('soleil-image/P1021706.JPG'); }
.g-bg-2 { background-image: url('soleil-image/P1082868.JPG'); }
.g-bg-3 { background-image: url('soleil-image/P1021707.JPG'); }
.g-bg-4 { background-image: url('soleil-image/P1082975.JPG'); background-position: center 40%; }
.g-bg-5 { background-image: url('soleil-image/P1082867.JPG'); }
.gallery-cell .g-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0);
  transition: color 0.4s;
  z-index: 3;
}
.gallery-cell:hover .g-label { color: rgba(245,240,232,0.85); }
.gallery-cell .g-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(184,147,90,0.6);
  z-index: 3;
}
.gallery-cell .g-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  transition: opacity 0.4s;
  z-index: 2;
}
.gallery-cell:hover .g-decor { opacity: 0.5; }
.g-decor svg { width: 60px; height: 60px; stroke: var(--sand); fill: none; stroke-width: 0.5; }

/* RESERVATION */
.reservation {
  background: var(--warm-black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.reservation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,90,0.08);
  pointer-events: none;
}
.reservation::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,90,0.06);
  pointer-events: none;
}
.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.reservation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.reservation-title em { font-style: italic; color: var(--gold); }
.reservation-text {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.9;
  font-weight: 300;
}
.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}
.form-field input,
.form-field select {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(184,147,90,0.2);
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-field input::placeholder { color: rgba(245,240,232,0.25); }
.form-field input:focus,
.form-field select:focus { border-color: rgba(184,147,90,0.6); }
.form-field select option { background: var(--warm-black); }
.btn-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.1rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit:hover { color: var(--deep-espresso); }
.btn-submit span { position: relative; z-index: 1; }

/* FOOTER */
footer {
  background: var(--warm-black);
  border-top: 1px solid rgba(184,147,90,0.15);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.05em;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .concept-inner,
  .reservation-inner,
  .info-grid,
  .menu-grid { grid-template-columns: 1fr; }
  .exp-card:first-child { grid-column: span 1; grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  section { padding: 4rem 0; }
  .gallery-strip { gap: 1px; }
  .gallery-cell { height: 200px; }
  .menu-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}
