@charset "UTF-8";
/* RMK Construction — styles
 * Tokens design : :root ci-dessous.
 */
:root {
  --color-white: #FFFFFF;
  --color-anthracite: #2C2C2C;
  --color-beige: #E8DCC4;
  --color-beige-light: #F8F6F3;
  --color-gold: #C9A961;
  --color-azure: #A8CADB;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
  --shadow-subtle: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-medium: 0 4px 16px rgba(44, 44, 44, 0.1);
  --shadow-elevated: 0 8px 24px rgba(44, 44, 44, 0.12);
  --radius: 8px;
  --transition-fast: 0.3s ease;
  --transition-normal: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2C2C2C;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1rem, 3vw, 1.5rem);
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  margin-bottom: 1rem;
}
.section-title .subtitle {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.7);
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.text-italic {
  font-style: italic;
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer-content {
    text-align: center;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .section {
    padding: 4rem 0;
  }
  .hero-content {
    padding: 0 1.5rem;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  .hero--page {
    height: auto;
    min-height: 300px;
  }
}
.footer {
  background: #000000 !important;
  color: #FFFFFF;
  padding: 6rem 0 2rem;
  margin-top: 0;
  position: relative;
  width: 100%;
  min-height: 100px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.footer .container {
  max-width: 1200px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
}
.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #C9A961;
}
@media (max-width: 768px) {
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: 0.3s ease;
  display: inline-block;
}
.footer-section a:hover {
  color: #C9A961;
  transform: translateX(4px);
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-company {
  margin-bottom: 2rem;
}
.footer-company h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer-company p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-contact-info p a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}
.footer-contact-info p a:hover {
  color: #C9A961;
}

.footer-social {
  margin-top: 1.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 0.3s ease;
}
.footer-social a svg {
  fill: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}
.footer-social a:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: translateY(-3px);
}
.footer-social a:hover svg {
  fill: #C9A961;
}

.footer-intervention p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.footer-intervention p:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.btn, .nav-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary, .nav-cta {
  background-color: #C9A961;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.06);
}
.btn-primary:hover, .nav-cta:hover {
  background-color: #d3ba7f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.12);
}
.btn-primary:active, .nav-cta:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: #C9A961;
  border: 1px solid #C9A961;
}
.btn-secondary:hover {
  background-color: #C9A961;
  color: #2C2C2C;
}

.btn-white {
  background-color: rgb(211, 186, 127);
  color: #FFFFFF;
}
.btn-white:hover {
  background-color: rgba(211, 186, 127, 0.9);
  transform: translateY(-2px);
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.06);
  transition: 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.12);
  border-top: 3px solid #C9A961;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #C9A961, #d6be87);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2C2C2C;
}

.card-description {
  color: rgba(44, 44, 44, 0.7);
  flex-grow: 1;
  margin-bottom: 2rem;
}

.card-link {
  color: #C9A961;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.card-link:hover {
  gap: 1rem;
}
.card-link::after {
  content: "→";
  transition: 0.3s ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero:not(.hero--page) {
  height: var(--hero-height, 100%);
  min-height: var(--hero-height, 100%);
  max-height: var(--hero-height, 100%);
  overflow: clip;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .hero:not(.hero--page) {
    padding: 0 1.5rem;
  }
}
.hero:not(.hero--page) .hero-logo {
  width: clamp(200px, 45vw, 500px);
}
.hero:not(.hero--page) .hero-baseline {
  margin-bottom: 3rem;
}
.hero:not(.hero--page) .hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-top: 1.5rem;
}
.hero:not(.hero--page) .scroll-indicator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin-top: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero:not(.hero--page) .hero-subtitle {
    font-size: clamp(1.2rem, 5.5vw, 1.75rem);
  }
  .hero:not(.hero--page) .btn-white {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 640px) {
  .hero:not(.hero--page) .hero-content {
    padding-top: 1rem;
  }
  .hero:not(.hero--page) .hero-subtitle {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }
  .hero:not(.hero--page) .btn-white {
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  .hero:not(.hero--page) .scroll-indicator {
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(44, 44, 44, 0.2) 0%, rgba(44, 44, 44, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeIn 0.8s ease-out;
}

.hero--page {
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .hero--page {
    height: auto;
    min-height: 300px;
    align-items: flex-end;
  }
}
.hero--page .hero-content {
  width: 100%;
  padding-top: 5.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .hero--page .hero-content {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
}
.hero--page .hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero--page .hero-subtitle {
  margin-bottom: 0;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
}

.hero--compact {
  height: 280px;
  min-height: 280px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero--compact {
    min-height: 240px;
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  color: rgb(225, 204, 27);
}

.hero-logo {
  width: 500px;
  max-width: 90vw;
  height: auto;
  aspect-ratio: 498/205;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .hero-logo {
    width: 300px;
    max-width: 80vw;
  }
}

.page-logo {
  width: 250px;
  max-width: 70vw;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .page-logo {
    width: 180px;
    max-width: 60vw;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
}

.hero-baseline {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 300;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  color: #FFFFFF;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: 0.3s ease;
  box-shadow: none;
}
.header.scrolled {
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  .nav-container {
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex: 1;
}
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
}

.nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: #2C2C2C;
  position: relative;
  transition: 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C9A961;
  transition: 0.3s ease;
}
.nav-link:hover {
  color: #C9A961;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: #C9A961;
}
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
  position: relative;
}
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #2C2C2C;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 2px;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 3px;
  background-color: #2C2C2C;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  border-radius: 2px;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  bottom: -8px;
}

.menu-toggle.active .hamburger {
  background-color: transparent;
}
.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 3rem;
  box-shadow: -4px 0 20px rgba(44, 44, 44, 0.1);
}
.mobile-menu.active {
  right: 0;
}
@media (max-width: 640px) {
  .mobile-menu {
    max-width: 100%;
    padding: 2rem;
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.mobile-menu-logo {
  display: block;
  margin-left: auto;
  max-width: 60%;
}
.mobile-menu-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 400;
  color: #2C2C2C;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transition: 0.3s ease;
  text-decoration: none;
}
.mobile-nav a:hover {
  color: #C9A961;
  background: rgba(201, 169, 97, 0.1);
}
.mobile-nav a:last-child {
  background: #C9A961;
  color: #FFFFFF;
  text-align: center;
  margin-top: 1.5rem;
}
.mobile-nav a:last-child:hover {
  background: #b8933f;
  color: #FFFFFF;
}

.expertises .container {
  max-width: 1400px;
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .expertises-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .expertises-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.expertise-card {
  background: #FFFFFF;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 0;
  padding: 4rem;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .expertise-card {
    padding: 2rem;
    min-height: auto;
  }
}
.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #C9A961;
  transition: 0.4s ease;
}
.expertise-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.12);
}
.expertise-card:hover::before {
  height: 100%;
}
.expertise-card:hover .expertise-number {
  color: rgba(201, 169, 97, 0.28);
}
.expertise-card:hover .expertise-link {
  color: #C9A961;
  transform: translateX(6px);
}

.expertise-number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 400;
  color: rgba(44, 44, 44, 0.18);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .expertise-number {
    font-size: 4rem;
  }
}
@media (max-width: 640px) {
  .expertise-number {
    font-size: 3rem;
  }
}

.expertise-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.expertise-description {
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.expertise-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(44, 44, 44, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
  margin-top: auto;
}
.expertise-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #C9A961;
  transition: 0.3s ease;
}
.expertise-link:hover {
  color: #C9A961;
}
.expertise-link:hover::after {
  width: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.values-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .values-container {
    padding: 0 1.5rem;
  }
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.value-card {
  background: #FFFFFF;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 0;
  padding: 2.5rem;
  text-align: center;
  transition: 0.4s ease;
}
.value-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.12);
}

.value-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2C2C2C;
  margin-bottom: 1rem;
}
.value-title::first-letter {
  background: #C9A961;
  color: #FFFFFF;
  padding: 0.15rem 0.2rem;
  border-radius: 4px;
  font-size: 1.75rem;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
}

.value-description {
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s ease;
}
.lightbox-close:hover {
  color: #C9A961;
}

.intro {
  background: #FFFFFF;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.expertises {
  background: #F8F6F3;
}
@media (max-width: 768px) {
  .expertises .section-title {
    text-align: center;
  }
  .expertises .section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }
  .expertises .section-title .subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.gallery {
  padding: 0;
  background: #FFFFFF;
}

.gallery--realisations {
  padding-bottom: 6rem;
}
.gallery--realisations .gallery-grid {
  margin: 3rem 0 4rem;
}
@media (max-width: 768px) {
  .gallery--realisations .gallery-grid {
    margin: 2rem 0 3rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/2;
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  opacity: 1;
  transition: 0.4s ease;
}
.gallery-item:hover {
  text-decoration: none;
  color: inherit;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-title {
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0;
  font-weight: 400;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.gallery-category {
  color: #C9A961;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.process {
  background: #F8F6F3;
}
@media (max-width: 768px) {
  .process .section-title {
    text-align: center;
  }
  .process .section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }
  .process .section-title .subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 1024px) {
  .process-timeline {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 50px;
  height: 2px;
  background: #C9A961;
  z-index: 0;
}
@media (max-width: 768px) {
  .process-timeline::before {
    display: none;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
@media (max-width: 1024px) {
  .process-step {
    padding: 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    text-align: left;
    padding: 1.5rem;
    border-left: 3px solid #C9A961;
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
  }
}

.process-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #C9A961;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin: 0 auto 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
    grid-column: 1;
    grid-row: 1/span 2;
  }
}

.process-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .process-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .process-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    grid-column: 2;
    grid-row: 1;
  }
}

.process-description {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .process-description {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .process-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 2;
  }
}

.stats {
  position: relative;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .stats {
    background-attachment: fixed;
  }
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.7);
}

.stats-container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.stat-item {
  text-align: center;
  color: #FFFFFF;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: #C9A961;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonials {
  background: #F8F6F3;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  text-align: center;
  padding: 4rem;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #2C2C2C;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.7);
  font-weight: 600;
}

.cta-section {
  background: #2C2C2C;
  color: #FFFFFF;
  text-align: center;
  padding: 6rem 0;
}
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
}
.cta-section .cta-info {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.cta-section .cta-info a {
  color: #C9A961;
}
.cta-section .cta-info a:hover {
  text-decoration: underline;
}

.zone {
  background: #FFFFFF;
}

.section-divider {
  border: none;
  height: 3px;
  background: linear-gradient(to right, transparent, #C9A961, transparent);
  margin: 2rem auto;
  max-width: 200px;
  opacity: 0.6;
}

.hero-small {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-small {
    height: 30vh;
    min-height: 200px;
  }
}
.hero-small .hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.article-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.06);
  transition: 0.5s ease;
  position: relative;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.1);
}

.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.article-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 3rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-date {
  color: #C9A961;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  transition: 0.3s ease;
}
.article-card-link:hover .article-title {
  color: #C9A961;
}

.article-excerpt {
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-footer {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0 3rem 3rem;
  position: relative;
  z-index: 2;
}
.article-footer .btn, .article-footer .nav-cta {
  flex: 1;
  min-width: 120px;
  position: relative;
  z-index: 3;
  text-align: center;
}
@media (max-width: 768px) {
  .article-footer .btn, .article-footer .nav-cta {
    width: 100%;
    flex: none;
  }
}

.article-gallery {
  display: none;
}

.empty-state {
  text-align: center;
  padding: 6rem 0;
  color: rgba(44, 44, 44, 0.6);
}
.empty-state p {
  font-size: 1.125rem;
}

.article-detail {
  padding: 6rem 0;
}

.article-header {
  margin-bottom: 4rem;
  text-align: center;
}

.article-detail-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: #2C2C2C;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.article-detail-date {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: rgba(44, 44, 44, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.article-divider {
  width: 200px;
  height: 4px;
  background: #C9A961;
  margin: 0 auto 4rem;
}

.article-main-image {
  max-width: 800px;
  margin: 0 auto 4rem;
}
.article-main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.article-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 4rem;
}

.article-video {
  margin-bottom: 4rem;
}
.article-video h2 {
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  padding-bottom: 75%; /* 4:3 pour correspondre à l'aspect-ratio des photos */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.1);
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-container .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(44, 44, 44, 0.8);
  transition: 0.3s ease;
}
.video-container .video-placeholder:hover {
  background: rgba(44, 44, 44, 0.9);
  color: #C9A961;
}

.article-gallery-section {
  margin-bottom: 4rem;
}
.article-gallery-section h2 {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
  }
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}
.lightbox .close-btn:hover {
  opacity: 0.7;
}

.article-footer-actions {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 2px solid rgba(44, 44, 44, 0.1);
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 6rem 1.5rem;
  background: #F8F6F3;
}

.error-page__inner {
  max-width: 560px;
  text-align: center;
}

.error-page__code {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: #C9A961;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.error-page__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.error-page__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2C2C2C;
  opacity: 0.8;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
  }
  .section-title .subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  section[id^=construction] > div,
  section[id^=renovation] > div,
  section[id^=piscine] > div,
  section[id^=amenagement] > div {
    display: flex;
    flex-direction: column !important;
  }
  section[id^=construction] > div > img,
  section[id^=renovation] > div > img,
  section[id^=piscine] > div > img,
  section[id^=amenagement] > div > img {
    order: -1;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .section > .container > div[style*=grid-template-columns] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .gallery-item .gallery-title {
    font-size: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
}
@media (max-width: 768px) {
  .process-step {
    padding: 1.5rem;
    border-left: 2px solid #C9A961;
    padding-left: 1.5rem;
  }
}
@media (max-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
  .hero-logo {
    width: 250px;
    max-width: 70vw;
  }
  .expertise-card {
    padding: 1.5rem;
  }
  .expertise-title {
    font-size: 1.5rem;
  }
  .expertise-description {
    font-size: 0.9rem;
  }
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  .process-title {
    font-size: 1.1rem;
    font-weight: bold;
  }
  .process-description {
    font-size: 0.8rem;
  }
}

