/* ═══════════════════════════════════════════════════
   CASA MIGMAG — Feuille de style
   ─────────────────────────────────────────────────
   1. Reset & Variables
   2. Navbar
   3. Menu mobile
   4. Vues & Boutons
   5. Home — Hero
   6. Home — Slideshow
   7. Home — Features
   8. Story
   9. Huile
  10. Clients
  11. Contact
  12. Footer
═══════════════════════════════════════════════════ */


/* ── 1. RESET & VARIABLES ── */

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

:root {
  --black:    #0a0a0a;
  --gold:     #C5A059;
  --gold-dim:   rgba(197, 160, 89, 0.15);
  --gold-faint: rgba(197, 160, 89, 0.1);
  --cream:    #F5F5F0;
  --gray:     #1F1F1F;
  --cream70:  rgba(245, 245, 240, 0.7);
  --cream60:  rgba(245, 245, 240, 0.6);
  --cream40:  rgba(245, 245, 240, 0.4);
  --cream20:  rgba(245, 245, 240, 0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::selection        { background: var(--gold); color: var(--black); }
::-webkit-scrollbar        { width: 3px; }
::-webkit-scrollbar-track  { background: var(--black); }
::-webkit-scrollbar-thumb  { background: var(--gold); }

img    { display: block; max-width: 100%; }
button { cursor: pointer; }


/* ── 2. NAVBAR ── */

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: all .7s ease;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, .95);
  border-bottom: 1px solid var(--gray);
  padding: .6rem 3rem;
}

.nav-logo { cursor: pointer; display: flex; align-items: center; z-index: 50; }
.nav-logo svg { width: 130px; height: auto; color: var(--gold); transition: width .5s; }
#navbar.scrolled .nav-logo svg { width: 96px; }

.nav-links { display: flex; align-items: center; gap: 3rem; list-style: none; }
.nav-links button {
  background: none; border: none;
  color: var(--cream); font-family: 'Inter', sans-serif;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  transition: color .3s; padding: 0;
}
.nav-links button:hover,
.nav-links button.active { color: var(--gold); }

/* Sélecteur de langue */
.lang-wrap { position: relative; }
.lang-btn {
  background: none; border: none;
  color: var(--gold); font-family: 'Inter', sans-serif;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; align-items: center; gap: .3rem;
}
.lang-dd {
  display: none; position: absolute; top: calc(100% + .5rem); right: 0;
  background: var(--black); border: 1px solid var(--gray);
  min-width: 68px; flex-direction: column; box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.lang-dd.open { display: flex; }
.lang-dd button {
  background: none; border: none;
  color: var(--cream); font-family: 'Inter', sans-serif;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .55rem 1rem; text-align: center; transition: color .2s;
}
.lang-dd button:hover,
.lang-dd button.active { color: var(--gold); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; color: var(--gold); }
.hamburger svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

@media (max-width: 768px) {
  #navbar         { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: .5rem 1.5rem; }
  .nav-links      { display: none; }
  .hamburger      { display: block; }
  .nav-right .lang-wrap { display: flex; }
}


/* ── 3. MENU MOBILE ── */

#mob-menu {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%); transition: transform .5s ease;
}
#mob-menu.open { display: flex; transform: translateX(0); }
#mob-menu button {
  background: none; border: none;
  color: var(--cream); font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 400; transition: color .3s;
}
#mob-menu button:hover { color: var(--gold); }
.mob-close {
  position: absolute !important; top: 1.5rem; right: 2rem;
  color: var(--gold) !important; font-size: 2rem !important;
  font-family: 'Inter', sans-serif !important;
}


/* ── 4. VUES & BOUTONS ── */

.view        { display: none; }
.view.active { display: block; }

.btn {
  display: inline-block; padding: .8rem 2.4rem;
  font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  border: 1px solid; background: transparent;
  transition: all .5s ease;
}
.btn-gold  { border-color: var(--gold);  color: var(--gold); }
.btn-gold:hover  { background: var(--gold);  color: var(--black); }
.btn-cream { border-color: var(--cream); color: var(--cream); }
.btn-cream:hover { background: var(--cream); color: var(--black); }


/* ══════════════════════════════
   5. HOME — HERO
══════════════════════════════ */

.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .6; animation: breathe 10s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1.05); }
  50%       { transform: scale(1); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.6) 0%, transparent 45%, rgba(10,10,10,1) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 0 1.5rem; max-width: 900px; margin: 0 auto;
  animation: fadeUp 1.3s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-wrap { margin-bottom: 2rem; }
.hero-logo-wrap svg {
  width: 256px; height: auto; color: var(--gold);
  margin: 0 auto; filter: drop-shadow(0 4px 24px rgba(0,0,0,.7));
}
.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 400;
  color: var(--cream); letter-spacing: .04em;
  margin-bottom: 3rem; text-shadow: 0 4px 24px rgba(0,0,0,.5); line-height: 1.15;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }


/* ══════════════════════════════
   6. HOME — SLIDESHOW
   ➜ Config dans js/script.js → const SLIDESHOW
══════════════════════════════ */

.slideshow-section { background: var(--black); padding: 5rem 3rem; }
.slide-label { text-align: center; margin-bottom: 1.5rem; }
.slide-label span { color: var(--gold); font-size: .62rem; letter-spacing: .4em; text-transform: uppercase; }

.slideshow {
  position: relative; height: 600px;
  border: 1px solid rgba(255,255,255,.05); overflow: hidden;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide img,
.slide video { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.6) 0%, transparent 55%);
}

@media (max-width: 768px) {
  .slideshow         { height: 300px; }
  .slideshow-section { padding: 3rem 1.5rem; }
}


/* ══════════════════════════════
   7. HOME — FEATURES
══════════════════════════════ */

.features-section { padding: 6rem 3rem; background: rgba(31,31,31,.18); }
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.feature-item {
  text-align: center; padding: 2rem 1rem;
  border: 1px solid transparent; transition: border-color .5s;
}
.feature-item:hover { border-color: var(--gold-dim); }
.f-icon { width: 2rem; height: 2rem; margin: 0 auto 1rem; color: var(--gold); }
.f-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.f-label { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); transition: color .3s; }
.feature-item:hover .f-label { color: var(--gold); }

@media (max-width: 768px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-section { padding: 3rem 1.5rem; }
}


/* ══════════════════════════════
   8. STORY
══════════════════════════════ */

.story-pt { padding-top: 5rem; background: var(--black); }
.story-block { display: flex; }
.story-block.rev { flex-direction: row-reverse; }

.s-img { width: 50%; position: relative; overflow: hidden; }
.s-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(1); transition: filter 1s, transform 1.2s;
}
.s-img:hover img { filter: grayscale(0); transform: scale(1.04); }

/* Photos en entier — coins touchent les bords */
.story-block .s-img {
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.story-block .s-img img {
  position: static; inset: auto; width: 100%; height: auto; object-fit: unset;
}
.story-block.rev .s-img img { filter: none; }
.story-block.rev .s-img:hover img { transform: none; }

.s-txt {
  width: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center; padding: 4rem 5.5rem;
}
.s-inner { max-width: 460px; }
.s-bar { width: 3rem; height: 3px; background: var(--gold); margin-bottom: 2rem; }
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 400;
  color: var(--cream); margin-bottom: 1.8rem; line-height: 1.1;
}
.s-body {
  color: var(--cream60); font-size: .97rem;
  line-height: 1.9; text-align: justify; margin-bottom: 1.2rem; font-weight: 300;
}

@media (max-width: 768px) {
  .story-block,
  .story-block.rev { flex-direction: column; }
  .s-img  { width: 100%; height: 90vw; min-height: 200px; }
  .s-txt  { width: 100%; padding: 3rem 1.5rem; }
  .story-block:not(.rev) .s-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
}


/* ══════════════════════════════
   9. HUILE
══════════════════════════════ */

/* Hero produit */
.oil-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: row; align-items: center; padding-top: 7rem;
}
.oil-hero-img { width: 50%; height: 100vh; position: relative; overflow: hidden; order: 1; }
.oil-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.oil-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.4), transparent);
}
.oil-hero-txt { width: 50%; padding: 3rem 5rem 3rem 4rem; order: 2; display: flex; align-items: center; }
.oil-hero-inner { max-width: 520px; }
.oil-edition { color: var(--gold); font-size: .62rem; letter-spacing: .4em; text-transform: uppercase; display: block; margin-bottom: 1.2rem; }
.oil-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 6rem); color: var(--cream);
  line-height: 1; margin-bottom: 1.5rem; font-weight: 400;
}
.oil-hero-h1 span { color: var(--gold); font-style: italic; }
.oil-hero-desc { font-size: 1.1rem; color: var(--cream60); font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; }
.oil-purity { display: flex; align-items: center; gap: .75rem; color: var(--gold); }
.oil-purity svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.oil-purity span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }

@media (max-width: 900px) {
  .oil-hero         { flex-direction: column; padding-top: 5rem; min-height: auto; }
  .oil-hero-img     { width: 100%; height: 60vw; min-height: 250px; order: 2; }
  .oil-hero-img::after { background: linear-gradient(to top, rgba(10,10,10,.4), transparent); }
  .oil-hero-txt     { width: 100%; padding: 3rem 1.5rem; order: 1; }
}

/* Histoire & Caractéristiques */
.oil-history { padding: 6rem 3rem; background: rgba(31,31,31,.1); }
.oil-history-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.oh-img-wrap { display: flex; flex-direction: column; gap: 3rem; }
.oh-img { position: relative; overflow: hidden; }
.oh-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1s; }
.oh-img:hover img { transform: scale(1.04); }
.oh-origin-label { padding-left: 3rem; border-left: 1px solid rgba(197,160,89,.3); }
.oh-origin-label p:first-child { font-size: .62rem; color: var(--gold); letter-spacing: .3em; text-transform: uppercase; }
.oh-origin-label p:last-child  { color: var(--cream40); font-family: 'Playfair Display', serif; font-style: italic; font-size: .9rem; margin-top: .3rem; }
.oh-txt  { position: relative; }
.oh-year {
  position: absolute; left: -2.5rem; top: 0;
  font-family: 'Playfair Display', serif; font-size: 6rem;
  color: rgba(197,160,89,.08); line-height: 1;
  pointer-events: none; user-select: none;
}
.oh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem); color: var(--cream);
  margin-bottom: 1.5rem; line-height: 1.1; position: relative; z-index: 1;
}
.oh-divider { width: 4rem; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.oh-text { font-size: 1rem; color: var(--cream70); font-weight: 300; line-height: 1.9; text-align: justify; margin-bottom: 3rem; }
.oh-chars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.oh-char { padding: 1.5rem; background: var(--black); border: 1px solid var(--gray); transition: border-color .3s; }
.oh-char:hover { border-color: rgba(197,160,89,.5); }
.oh-char-label { font-size: .62rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; display: block; margin-bottom: .4rem; }
.oh-char-val   { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); }

@media (max-width: 900px) {
  .oil-history-inner { grid-template-columns: 1fr; gap: 3rem; }
  .oh-year           { display: none; }
  .oil-history       { padding: 4rem 1.5rem; }
}

/* Dégustation */
.oil-tasting { padding: 6rem 3rem; background: var(--black); }
.tasting-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.tasting-label  { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); font-style: italic; margin-bottom: 1.5rem; }
.tasting-line   { width: 1px; height: 4rem; background: linear-gradient(to bottom, var(--gold), transparent); margin: 0 auto; }
.tasting-grid   { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.tasting-card   { display: flex; flex-direction: column; gap: 1.5rem; }
.tasting-img    { aspect-ratio: 1; overflow: hidden; border: 1px solid var(--gray); }
.tasting-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: .5; transition: filter .7s, opacity .7s; }
.tasting-card:hover .tasting-img img { filter: grayscale(0); opacity: 1; }
.tasting-cat  { font-size: .62rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; margin-bottom: .6rem; }
.tasting-text { color: var(--cream70); font-weight: 300; line-height: 1.7; font-style: italic; }

@media (max-width: 768px) {
  .tasting-grid { grid-template-columns: 1fr; }
  .oil-tasting  { padding: 4rem 1.5rem; }
}

/* Origine & Carte */
.oil-origin { padding: 4rem 3rem 6rem; border-top: 1px solid rgba(31,31,31,1); }
.oil-origin-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.origin-text h4 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.origin-text p  { font-size: .88rem; color: var(--cream40); line-height: 1.9; max-width: 340px; letter-spacing: .02em; }
.origin-map     { width: 220px; flex-shrink: 0; }
.origin-map img { width: 100%; height: auto; display: block; border-radius: 2px; }

@media (max-width: 768px) {
  .oil-origin  { padding: 3rem 1.5rem; }
  .origin-map  { width: 150px; }
}


/* ══════════════════════════════
   10. CLIENTS
══════════════════════════════ */

.clients-intro { padding: 9rem 3rem 4rem; text-align: center; background: var(--black); }
.clients-intro-label { font-size: .62rem; color: var(--gold); letter-spacing: .4em; text-transform: uppercase; display: block; margin-bottom: 1.5rem; }
.clients-intro-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--cream); font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem; }
.clients-intro-title em { color: var(--gold); font-style: italic; }
.clients-intro-desc { color: var(--cream60); font-size: .95rem; font-weight: 300; line-height: 1.8; max-width: 560px; margin: 0 auto; }

/* Section pays */
.country-section { padding: 5rem 3rem; border-top: 1px solid var(--gray); background: var(--black); }
.country-section:nth-child(even) { background: rgba(31,31,31,.12); }

.cs-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 3.5rem; }
.cs-country-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cream);
  font-weight: 400; white-space: nowrap; flex-shrink: 0;
}
.cs-line   { flex: 1; height: 1px; background: linear-gradient(to right, rgba(197,160,89,.4), transparent); }
.cs-line.r { background: linear-gradient(to left, rgba(197,160,89,.4), transparent); }

/* Bloc featured (grande photo + liste) */
.cs-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray); margin-bottom: 1.5rem; overflow: hidden;
}
.cs-photo {
  position: relative; min-height: 420px; overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
}
.cs-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(.3); opacity: .8;
  transition: filter 1s, transform 1.2s;
}
.cs-photo:hover img { filter: grayscale(0); transform: scale(1.04); }
.cs-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.75) 0%, transparent 60%);
  pointer-events: none;
}
.cs-photo-city {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 1;
  font-size: .6rem; color: var(--gold); letter-spacing: .35em; text-transform: uppercase;
}

.cs-list { padding: 2.5rem; background: rgba(12,12,12,.7); display: flex; flex-direction: column; justify-content: center; }
.cs-list-city {
  font-size: .6rem; color: var(--gold); letter-spacing: .35em; text-transform: uppercase;
  margin-bottom: 1.8rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(197,160,89,.2);
}

.cs-resto { display: flex; align-items: flex-start; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(245,245,240,.05); }
.cs-resto:last-child { border-bottom: none; }
.cs-stars { font-size: .65rem; color: var(--gold); letter-spacing: .05em; flex-shrink: 0; padding-top: .2rem; min-width: 3rem; }
.cs-rname { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--cream); margin-bottom: .25rem; line-height: 1.2; }
.cs-rchef { font-size: .68rem; color: var(--cream40); letter-spacing: .06em; }

/* Cartes secondaires */
.cs-secondary { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.cs-sec-card { border: 1px solid var(--gray); overflow: hidden; transition: border-color .4s, transform .35s; }
.cs-sec-card:hover { border-color: rgba(197,160,89,.4); transform: translateY(-3px); }
.cs-sec-photo {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, #111, #1c1c1c);
}
.cs-sec-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(.4); opacity: .75;
  transition: filter .8s, transform 1s;
}
.cs-sec-card:hover .cs-sec-photo img { filter: grayscale(0); transform: scale(1.05); }
.cs-sec-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.7) 0%, transparent 55%);
  pointer-events: none;
}
.cs-sec-city {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 1;
  font-size: .6rem; color: var(--gold); letter-spacing: .3em; text-transform: uppercase;
}
.cs-sec-body { padding: 1.2rem 1.5rem; }

@media (max-width: 900px) {
  .cs-featured   { grid-template-columns: 1fr; }
  .cs-photo      { min-height: 260px; }
  .cs-list       { padding: 2rem 1.5rem; }
  .country-section { padding: 4rem 1.5rem; }
}
@media (max-width: 768px) {
  .clients-intro { padding: 7rem 1.5rem 3rem; }
  .cs-secondary  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cs-secondary  { grid-template-columns: 1fr; }
}


/* ══════════════════════════════
   11. CONTACT
══════════════════════════════ */

.contact-view {
  min-height: 100vh; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  padding: 9rem 1.5rem 4rem;
}
.contact-inner { width: 100%; max-width: 560px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--cream);
  margin-bottom: .8rem; font-weight: 400;
}
.contact-title span { color: var(--gold); }
.contact-desc { color: var(--cream60); font-size: .95rem; line-height: 1.7; }

.contact-form-wrap {
  background: rgba(31,31,31,.3); padding: 3rem;
  border: 1px solid var(--gray); backdrop-filter: blur(4px);
}
.contact-form .field { margin-bottom: 1.8rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(245,245,240,.2);
  padding: .75rem 0; color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 300;
  outline: none; transition: border-color .3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--cream40); }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--gold); }
.contact-form textarea { resize: none; height: 110px; }
.contact-form-submit { text-align: center; margin-top: 2rem; }

@media (max-width: 768px) {
  .contact-form-wrap { padding: 2rem 1.5rem; }
}


/* ── 12. FOOTER ── */

footer { background: var(--black); border-top: 1px solid var(--gray); padding: 3rem 1.5rem; text-align: center; }
.footer-logo svg { width: 96px; height: auto; color: var(--gold); opacity: .5; margin: 0 auto 1.5rem; }
.footer-copy { font-size: .62rem; color: rgba(245,245,240,.3); letter-spacing: .2em; text-transform: uppercase; }
