/* cmsms stylesheet: cs2026 modified: Saturday, June 6, 2026 6:37:50 PM */
@import url("https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.5/css/lightbox.min.css");

/* ========================================
   DESIGN SYSTEM — Interior Architect Template
   Palette: Warm off-white, beige, taupe, stone, raw wood
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --color-bg: #F6F3EE;
  --color-bg-warm: #EDE8E0;
  --color-bg-card: #FFFFFF;
  --color-surface: #FAF8F5;
  --color-stone: #C4B8A8;
  --color-stone-light: #DDD5C9;
  --color-stone-dark: #8C7E6E;
  --color-taupe: #A89682;
  --color-wood: #7A6654;
  --color-wood-dark: #5A4B3C;
  --color-accent: #B8926A;
  --color-accent-hover: #9E7B55;
  --color-text: #3A3228;
  --color-text-soft: #6B5E50;
  --color-text-muted: #9A8E80;
  --color-border: #E3DDD4;
  --color-overlay: rgba(58, 50, 40, 0.45);
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Sizing */
  --header-height: 80px;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(58, 50, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(58, 50, 40, 0.08);
  --shadow-lg: 0 8px 40px rgba(58, 50, 40, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  max-width: 560px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-stone);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  padding: 0;
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-text::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-text:hover {
  color: var(--color-wood-dark);
}

.btn-text:hover::after {
  transform: translateX(4px);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(246, 243, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(246, 243, 238, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-svg {
  height: 56px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.logo:hover .logo-svg {
  transform: scale(1.02);
}

.footer-logo .logo-svg {
  height: 60px;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-soft);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.72rem;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease-out);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(58, 50, 40, 0.55) 0%,
      rgba(58, 50, 40, 0.15) 60%,
      transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.carousel-content {
  max-width: 600px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s var(--ease-out) 0.3s forwards;
}

.carousel-content h1 {
  color: var(--color-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.carousel-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Carousel controls */
.carousel-controls {
  position: absolute;
  bottom: 32px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--color-white);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* ========================================
   NEWS / BLOG SECTION
   ======================================== */
.blog-section {
  background: var(--color-surface);
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header .section-label {
  justify-content: center;
}

.blog-header .section-label::before {
  display: none;
}

.blog-header .section-desc {
  margin: 0 auto;
}

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

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.prestation-slogan {
  font-size: 2rem !important;
  font-family: "Ms Madi", cursive;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.blog-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 5px 14px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* ========================================
   CONTENT / ABOUT SECTION
   ======================================== */
.content-section {
  background: var(--color-bg);
}

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

.content-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.content-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--color-stone-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.content-body {
  padding: 20px 0;
}

.content-body h2 {
  margin-bottom: 24px;
}

.content-body p {
  margin-bottom: 16px;
}

.content-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
}

.feature-text h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ========================================
   STATS BANNER
   ======================================== */
.stats-banner {
  background: var(--color-text);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   SLOGAN BANNER
   ======================================== */
.slogan-banner {
  background: var(--color-border);
  padding: 60px 0;
}

.slogan-banner p {
  text-align: center;
  font-family: "Ms Madi", cursive;
  font-weight: 500;
  font-style: normal;
  font-size: 2.6em;
  color: var(--color-accent-hover);
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo .logo-icon {
  background: var(--color-accent);
}

.footer-logo .logo-text {
  color: var(--color-white);
}

.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-accent);
}

.footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ========================================
   PAGE BANNER (inner pages)
   ======================================== */
.page-banner {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(58, 50, 40, 0.6) 0%,
      rgba(58, 50, 40, 0.25) 60%,
      rgba(58, 50, 40, 0.1) 100%);
  display: flex;
  align-items: center;
}

.page-banner-content {
  color: var(--color-white);
}

.page-banner-content .section-label {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.page-banner-content .section-label::before {
  background: rgba(255, 255, 255, 0.5);
}

.page-banner-content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   ARTICLE DETAIL (inside .one-col-content)
   ======================================== */
.article-header {
  margin-bottom: 40px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-category {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 5px 14px;
  border-radius: 20px;
}

.article-date,
.article-read-time {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.article-meta .article-date::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-stone);
  margin-right: 16px;
  vertical-align: middle;
}

.article-meta .article-read-time::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-stone);
  margin-right: 16px;
  vertical-align: middle;
}

.article-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-soft);
}

/* Article hero image */
.article-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}

.article-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Article body — reuses .one-col-block, .one-col-separator, etc. */
.article-body {
  margin-bottom: 48px;
}

/* Article navigation */
.article-nav {
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-start;
}

/* ========================================
   ONE-COLUMN CONTENT
   ======================================== */
.one-col-section {
  background: var(--color-bg);
}

.one-col-content {
  max-width: 800px;
  margin: 0 auto;
}

.one-col-content p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.one-col-content ul {}

.one-col-content li {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.one-col-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.one-col-content .blog-card {
  margin-bottom: 32px;
}

.one-col-block {
  margin-bottom: 0;
}

.one-col-block h2 {
  margin-bottom: 24px;
}

.one-col-block p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.one-col-block p:last-child {
  margin-bottom: 0;
}

/* Separator */
.one-col-separator {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 48px 0;
}

/* Inline image */
.one-col-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--shadow-md);
}

.one-col-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.one-col-image:hover img {
  transform: scale(1.03);
}

/* Blockquote */
.one-col-quote {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 36px 40px;
  margin: 0;
}

.one-col-quote p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 16px;
}

.one-col-quote cite {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Feature list in one-col */
.one-col-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

/* CTA block */
.one-col-cta-block {
  text-align: center;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  margin-top: 8px;
}

.one-col-cta-block h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.one-col-cta-block p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}


/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav overlay */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg);
    padding: 120px 24px 60px;
    gap: 32px;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: fadeIn 0.3s ease;
  }

  .nav-menu.open .nav-link {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .header-cta {
    display: none;
  }

  .nav-menu.open+.header-cta,
  .header-cta.open {
    display: flex;
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1001;
  }

  .hero-carousel {
    height: 420px;
  }

  .carousel-overlay {
    padding: 0 32px;
  }

  .carousel-controls {
    right: 24px;
    bottom: 20px;
  }

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

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

  .content-grid {
    gap: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .page-banner {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .hero-carousel {
    height: 360px;
  }

  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content p {
    font-size: 0.95rem;
  }

  .carousel-controls {
    display: none;
  }

  .section-padding {
    padding: 64px 0;
  }

  .blog-grid,
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .blog-card-image {
    height: 200px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-image {
    order: -1;
  }

  .content-image img {
    height: 320px;
  }

  .content-features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-banner {
    height: 220px;
  }

  .one-col-features {
    grid-template-columns: 1fr;
  }

  .one-col-quote {
    padding: 28px 24px;
  }

  .one-col-quote p {
    font-size: 1.2rem;
  }

  .one-col-image img {
    height: 260px;
  }

  .article-hero-image img {
    height: 280px;
  }

  .one-col-cta-block {
    padding: 40px 24px;
  }

  .one-col-separator {
    margin: 36px 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-carousel {
    height: 300px;
  }

  .carousel-overlay {
    padding: 0 20px;
  }

  .carousel-content h1 {
    font-size: 1.5rem;
  }

  .carousel-content .btn {
    padding: 12px 24px;
    font-size: 0.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .blog-card-body {
    padding: 20px;
  }

  .content-image-accent {
    display: none;
  }

  .page-banner {
    height: 180px;
  }

  .page-banner-content h1 {
    font-size: 1.4rem;
  }

  .one-col-image img {
    height: 200px;
  }

  .article-hero-image img {
    height: 200px;
  }
}

/* ========================================
   FORMS
   ======================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-text);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 146, 106, 0.1);
  background: var(--color-bg-card);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-stone-light);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 12px;
}
