@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght=0,500;0,600;1,500&family=Poppins:wght=400;500;600&display=swap");

:root {
  --creme: #fbfaf6;
  --creme-fonce: #f1eee4;
  --papier: #ffffff;
  --foret: #1f3a2e;
  --foret-clair: #3a5a47;
  --or: #a8863e;
  --texte: #2b2822;
  --texte-doux: #6b6759;
  --ligne: #e4e0d2;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--creme);
  color: var(--texte);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
}
body.no-scroll {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--foret);
  font-weight: 600;
}

/* ---------- TOP INFO BAR ---------- */
.info-bar {
  background: var(--foret);
  color: var(--creme);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px 0;
}
.info-bar .wrap {
  display: flex;
  justify-content: space-between;
}
.info-bar span {
  opacity: 0.85;
}
.info-bar a:hover {
  color: var(--or);
}

/* ---------- NAV ---------- */
header {
  background: var(--papier);
  border-bottom: 1px solid var(--ligne);
  position: relative;
  z-index: 100;
}
nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--foret);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
  z-index: 110;
}
.logo small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 4px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navlinks {
  display: flex;
  gap: 38px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.navlinks a {
  position: relative;
  padding-bottom: 6px;
  color: var(--texte);
  transition: color 0.2s;
}
.navlinks a.active,
.navlinks a:hover {
  color: var(--foret);
}
.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--or);
}
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1px solid var(--foret);
  background: var(--foret);
  color: var(--creme);
  display: inline-block;
  transition: all 0.2s;
}
.btn:hover {
  background: transparent;
  color: var(--foret);
}
.btn-outline {
  background: transparent;
  color: var(--foret);
}
.btn-outline:hover {
  background: var(--foret);
  color: var(--creme);
}
.btn-or {
  background: var(--or);
  border-color: var(--or);
  color: var(--papier);
}
.btn-or:hover {
  background: transparent;
  color: var(--or);
}

/* ---------- MOBILE INTERACTION ELEMENTS ---------- */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  z-index: 110;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--foret);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: left center;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(2px, -1px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 1px);
}

.nav-overlay {
  display: none;
}

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--ligne);
  background: var(--creme-fonce);
}
.breadcrumb {
  font-size: 12px;
  color: var(--texte-doux);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.breadcrumb a:hover {
  color: var(--foret);
}
.page-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
}
.page-hero p {
  margin-top: 16px;
  color: var(--texte-doux);
  max-width: 560px;
  font-size: 15.5px;
}

/* ---------- SECTION ---------- */
section {
  padding: 88px 0;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
  display: block;
}
h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
}
.section-head {
  max-width: 600px;
  margin-bottom: 54px;
}
.section-head p {
  margin-top: 16px;
  color: var(--texte-doux);
  font-size: 15.5px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- HOME HERO ---------- */
.home-hero {
  padding: 70px 0 0;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-bottom: 70px;
}
.home-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
}
.home-hero h1 em {
  font-style: italic;
  color: var(--or);
}
.home-hero p.lead {
  margin-top: 22px;
  color: var(--texte-doux);
  font-size: 16.5px;
  max-width: 440px;
}
.home-hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.home-hero-frame {
  border: 1px solid var(--ligne);
  padding: 18px;
  background: var(--papier);
  border-radius: 2px;
}
.home-hero-frame img {
  width: 100%;
  border-radius: 1px;
}
.frame-caption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--texte-doux);
  letter-spacing: 0.03em;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--foret);
}
.stats-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 40px;
}
.stats-strip div {
  text-align: center;
  border-right: 1px solid rgba(251, 250, 246, 0.15);
  padding: 0 10px;
}
.stats-strip div:last-child {
  border-right: none;
}
.stats-strip b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--creme);
  font-weight: 600;
}
.stats-strip span {
  font-size: 11px;
  color: #b9c7be;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- SERVICE CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ligne);
  border: 1px solid var(--ligne);
}
.card {
  background: var(--papier);
  padding: 38px 32px;
  transition: background 0.2s;
}
.card:hover {
  background: var(--creme-fonce);
}
.card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}
.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: var(--texte-doux);
}

/* ---------- SPEC TABLE (service detail) ---------- */
.spec-table {
  border-top: 1px solid var(--ligne);
  margin-top: 10px;
}
.spec-table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ligne);
}
.spec-table-row dt {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--foret);
  font-weight: 600;
}
.spec-table-row dd {
  color: var(--texte-doux);
  font-size: 14.5px;
}

/* ---------- TIMELINE ---------- */
.timeline {
  margin-top: 20px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 110px 1px 1fr;
  gap: 0;
}
.timeline-row .yr {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--or);
  font-weight: 600;
  padding: 26px 24px 26px 0;
  text-align: right;
}
.timeline-row .line {
  background: var(--ligne);
  position: relative;
}
.timeline-row .line::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 32px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--foret);
}
.timeline-row .content {
  padding: 22px 0 22px 30px;
}
.timeline-row h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.timeline-row p {
  font-size: 14px;
  color: var(--texte-doux);
  max-width: 480px;
}

/* ---------- GALLERY / GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  background: var(--papier);
  border: 1px solid var(--ligne);
}
.gallery-item .frame {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .label {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.gallery-item .label h4 {
  font-size: 15px;
}
.gallery-item .label span {
  font-size: 11px;
  color: var(--texte-doux);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- SPLIT MEDIA (text + image) ---------- */
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-media-text h2,
.split-media-text h3 {
  margin-bottom: 16px;
}
.split-media-text p {
  color: var(--texte-doux);
  font-size: 15px;
  margin-bottom: 14px;
}
.split-media-frame {
  border: 1px solid var(--ligne);
  padding: 14px;
  background: var(--papier);
  border-radius: 2px;
}
.split-media-frame img {
  width: 100%;
  border-radius: 1px;
}

/* ---------- CHECK LIST ---------- */
.check-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--texte);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--or);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid var(--or);
  border-bottom: 1.5px solid var(--or);
  transform: rotate(45deg);
}

/* ---------- PARTNER STRIP ---------- */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.partner-strip span {
  border: 1px solid var(--ligne);
  padding: 11px 20px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--foret);
  background: var(--papier);
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--foret);
  padding: 64px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--creme);
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 10px;
}
.cta-band p {
  color: #b9c7be;
  font-size: 14.5px;
  max-width: 460px;
}

/* ---------- QUOTE / TESTIMONIAL BLOCK ---------- */
.quote-block {
  background: var(--creme-fonce);
  padding: 70px 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--foret);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
}
.quote-block cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 12.5px;
  color: var(--texte-doux);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-info dl {
  margin-top: 28px;
}
.contact-info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--or);
  margin-top: 20px;
}
.contact-info dd {
  font-size: 15px;
  margin-top: 4px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--texte-doux);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--ligne);
  background: var(--papier);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--texte);
  border-radius: 2px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--foret);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ---------- MAP ---------- */
.map-block {
  aspect-ratio: 16/6;
  border: 1px solid var(--ligne);
  overflow: hidden;
}
.map-block iframe {
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  border: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--foret);
  color: var(--creme);
  padding: 64px 0 26px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.12);
}
footer h5 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--or);
  margin-bottom: 18px;
  font-weight: 600;
}
footer .logo {
  color: var(--creme);
  margin-bottom: 14px;
}
footer .logo small {
  color: var(--or);
}
footer p.desc {
  font-size: 13.5px;
  color: #b9c7be;
  max-width: 280px;
  line-height: 1.7;
}
footer ul li {
  margin-bottom: 10px;
  font-size: 13.5px;
  color: #b9c7be;
}
footer ul a:hover {
  color: var(--or);
}
.foot-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8ca091;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */
@media (max-width: 900px) {
  /* Hide standard desktop elements */
  .nav-right {
    display: none;
  }

  /* Trigger burger display */
  .burger {
    display: flex;
  }

  /* Full screen Mobile Menu Drawer */
  .nav-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--creme);
    padding: 140px 40px 60px;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .nav-overlay.open {
    transform: translateY(0);
  }

  .nav-overlay .navlinks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 20px;
  }

  .nav-overlay .navlinks a {
    align-self: flex-start;
    padding-bottom: 4px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
  }

  .nav-overlay-foot {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-top: 1px solid var(--ligne);
    padding-top: 30px;
  }

  .nav-overlay-foot .btn {
    text-align: center;
    width: 100%;
    background-color: var(--foret);
    color: var(--creme);
  }

  .nav-overlay-meta {
    font-size: 13px;
    color: var(--texte-doux);
    line-height: 1.6;
  }

  /* Grid & layout simplifications */
  .wrap {
    padding: 0 24px;
  }

  nav {
    padding: 20px 24px;
  }

  .home-hero {
    padding: 40px 0 0;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-strip .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 44px 24px;
  }
  .stats-strip div {
    border-right: none;
    border-bottom: 1px solid rgba(251, 250, 246, 0.15);
    padding-bottom: 18px;
  }
  .stats-strip div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }
  .spec-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .timeline-row {
    grid-template-columns: 70px 1px 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-media {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-media-frame {
    order: -1;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .stats-strip .wrap {
    grid-template-columns: 1fr;
  }

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

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