:root {
  --ivory: #faf8f4;
  --white: #ffffff;
  --pink: #e8c7cf;
  --pink-deep: #c993a2;
  --beige: #dccbbe;
  --beige-light: #f0e7e0;
  --gray: #8a817c;
  --gray-dark: #3f3a37;
  --silver: #bfc3c7;
  --gold: #c8a96b;
  --gold-dark: #a98d57;
  --border: rgba(63,58,55,.12);
  --shadow: 0 22px 55px rgba(79, 64, 57, .10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--gray-dark);
  background: var(--ivory);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.eyebrow.light {
  color: #f4e5c4;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  letter-spacing: -.025em;
}

h3 {
  font-size: 2rem;
}

p {
  color: var(--gray);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,244,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
}

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

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
}

.main-nav > a:not(.btn) {
  position: relative;
}

.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .2s ease;
}

.main-nav > a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--gray-dark);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  transition: .22s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: 0 20px;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-dark);
  border-color: var(--gray-dark);
}

.btn-ghost:hover {
  background: var(--gray-dark);
  color: #fff;
  border-color: var(--gray-dark);
}

.hero {
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 15% 10%, rgba(232,199,207,.30), transparent 32%),
    radial-gradient(circle at 92% 25%, rgba(200,169,107,.10), transparent 23%),
    var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  min-height: 680px;
}

.hero-copy .lead {
  max-width: 600px;
  margin-top: 26px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  color: var(--gray);
  font-size: .85rem;
  letter-spacing: .06em;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-visual {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: 48px 48px 14px 48px;
  box-shadow: var(--shadow);
}

.image-main {
  height: 640px;
}

.image-main img {
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: -26px;
  bottom: 42px;
  width: 190px;
  padding: 22px 24px;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.floating-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold-dark);
}

.floating-label {
  display: block;
  margin-top: 6px;
  color: var(--gray);
  font-size: .78rem;
  line-height: 1.4;
}

.intro-strip {
  padding: 28px 0;
  background: var(--beige-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intro-strip-grid > div {
  padding: 14px 28px;
  border-right: 1px solid var(--border);
}

.intro-strip-grid > div:last-child {
  border-right: 0;
}

.strip-number {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: .75rem;
  letter-spacing: .12em;
}

.intro-strip p {
  font-size: .9rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading p:last-child {
  margin-top: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-card {
  grid-column: span 2;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(78,60,55,.05);
}

.service-card-offset {
  grid-column: 2 / span 2;
}

.service-card img {
  height: 270px;
  object-fit: cover;
}

.service-content {
  padding: 26px;
}

.service-content p {
  margin-top: 8px;
  font-size: .92rem;
}

.service-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  font-size: .86rem;
}

.service-bottom span {
  color: var(--gold-dark);
  font-weight: 600;
}

.service-bottom a {
  border-bottom: 1px solid var(--gold);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 18px 70px 18px 18px;
}

.about-image img {
  height: 620px;
  object-fit: cover;
}

.about-copy {
  max-width: 520px;
}

.about-copy p {
  margin-top: 20px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 600;
}

.price-section {
  background: var(--white);
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 70px;
  max-width: 980px;
  margin: 0 auto;
}

.price-group h3 {
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px dotted rgba(63,58,55,.25);
}

.price-row span {
  color: var(--gray);
}

.price-row strong {
  font-weight: 600;
}

.gallery-section {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(.93);
}

.testimonials {
  background: var(--pink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  min-height: 260px;
  padding: 34px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 22px;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: .9;
  color: var(--gold-dark);
}

.testimonial-card p {
  margin: 16px 0 26px;
  color: var(--gray-dark);
}

.testimonial-card span {
  font-size: .88rem;
  font-weight: 600;
}

.booking-section {
  padding: 88px 0;
  background: linear-gradient(120deg, #9e737e, #c79aa6);
  color: #fff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
}

.booking-section h2 {
  max-width: 720px;
}

.booking-section p {
  color: rgba(255,255,255,.82);
  margin-top: 12px;
}

.booking-action {
  text-align: right;
}

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--gray-dark);
}

.btn-light:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--gray-dark);
}

.booking-action span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.74);
  font-size: .78rem;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 34px;
}

.contact-block {
  margin-top: 24px;
}

.contact-block h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.contact-form {
  padding: 38px;
  background: var(--beige-light);
  border-radius: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 18px;
  font-size: .84rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  background: #fff;
  border: 1px solid rgba(63,58,55,.12);
  border-radius: 10px;
  outline: none;
  color: var(--gray-dark);
}

input:focus, textarea:focus {
  border-color: var(--gold);
}

.form-status {
  margin-top: 14px;
  font-size: .85rem;
}

.footer {
  padding: 70px 0 25px;
  background: #4d4642;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer p, .footer a {
  color: rgba(255,255,255,.68);
}

.footer h4 {
  margin-bottom: 14px;
  font-size: .9rem;
  letter-spacing: .05em;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: .78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .image-main {
    height: 520px;
  }

  .intro-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card,
  .service-card-offset {
    grid-column: auto;
  }

  .price-columns {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .booking-action {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    gap: 44px;
  }

  .image-main {
    height: 430px;
  }

  .floating-card {
    right: 12px;
    bottom: 20px;
  }

  .intro-strip-grid,
  .services-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .intro-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .about-grid {
    gap: 44px;
  }

  .about-image img {
    height: 440px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:first-child {
    grid-row: span 2;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}


.language-select-wrap{margin-left:auto;display:flex;align-items:center;position:relative;z-index:20}
.language-select{border:0;border-bottom:1px solid rgba(80,80,80,.28);background:transparent;color:inherit;font:600 11px/1.2 Arial,Helvetica,sans-serif;padding:5px 20px 5px 4px;cursor:pointer}
@media(max-width:900px){.language-select-wrap{margin-left:10px}.language-select{font-size:10px;max-width:115px}}


/* Header spacing refinement */
@media (min-width:901px){
  .brand, .logo, .site-logo{
    flex-shrink:0;
  }
  .main-nav, nav{
    margin-left:34px;
  }
}


/* Lumière multilingual header refinement */
@media (min-width: 901px){
  .nav-wrap{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    column-gap:36px;
  }
  .main-nav{
    justify-self:start;
    margin-left:0 !important;
  }
  .language-select-wrap{
    justify-self:end;
    margin-left:0;
  }
}
