@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --coffee-dark: #2C1810;
  --coffee-medium: #5C3D2E;
  --coffee-light: #8B6F47;
  --coffee-cream: #F5E6D3;
  --coffee-cream-light: #FFF8F0;
  --gold: #C4974A;
  --gold-light: #D4A95A;
  --red-brand: #8B1A1A;
  --red-hover: #A52A2A;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --text-light: #6b6b6b;
  --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.08);
  --shadow-medium: 0 8px 40px rgba(44, 24, 16, 0.12);
  --shadow-strong: 0 16px 60px rgba(44, 24, 16, 0.18);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-body);
  background: var(--coffee-cream-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

header .header-bg {
  background: linear-gradient(180deg, rgba(44,24,16,0.95) 0%, rgba(44,24,16,0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 151, 74, 0.2);
}

header.scrolled .header-bg {
  background: rgba(44, 24, 16, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition);
}

header.scrolled .header-inner {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
}

.logo img {
  height: 160px;
  transition: var(--transition);
  filter: brightness(1.1);
}

header.scrolled .logo img {
  height: 45px;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

nav ul li a {
  color: var(--coffee-cream);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  position: relative;
  transition: var(--transition);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

nav ul li a:hover {
  color: var(--gold-light);
}

nav ul li a:hover::after {
  width: 60%;
}

nav ul li a.active {
  color: var(--gold);
}

nav ul li a.active::after {
  width: 60%;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--coffee-dark) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cart:hover {
  background: var(--gold-light) !important;
  color: var(--coffee-dark) !important;
}

.nav-cart::after {
  display: none !important;
}

.cart-icon {
  width: 18px;
  height: 18px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--coffee-cream);
  transition: var(--transition);
  display: block;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg-home.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.85) 0%, rgba(44,24,16,0.5) 40%, rgba(44,24,16,0.3) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 151, 74, 0.1) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-description {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: rgba(245, 230, 211, 0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--coffee-dark);
  border-radius: 0;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 151, 74, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--coffee-cream);
  border: 1px solid rgba(196, 151, 74, 0.5);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-image {
  animation: slideInRight 1s ease-out 0.5s both;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  top: 10%;
  right: 5%;
  background: var(--red-brand);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  animation: scaleIn 0.8s ease-out 1s both;
  box-shadow: 0 8px 30px rgba(139, 26, 26, 0.4);
}

.hero-badge .price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hero-badge .currency {
  font-size: 0.9rem;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--coffee-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Gold divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ============================================
   BIENVENUE / ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transform: translate(15px, 15px);
  z-index: -1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coffee-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.about-text h2 em {
  font-style: italic;
  color: var(--red-brand);
}

.about-text .divider {
  margin: 1.5rem 0;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--coffee-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coffee-dark);
}

.about-feature p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
  color: var(--text-light) !important;
}

/* ============================================
   PRODUCTS / OFFRES
   ============================================ */
.products-section {
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(196, 151, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 26, 26, 0.08) 0%, transparent 50%);
}

.products-section .section-title {
  color: var(--coffee-cream);
}

.products-section .section-subtitle {
  color: rgba(245, 230, 211, 0.6);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 151, 74, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red-brand));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(196, 151, 74, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coffee-cream);
  margin-bottom: 0.8rem;
}

.product-card p {
  font-size: 0.95rem;
  color: rgba(245, 230, 211, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.product-price span {
  font-size: 1rem;
  font-weight: 400;
}

.btn-card {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.btn-card:hover {
  background: var(--gold);
  color: var(--coffee-dark);
}

/* ============================================
   CADEAU / GIFT SECTION
   ============================================ */
.gift-section {
  background: linear-gradient(135deg, var(--coffee-cream) 0%, var(--coffee-cream-light) 100%);
  position: relative;
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift-image {
  position: relative;
}

.gift-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  box-shadow: var(--shadow-strong);
}

.gift-sticker {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--red-brand);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  transform: rotate(-5deg);
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
}

.gift-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--coffee-dark);
  margin-bottom: 1rem;
}

.gift-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gift-list {
  list-style: none;
  margin-bottom: 2rem;
}

.gift-list li {
  padding: 0.6rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--coffee-medium);
}

.gift-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--coffee-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-home.jpg') center/cover;
  opacity: 0.1;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--coffee-cream);
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(245, 230, 211, 0.7);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(196, 151, 74, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--coffee-cream);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(245, 230, 211, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--coffee-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1a0f0a;
  color: rgba(245, 230, 211, 0.6);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 150px;
  margin-bottom: 1.5rem;
  filter: brightness(0.9);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(245, 230, 211, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 151, 74, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================
   INNER PAGES
   ============================================ */
.page-hero {
  height: 40vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-home.jpg') center/cover;
  opacity: 0.2;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,24,16,0.7) 0%, rgba(44,24,16,0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 90px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero-content .breadcrumb {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(245, 230, 211, 0.6);
  letter-spacing: 0.1em;
}

.page-hero-content .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

/* Page Content */
.page-content {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--coffee-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--text-body);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 151, 74, 0.2);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--coffee-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--coffee-dark);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coffee-medium);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(44, 24, 16, 0.15);
  background: var(--white);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 151, 74, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
}

/* Catalogue */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.catalogue-card {
  background: var(--white);
  border: 1px solid rgba(44, 24, 16, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.catalogue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.catalogue-card-image {
  height: 220px;
  background: var(--coffee-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.catalogue-card-image img {
  max-height: 180px;
  width: auto;
  transition: transform 0.5s ease;
}

.catalogue-card:hover .catalogue-card-image img {
  transform: scale(1.05);
}

.catalogue-card-body {
  padding: 1.5rem;
}

.catalogue-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--coffee-dark);
  margin-bottom: 0.5rem;
}

.catalogue-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.catalogue-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalogue-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* CGV */
.cgv-content {
  max-width: 800px;
  margin: 0 auto;
}

.cgv-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196, 151, 74, 0.2);
}

.cgv-content p, .cgv-content li {
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    display: none;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .about-grid,
  .gift-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 360px;
    background: var(--coffee-dark);
    padding: 100px 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(196, 151, 74, 0.1);
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  section {
    padding: 4rem 1.5rem;
  }

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