:root {
  --bg: #dec8b5;
  --text: #6E5A4E;
  --secondary-text: #8A8682;
  --light: #f5efe6;
  --accent: #d3927c;
  --accent-2: #e79f81;
  --sage: #8FA89A;
  --gray: #8A8682;
  --border: #d3927c;
  --gold: #CBBFA3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(92%, 1100px);
  margin: 0 auto;
}

.narrow {
  width: min(92%, 600px);
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: var(--light);
  box-shadow: 0 4px 20px rgba(110, 90, 78, 0.08);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 60px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 1.4rem;
}

.nav-links a,
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
}

.nav-links a:hover,
.mobile-menu a:hover,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
  color: var(--accent);
}

.burger {
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 1px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  background: var(--light);
  padding: 0 4vw 1rem;
}

.mobile-menu.open {
  display: grid;
  gap: 0.8rem;
}

.mobile-menu a {
  width: max-content;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(110, 90, 78, 0.4), rgba(110, 90, 78, 0.4)), url('images/Tournesols.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero .container {
  padding-left: 8vw;
}

.brand {
  margin-bottom: 1rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: #f5efe6;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.tagline {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #f5efe6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.hero-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #8A8682;
  margin-top: -1rem;
  margin-bottom: 2.5rem;
}

.btn {
  margin-top: 2.2rem;
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent);
  color: var(--light);
}

.section {
  padding: 80px 0;
  background: var(--bg);
}

.section.light {
  background: var(--light);
}

#espace {
  background-image: linear-gradient(rgba(245, 239, 230, 0.75), rgba(245, 239, 230, 0.75)), url('images/pexels-ahmetyuksek-36159308.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#soin {
  background-image: linear-gradient(rgba(214, 198, 184, 0.65), rgba(214, 198, 184, 0.65)), url('images/pexels-maciej-cisowski-174297128-34623597.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#pour-qui {
  background-image: linear-gradient(rgba(214, 198, 184, 0.7), rgba(214, 198, 184, 0.7)), url('images/pexels-anatoleos-34703257.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section h2 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section p {
  max-width: 600px;
}

.eugenie-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}

.eugenie-photo {
  width: 45%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.eugenie-text {
  width: 55%;
  max-width: 600px;
}

.prices {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.prices li {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

.prices strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
}

.contact-links {
  margin-top: 1.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-links a {
  margin-top: 0;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: var(--accent);
  color: var(--light);
}

footer {
  background: #6E5A4E;
  color: #f5efe6;
}

@media (min-width: 900px) {
  .burger,
  .mobile-menu {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 3rem;
  }

  #espace,
  #soin,
  #pour-qui {
    background-attachment: scroll;
  }

  .eugenie-layout {
    flex-direction: column;
  }

  .eugenie-photo {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
  }

  .eugenie-text {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 120px 0;
  }

  .prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
