:root {
  --bg: #F6EFE1;
  --paper: #FBF6EA;
  --ink: #2B2118;
  --panel: #3A1620;
  --wine: #6B1B2B;
  --wine-hover: #551520;
  --gold: #B4894F;
  --gold-hover: #96703F;
  --gold-light: #E4C88C;
  --muted-1: #5C5142;
  --muted-2: #948572;
  --border: rgba(43,33,24,0.12);
  --border-strong: rgba(43,33,24,0.22);
  --radius-sm: 3px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Mobile-only hero scroll lock — see app.js setScrollLock().
   Hard-prevents body scroll during the hero animation on phones so the next
   section's text can never flash into view, without touching desktop. */
@media (max-width: 767px) {
  body.scroll-locked {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: 'Fraunces', serif; margin: 0; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(20px); filter: blur(6px); transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(246, 239, 225, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; letter-spacing: 0.01em; color: var(--ink); }
.logo-sub { font-size: 10px; color: var(--wine); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-top: 2px; }
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a { color: var(--ink); font-size: 14px; font-weight: 500; }
.nav-desktop a:hover { color: var(--wine); }
.nav-desktop-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { color: var(--ink) !important; font-weight: 700; font-size: 14px; }
.cta-btn {
  position: relative; overflow: hidden;
  background: var(--wine); color: var(--gold-light) !important; font-size: 13.5px; font-weight: 600; padding: 11px 20px; border-radius: var(--radius-sm); white-space: nowrap; border: 1px solid var(--wine);
  transition: background 0.25s ease;
}
.cta-btn::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.cta-btn:hover::before { left: 130%; }
.cta-btn:hover { background: var(--wine-hover); border-color: var(--wine-hover); }
.cta-btn--block { display: block; text-align: center; margin-top: 6px; padding: 13px 20px; }

.burger-btn { display: none; border: none; background: transparent; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.burger-btn span { width: 22px; height: 2px; background: var(--ink); display: block; }
.mobile-panel { border-top: 1px solid var(--border); background: var(--bg); padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 18px; }
.mobile-panel[hidden] { display: none; }
.mobile-panel a { color: var(--ink); font-size: 16px; font-weight: 600; }

@media (max-width: 860px) {
  .nav-desktop, .nav-desktop-actions { display: none; }
  .burger-btn { display: flex; }
}

/* Scroll-expand hero */
.expand-hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--panel); }
.expand-bg { position: absolute; inset: 0; z-index: 0; }
.expand-bg img, .expand-bg-video { width: 100%; height: 100%; object-fit: cover; }
.expand-bg-video { position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.5s ease; }
.expand-bg-video.is-active { opacity: 1; z-index: 2; }
.expand-bg-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(43,22,32,0.5); }

.expand-stage { position: relative; width: 100%; height: 100vh; }
.expand-media {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1; width: 320px; height: 400px; max-width: 92vw; max-height: 76vh;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(180,137,79,0.4);
}
.expand-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expand-media-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,22,32,0) 45%, rgba(43,22,32,0.75) 100%); }
.expand-media-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #fff; padding: 0 16px; }
.expand-media-caption #expandKicker { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--gold-light); margin: 0 0 4px; font-style: italic; transition: opacity 0.3s ease; }
.expand-media-caption #expandHint { font-size: 11px; color: rgba(255,255,255,0.8); margin: 0; text-transform: uppercase; letter-spacing: 0.12em; transition: opacity 0.3s ease; }

.expand-title {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 3; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  pointer-events: none;
}
.expand-title span { color: #fff; font-size: clamp(26px, 5.2vw, 56px); margin: 0; white-space: nowrap; font-weight: 500; text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.7); display: inline-block; }

.expand-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 10px 24px 110px; text-align: center; opacity: 0; transition: opacity 0.7s ease; }
.expand-content.is-visible { opacity: 1; }
.expand-content .hero-subtitle { font-size: clamp(15px, 1.8vw, 18px); line-height: 1.6; color: rgba(255,255,255,0.82); margin: 0 auto 28px; max-width: 560px; }
.expand-content .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-primary {
  position: relative; overflow: hidden;
  background: var(--gold); color: var(--panel) !important; font-size: 15px; font-weight: 700; padding: 15px 28px; border-radius: var(--radius-sm);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { background: var(--gold-hover); }
.btn-secondary {
  position: relative; overflow: hidden; isolation: isolate;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(180,137,79,0.4); color: #fff !important;
  font-size: 15px; font-weight: 600; padding: 15px 28px; border-radius: var(--radius-sm);
  transition: color 0.4s ease, border-color 0.4s ease;
}
.btn-secondary::before {
  content: ''; position: absolute; top: 50%; left: 22px; width: 8px; height: 8px; margin-top: -4px;
  background: var(--gold); border-radius: 50%; transform: scale(1); z-index: -1;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-secondary:hover { color: var(--panel) !important; border-color: var(--gold); }
.btn-secondary:hover::before { transform: scale(40); }
.btn-secondary .btn-arrow { display: inline-block; margin-left: 6px; opacity: 0; transform: translateX(-6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.btn-secondary:hover .btn-arrow { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .btn-secondary::before { transition: none; }
  .btn-secondary .btn-arrow { transition: none; }
}

@media (max-width: 640px) { .expand-title { gap: 10px; } }

/* Sections */
.section { padding: 100px 24px; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-tag { color: var(--wine); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; position: relative; display: inline-block; padding-bottom: 12px; }
.section-tag::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 1px; background: var(--gold); }
.section-tag--light { color: var(--gold-light); }
.section h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; font-weight: 500; }
.section-intro { font-size: 16.5px; line-height: 1.65; color: var(--muted-1); margin: 0; }
.section-intro--light { color: rgba(246,239,225,0.75); }

/* Histoire */
.histoire { background: var(--paper); }
.histoire-grid { display: grid; grid-template-columns: minmax(260px, 440px) 1fr; gap: 56px; align-items: center; }
.histoire-photo { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(43,33,24,0.18); }
.histoire-wrap p { font-size: 16px; line-height: 1.75; color: var(--muted-1); margin: 0 0 16px; }
.histoire-wrap p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .histoire-grid { grid-template-columns: 1fr; }
  .histoire-photo { height: 320px; }
}

/* Ovni */
.ovni { background: var(--panel); color: var(--bg); }
.ovni-grid { display: grid; grid-template-columns: 1fr minmax(260px, 360px); gap: 56px; align-items: center; }
.ovni-wrap h2 { color: #fff; }
.ovni-wrap p { font-size: 16px; line-height: 1.75; color: rgba(246,239,225,0.78); margin: 0 0 16px; }
.ovni-source { font-size: 12.5px !important; color: rgba(246,239,225,0.5) !important; font-style: italic; }
.ovni-photo {
  width: 100%; max-height: 520px; object-fit: contain;
  background: #f4efe4; padding: 14px; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35); border: 1px solid rgba(180,137,79,0.25);
}

@media (max-width: 860px) {
  .ovni-grid { grid-template-columns: 1fr; }
  .ovni-photo { max-height: 420px; }
}

/* Boutique / trésors — dark heritage section */
.tresors { background: var(--panel); color: var(--bg); }
.tresors h2 { color: #fff; }
.tresors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; perspective: 1200px; }
.tresor-card {
  background: rgba(246,239,225,0.04); border: 1px solid rgba(180,137,79,0.22); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.15s ease-out, border-color 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d; will-change: transform;
}
.tresor-card:hover { border-color: var(--gold); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.tresor-card--flagship { border-color: rgba(180,137,79,0.5); }
.tresor-card--flagship .tresor-tag { color: var(--gold); }
.tresor-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.tresor-card--wine img { object-fit: contain; background: #100910; padding: 10px; height: 260px; }
.tresor-card--merch img { object-fit: contain; background: #f4efe4; padding: 18px; height: 260px; }
.tresor-body { padding: 26px; }
.tresor-tag { font-size: 11.5px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 10px; }
.tresor-body h3 { font-size: 19px; color: #fff; margin-bottom: 10px; font-weight: 500; }
.tresor-body p { font-size: 14.5px; line-height: 1.65; color: rgba(246,239,225,0.72); margin: 0; }
.tresor-link { color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.tresor-link:hover { text-decoration: underline; }
.price-list { list-style: none; margin: 16px 0 0; padding: 12px 0 0; border-top: 1px solid rgba(246,239,225,0.14); display: flex; flex-direction: column; gap: 8px; }
.price-list li { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; color: rgba(246,239,225,0.78); }
.price-list li span:last-child { color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.tresor-card--book img { height: 340px; object-position: top; }
.tresor-price { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--gold-light); margin-bottom: 12px; }
@media (max-width: 360px) {
  .tresors-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Brand illustration banner */
.brand-illustration { background: var(--bg); padding: 60px 24px 0; }
.brand-illustration-img { width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(43,33,24,0.18); display: block; }
.brand-illustration-caption { text-align: center; font-size: 13px; color: var(--muted-2); font-style: italic; margin: 16px 0 0; }

/* Postcards gallery */
.cartes-postales { background: var(--bg); }
.postcards-subhead { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-1); margin: 0 0 28px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.postcards-subhead--historic { margin-top: 64px; }

.postcards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px 28px; margin-bottom: 8px; }
.postcard-card { text-align: center; padding-top: 6px; }
.postcard-frame {
  background: #fff; padding: 12px 12px 30px; position: relative; border-radius: 2px;
  box-shadow: 0 16px 34px rgba(43,33,24,0.18), 0 2px 6px rgba(43,33,24,0.1);
  transform: rotate(var(--tilt, -1.5deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.postcard-card:nth-child(even) .postcard-frame { --tilt: 1.5deg; }
.postcard-card:first-child .postcard-frame { --tilt: 0deg; }
.postcard-card:hover .postcard-frame { transform: rotate(0deg) translateY(-6px); box-shadow: 0 22px 44px rgba(43,33,24,0.22); }
.postcard-frame::after {
  content: ''; position: absolute; top: 10px; right: 10px; width: 24px; height: 30px;
  border: 1px dashed rgba(180,137,79,0.7); background: rgba(228,200,140,0.3);
}
.postcard-frame img { width: 100%; height: 170px; object-fit: cover; display: block; }
.postcard-card h4 { font-family: 'Fraunces', serif; font-style: italic; font-size: 15.5px; margin: 16px 0 6px; font-weight: 500; color: var(--ink); }
.postcard-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted-1); margin: 0; padding: 0 6px; }

.postcards-note { text-align: center; font-size: 13px; font-style: italic; color: var(--muted-2); margin: -10px 0 40px; }

.postcards-historic { display: grid; grid-template-columns: minmax(240px, 420px) 1fr; gap: 44px; align-items: center; }
.postcards-historic-img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(43,33,24,0.18); }
.postcards-historic-text p { font-size: 15.5px; line-height: 1.7; color: var(--muted-1); margin: 0 0 14px; }
.postcards-historic-note { font-size: 13px !important; font-style: italic; color: var(--muted-2) !important; }

@media (max-width: 780px) {
  .postcards-historic { grid-template-columns: 1fr; }
  .postcards-historic-img { height: 260px; }
}

/* Assiettes gallery */
.assiettes { background: var(--paper); }
.assiettes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 44px 32px; }
.assiette-card { text-align: center; }
.plate-frame {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; background: #fff;
  box-shadow: 0 20px 45px rgba(43,33,24,0.16), inset 0 0 0 6px rgba(180,137,79,0.16);
  display: flex; align-items: center; justify-content: center; overflow: hidden; margin: 0 auto 18px; max-width: 280px;
}
.plate-frame img { width: 92%; height: 92%; object-fit: contain; }
.assiette-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 500; color: var(--ink); }
.assiette-card p { font-size: 14px; line-height: 1.6; color: var(--muted-1); margin: 0 0 14px; }
.assiette-price { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--wine); margin-bottom: 12px; }
.btn-add-cart {
  background: var(--wine); color: var(--gold-light); font-size: 13.5px; font-weight: 600; padding: 10px 18px;
  border: 1px solid var(--wine); border-radius: var(--radius-sm); cursor: pointer; transition: background 0.25s ease;
}
.btn-add-cart:hover { background: var(--wine-hover); border-color: var(--wine-hover); }
.btn-add-cart.is-added { background: var(--gold); border-color: var(--gold); color: var(--panel); }
.btn-add-cart:disabled { background: var(--muted-2); border-color: var(--muted-2); color: rgba(255,255,255,0.85); cursor: not-allowed; }
.assiette-card.is-sold-out .plate-frame { opacity: 0.55; filter: grayscale(0.4); }
.assiette-card { filter: none; transition: filter 0.35s ease; }
.assiettes-grid.is-focusing .assiette-card { filter: blur(3px) brightness(0.85); }
.assiettes-grid.is-focusing .assiette-card.is-focused { filter: none; }
@media (prefers-reduced-motion: reduce) {
  .assiettes-grid.is-focusing .assiette-card { filter: none; }
}

/* Cart button (header) */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: none; color: var(--ink); cursor: pointer; padding: 6px;
}
.cart-badge {
  position: absolute; top: -6px; right: -8px; background: var(--wine); color: var(--gold-light);
  font-size: 10.5px; font-weight: 700; line-height: 1; padding: 3px 5px; border-radius: 999px; min-width: 16px; text-align: center;
}
.cart-btn--mobile { width: 100%; justify-content: flex-start; font-size: 16px; font-weight: 600; padding: 0; }
.cart-btn--mobile .cart-badge { position: static; margin-left: 4px; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(43,22,32,0.55); z-index: 90; }
.cart-overlay[hidden] { display: none; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; background: var(--paper); z-index: 91;
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  transform: translateX(100%); transition: transform 0.35s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.cart-drawer-head h3 { font-size: 20px; font-weight: 500; }
.cart-close-btn { background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { color: var(--muted-2); font-size: 14.5px; text-align: center; margin-top: 40px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 56px; height: 56px; border-radius: 50%; object-fit: contain; background: #fff; box-shadow: 0 4px 10px rgba(43,33,24,0.12); flex-shrink: 0; }
.cart-item-body { flex: 1; }
.cart-item-name { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--muted-2); margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.cart-qty-btn { width: 24px; height: 24px; border: 1px solid var(--border-strong); background: #fff; border-radius: var(--radius-sm); cursor: pointer; font-size: 14px; line-height: 1; }
.cart-item-remove { margin-left: auto; font-size: 12.5px; color: var(--muted-2); background: none; border: none; cursor: pointer; text-decoration: underline; }
.cart-footer { padding: 20px 24px 26px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.cart-pay-btn { width: 100%; text-align: center; }
.cart-pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-pay-error { font-size: 12.5px; color: #B3452C; font-weight: 600; margin: 10px 0 0; }
.cart-pay-error[hidden] { display: none; }
.cart-order-btn {
  width: 100%; text-align: center; margin-top: 10px; background: transparent; color: var(--ink);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 13px; font-size: 14px; font-weight: 600; cursor: pointer;
}
.cart-order-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-note { font-size: 12px; color: var(--muted-2); line-height: 1.5; margin: 12px 0 0; }

@media (max-width: 640px) {
  .cart-drawer { width: 100%; max-width: 100%; }
}

@media (max-width: 640px) {
  .brand-illustration { padding-top: 40px; }
  .brand-illustration-img { max-height: 360px; }
}

/* Artisan / à propos */
.artisan { background: var(--bg); }
.artisan-grid { display: grid; grid-template-columns: minmax(260px, 400px) 1fr; gap: 56px; align-items: center; }
.artisan-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(43,33,24,0.18);
}
.artisan-photo-frame::before,
.artisan-photo-frame::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}
.artisan-photo-frame::before { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.artisan-photo-frame::after { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }
.artisan-photo { width: 100%; height: 460px; object-fit: cover; display: block; animation: artisan-ken-burns 18s ease-in-out infinite alternate; }
@keyframes artisan-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .artisan-photo { animation: none; }
}
.artisan-wrap p { font-size: 16px; line-height: 1.75; color: var(--muted-1); margin: 0 0 16px; }
.artisan-wrap p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .artisan-grid { grid-template-columns: 1fr; }
  .artisan-photo { height: 320px; }
}

/* Contact */
.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.3fr); gap: 56px; }
.contact-info h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.contact-info > p { font-size: 15.5px; color: var(--muted-1); margin-bottom: 26px; }
.contact-field { margin-bottom: 16px; }
.contact-field-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.contact-field span, .contact-field a { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.contact-socials { display: flex; gap: 12px; margin-top: 2px; }
.contact-field .social-link {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--paper); border: 1px solid var(--border); color: var(--wine);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.social-link svg { width: 17px; height: 17px; fill: currentColor; }
.contact-field .social-link:hover { background: var(--wine); color: var(--gold-light); border-color: var(--wine); }
.contact-map { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 12px 32px rgba(43,33,24,0.1); }
.contact-map iframe { display: block; filter: sepia(12%) saturate(85%); }
.contact-map-placeholder { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; min-height: 260px; padding: 28px 20px; background: var(--paper); justify-content: center; }
.contact-map-pin { width: 30px; height: 30px; fill: var(--wine); }
.contact-map-address { font-size: 14px; color: var(--ink); font-weight: 600; margin: 0; }
.contact-map-btn { width: auto; padding: 11px 22px; font-size: 13.5px; }
.contact-map-note { font-size: 11.5px; color: var(--muted-2); margin: 2px 0 0; }

.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group--full { grid-column: 1 / -1; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--muted-1); }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 11px 13px; font-size: 14.5px; color: var(--ink); background: var(--bg); font-family: 'Inter', sans-serif;
}
.contact-form textarea { resize: vertical; }
.submit-btn { grid-column: 1 / -1; background: var(--wine); color: var(--gold-light); font-size: 15px; font-weight: 700; padding: 15px; border-radius: var(--radius-sm); border: none; cursor: pointer; }
.submit-btn:hover { background: var(--wine-hover); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-confirmation { grid-column: 1 / -1; font-size: 14px; color: var(--wine); font-weight: 600; text-align: center; }
.form-error { grid-column: 1 / -1; font-size: 14px; color: #B3452C; font-weight: 600; text-align: center; }
.form-confirmation[hidden], .form-error[hidden] { display: none; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: var(--panel); padding: 44px 24px; color: rgba(246,239,225,0.7); text-align: center; }
.footer-copyright { font-size: 13px; margin-bottom: 6px; }
.footer-credit { font-size: 12.5px; color: rgba(246,239,225,0.5); }
.footer-credit a { color: var(--gold-light); }
