/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --vert: #7a9b7a;
  --vert-pale: #e8f0e8;
  --gris-fonce: #3a3f3a;
  --creme: #faf7f2;
  --brun: #2d2d2d;
  --or: #b5956a;
  --rose-pale: #f5ede8;
  --blanc: #fff;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--creme);
  color: var(--brun);
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }
button:hover { opacity: 0.88; }

/* ===== UTILITIES ===== */
.label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.label::before,
.label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--vert);
}
.label span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vert);
  font-weight: 500;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--gris-fonce);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--vert); }
.section-title.light { color: #f0ede8; }

section { scroll-margin-top: 70px; }

/* ===== NAV ===== */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 155, 122, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-brand img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gris-fonce);
}
.nav-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vert);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brun);
  font-weight: 400;
  padding: 4px 0;
}

.btn-primary {
  padding: 8px 20px;
  background: var(--gris-fonce);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  font-family: inherit;
}

.btn-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gris-fonce);
}

/* ===== HERO ===== */
.hero-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vert);
  font-weight: 500;
}
.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--vert);
}

.hero-title {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--gris-fonce);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--vert); }

.hero-desc {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #6a6a6a;
  max-width: 400px;
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-location {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--or);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-buttons .btn-dark {
  padding: 14px 36px;
  background: var(--gris-fonce);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.3s;
}
.hero-buttons .btn-outline {
  padding: 14px 36px;
  background: none;
  border: 1.5px solid var(--vert);
  color: var(--vert);
  cursor: pointer;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  font-family: inherit;
}

.hero-visual {
  background: linear-gradient(160deg, #e8f0e8, #c8d8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual .radial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(122, 155, 122, 0.15), transparent 50%);
}
.hero-visual .hero-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: float 4s ease-in-out infinite;
}
.hero-visual .hero-quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--vert);
}
.hero-quote .quote-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--vert);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-quote p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gris-fonce);
  margin: 0;
}

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

/* ===== ABOUT ===== */
.about-grid {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  position: relative;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo .photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8f0e8, #c8d8c8);
}
.about-photo .about-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-photo .photo-border {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid rgba(122, 155, 122, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #6a6a6a;
  font-weight: 300;
  margin-bottom: 14px;
}

.about-quote {
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--vert-pale);
  border-left: 3px solid var(--vert);
  border-radius: 0 4px 4px 0;
}
.about-quote p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--gris-fonce);
  margin: 0;
}
.about-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--vert);
  font-style: normal;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== VALEURS ===== */
.valeurs-grid {
  background: var(--gris-fonce);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.valeur-card {
  padding: 52px 40px;
}
.valeur-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.valeur-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 18px;
}
.valeur-card h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #f0ede8;
  margin-bottom: 12px;
}
.valeur-card p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.6);
  font-weight: 300;
}

/* ===== COLLECTIONS ===== */
.collections-section {
  padding: 100px 80px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.collection-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(122, 155, 122, 0.12);
  transition: transform 0.3s;
}
.collection-card:hover { transform: translateY(-4px); }
.collection-card.span-2 { grid-column: span 2; }

.card-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  gap: 8px;
}
.card-visual.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}
.card-visual.has-image {
  cursor: zoom-in;
}
.card-visual.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.38), rgba(45, 45, 45, 0.08));
}
.card-visual.tall { height: 340px; }
.card-visual .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--vert);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  z-index: 2;
}
.card-visual .emoji {
  font-size: 3rem;
  opacity: 0.5;
}
.card-visual .photo-label {
  font-family: Georgia, serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  z-index: 2;
}

.card-body {
  padding: 20px 24px 24px;
}
.card-body h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gris-fonce);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: #6a6a6a;
  font-weight: 300;
  margin-bottom: 14px;
}
.card-body .card-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert);
  font-weight: 500;
  padding: 0;
  font-family: inherit;
}

/* ===== GALERIE ===== */
.galerie-section {
  background: var(--rose-pale);
  padding: 90px 80px;
}
.galerie-header {
  text-align: center;
  margin-bottom: 52px;
}
.galerie-header .label { justify-content: center; }
.galerie-header p {
  font-size: 0.9rem;
  color: #6a6a6a;
  font-weight: 300;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 190px);
  gap: 10px;
}
.galerie-item {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
}
.galerie-item:hover { opacity: 0.85; }
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.galerie-item figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  background: rgba(45, 45, 45, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 3px;
  font-family: Georgia, serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
}
.galerie-item.main-photo {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== IMAGE LIGHTBOX ===== */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 20, 20, 0.9);
}
.image-lightbox[hidden] { display: none; }
.image-lightbox-inner {
  position: relative;
  width: min(96vw, 1180px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image-lightbox-media {
  width: 100%;
  max-height: calc(92vh - 56px);
  border-radius: 4px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}
.image-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #222;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #222;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.image-lightbox-nav.prev { left: 10px; }
.image-lightbox-nav.next { right: 10px; }
.image-lightbox-caption {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

/* ===== PROCESS ===== */
.process-section {
  padding: 100px 80px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}
.process-step {
  padding: 32px 28px;
}
.process-step:not(:first-child) {
  border-left: 1px solid rgba(122, 155, 122, 0.2);
}
.process-step .step-number {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(122, 155, 122, 0.2);
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--gris-fonce);
  margin-bottom: 10px;
  font-weight: 400;
}
.process-step p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: #6a6a6a;
  font-weight: 300;
}

/* ===== TEMOIGNAGES ===== */
.temoignages-section {
  background: var(--gris-fonce);
  padding: 90px 80px;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.temoignage-card {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 155, 122, 0.15);
  border-radius: 3px;
}
.temoignage-card .stars {
  color: var(--or);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.temoignage-card blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.8);
  margin-bottom: 18px;
}
.temoignage-card cite {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert);
  font-weight: 500;
  font-style: normal;
}

/* ===== CONTACT ===== */
.contact-grid {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-info-offset { padding-top: 10px; }

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.form-success {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(122, 155, 122, 0.12);
  border-left: 3px solid var(--vert);
  color: var(--gris-fonce);
  font-size: 0.86rem;
}
.form-error {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(207, 92, 76, 0.1);
  border-left: 3px solid #cf5c4c;
  color: #6a2b22;
  font-size: 0.86rem;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 500;
  display: block;
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid rgba(122, 155, 122, 0.2);
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--brun);
  outline: none;
  background: #fff;
}
.form-field textarea {
  min-height: 100px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--vert);
}

.btn-submit {
  padding: 14px 32px;
  background: var(--gris-fonce);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  width: fit-content;
  font-family: inherit;
}
.btn-submit:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}
.btn-submit.is-loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: btn-loading-spin 0.7s linear infinite;
}
@keyframes btn-loading-spin {
  to { transform: rotate(360deg); }
}

.contact-info h3 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--gris-fonce);
  margin-bottom: 28px;
  line-height: 1.3;
}
.contact-info h3 em { font-style: italic; color: var(--vert); }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.info-item .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vert-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item .info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 3px;
  font-weight: 500;
}
.info-item .info-value {
  font-size: 0.92rem;
  color: var(--brun);
  font-weight: 300;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 28px;
  background: #25d366;
  color: #fff;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: opacity 0.3s;
}
.btn-whatsapp:hover { opacity: 0.9; }
.btn-whatsapp .wa-icon { font-size: 1.2rem; }

/* ===== FOOTER ===== */
.main-footer {
  background: #1e2420;
  padding: 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  height: 44px;
  opacity: 0.85;
}
.footer-brand span {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: rgba(240, 237, 232, 0.75);
}
.main-footer .copyright {
  font-size: 0.74rem;
  color: rgba(240, 237, 232, 0.4);
}
.footer-social,
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(240, 237, 232, 0.25);
  color: rgba(240, 237, 232, 0.92);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}
.footer-social a,
.social-link {
  gap: 8px;
}
.social-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}
.social-link-facebook .social-icon {
  background: #1877f2;
  color: #fff;
}
.social-link-pinterest .social-icon {
  background: #e60023;
  color: #fff;
}
.social-label {
  line-height: 1;
}
.footer-social a:hover {
  border-color: rgba(240, 237, 232, 0.5);
  background-color: rgba(240, 237, 232, 0.08);
}
.social-links {
  margin-top: 12px;
}
.social-link {
  border-color: rgba(62, 78, 62, 0.3);
  color: var(--vert);
}
.social-link:hover {
  border-color: rgba(62, 78, 62, 0.5);
  background: rgba(150, 180, 150, 0.16);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-text { padding: 60px 30px; }
  .hero-visual { min-height: 50vh; }
  .about-grid { padding: 60px 30px; }
  .about-photo { height: 300px; }
  .collections-section,
  .process-section { padding: 60px 30px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card.span-2 { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(odd) { border-left: none; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .valeur-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .galerie-section { padding: 60px 30px; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .galerie-item.main-photo { grid-column: span 2; min-height: 250px; }
  .galerie-item { min-height: 150px; }
  .temoignages-section { padding: 60px 30px; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .contact-grid { padding: 60px 30px; }
  .main-footer { padding: 32px 30px; }
}

@media (max-width: 768px) {
  .main-nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(122, 155, 122, 0.15);
  }
  .btn-mobile-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { padding: 40px 20px; }
  .hero-visual .hero-logo { width: 200px; height: 200px; }
  .hero-visual .hero-quote { left: 20px; bottom: 20px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card.span-2 { grid-column: span 1; }
  .contact-form-row { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-item.main-photo { grid-column: span 2; }
  .main-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .footer-brand-wrap {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-social a,
  .social-link {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .social-label {
    display: none;
  }
}
