/* ─────────────────────────────────────────
   SLOWART ISORT — Hôtel de Luxe
   Design: Warm luxury · Organic · Editorial
───────────────────────────────────────── */

:root {
  --cream:    #F5EFE4;
  --parchment:#EDE3D0;
  --gold:     #C49A3C;
  --gold-light:#D4AF6B;
  --brown:    #3D2B1F;
  --brown-mid:#6B4C35;
  --dark:     #1A1208;
  --white:    #FDFAF5;
  --text:     #2C1F0F;
  --text-muted:#7A6450;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--brown); border-color: var(--brown); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.centered { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 8, 0.65) 0%,
    rgba(26, 18, 8, 0.25) 70%,
    rgba(26, 18, 8, 0) 100%
  );
}

.navbar.scrolled {
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 2.5rem;
  box-shadow: 0 1px 0 rgba(196,154,60,0.2), 0 6px 20px rgba(0,0,0,0.15);
}

.nav-logo .logo-img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.navbar.scrolled .nav-links a {
  text-shadow: none;
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  letter-spacing: 0.1em;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--dark); }

.nav-toggle { display: none; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,18,8,0.65) 0%,
    rgba(61,43,31,0.45) 50%,
    rgba(26,18,8,0.7) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  animation: fadeUp 1.2s ease both;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.7);
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(253,250,245,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(253,250,245,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.7); opacity: 1; }
}

/* ── INTRO ── */
.intro {
  padding: 7rem 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.intro-text .btn { margin-top: 1rem; }

.intro-image {
  position: relative;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--brown);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  text-align: center;
}
.intro-badge span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.intro-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ── SERVICES ── */
.services {
  padding: 7rem 0;
  background: var(--cream);
}
.services h2 { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: block;
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border-radius: var(--radius);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,43,31,0.12); }

.card-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .card-image img { transform: scale(1.05); }

.card-body {
  padding: 1.5rem;
}
.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.card-body h3 { font-size: 1.4rem; }
.card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.card-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  display: inline-block;
  transition: transform 0.3s;
}
.service-card:hover .card-arrow { transform: translateX(5px); }

/* CTA card */
.service-card--cta {
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-cta-inner {
  text-align: center;
  padding: 2rem;
  color: var(--white);
}
.card-cta-inner .section-label { color: var(--gold-light); }
.card-cta-inner h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.card-cta-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.service-card--cta:hover { transform: none; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
}
.quote-band blockquote {
  max-width: 750px;
  margin: 0 auto;
}
.quote-band em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--parchment);
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.quote-band cite {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── FOOTER ── */
.footer {
  background: var(--brown);
  color: var(--parchment);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(237,227,208,0.6); font-weight: 300; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(237,227,208,0.7); transition: color 0.3s; font-weight: 300; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p { font-size: 0.85rem; color: rgba(237,227,208,0.7); font-weight: 300; margin-bottom: 1rem; }
.footer-contact strong { color: var(--parchment); }
.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold-light);
  transition: color 0.3s;
}
.footer-phone:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(237,227,208,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(237,227,208,0.4);
  letter-spacing: 0.05em;
}

/* ────────────────────────────
   PAGE INTÉRIEURE — Layout commun
──────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.85) 0%, rgba(26,18,8,0.3) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  color: var(--white);
  padding: 0 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .section-label { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 5rem); }

.page-content {
  padding: 6rem 0;
  background: var(--white);
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.page-text h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.page-text p { color: var(--text-muted); font-weight: 300; margin-bottom: 1.2rem; }

.feature-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.page-images {
  display: grid;
  gap: 1rem;
}
.page-images img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.page-images .img-main { aspect-ratio: 4/3; }
.page-images .img-sub { aspect-ratio: 16/9; }

/* ── GALLERY ── */
.gallery {
  padding: 5rem 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-muted); font-weight: 300; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-text a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brown);
}

.contact-form-wrapper {
  background: var(--parchment);
  padding: 2.5rem;
}
.contact-form-wrapper h3 { margin-bottom: 1.5rem; }
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid rgba(61,43,31,0.15);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 1.5rem 2.5rem;
  background: var(--cream);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .page-grid, .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 5px;
  }
  .nav-toggle span {
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    display: block;
  }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

  .intro-grid, .page-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-badge { position: static; margin-top: 1rem; display: inline-block; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
