/* =========================================================
   STYLE.CSS - LE MEVLANA
   Version premium propre : Accueil + Carte + Galerie
========================================================= */

/* =========================================================
   1. VARIABLES
========================================================= */

:root {
  --bg: #fbf7ee;
  --bg-soft: #fffdf8;
  --white: #ffffff;

  --black: #17130d;
  --text: #201c17;
  --text-soft: #5f5548;
  --muted: #8a7d6a;

  --gold: #c49124;
  --gold-dark: #a97912;
  --gold-soft: #ead7aa;
  --gold-pale: #f6ecd8;

  --border: #e7d6b5;
  --border-soft: #f0e4cc;

  --shadow-soft: 0 16px 45px rgba(54, 39, 18, 0.08);
  --shadow-hover: 0 24px 60px rgba(54, 39, 18, 0.16);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1240px;
  --transition: 0.35s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   2. RESET GLOBAL
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201,145,36,0.08), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, var(--bg) 45%, #fffaf0 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 42px, var(--container));
  margin-inline: auto;
}


/* =========================================================
   3. ANIMATIONS
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes pinFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}


/* =========================================================
   4. HEADER GLOBAL
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 145, 36, 0.16);
}

.header-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
}

.brand-script {
  font-family: "Great Vibes", cursive;
  font-size: 3.05rem;
  line-height: 0.86;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #2c2822;
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-sub::after {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #211e19;
  padding: 12px 0;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.phone-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gold-soft);
  color: var(--gold-dark);
  background: rgba(255,255,255,0.78);
  padding: 14px 20px;
  border-radius: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 26px rgba(201,145,36,0.08);
  transition: var(--transition);
}

.phone-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(201,145,36,0.22);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 50px;
  transition: var(--transition);
}


/* =========================================================
   5. BOUTONS
========================================================= */

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #c89524, #aa7a14);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201,145,36,0.24);
}

.btn-outline,
.btn-light {
  background: rgba(255,255,255,0.86);
  color: #29241d;
  border-color: var(--border);
}

.btn-outline:hover,
.btn-light:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 12px 28px rgba(48,35,15,0.08);
}


/* =========================================================
   6. ACCUEIL - HERO
========================================================= */

.hero {
  padding-top: 0;
  background: var(--bg-soft);
}

.hero-grid {
  width: min(100% - 42px, var(--container));
  margin: 18px auto 0;
  min-height: 610px;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}

.hero-content {
  padding: 70px 30px 55px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0 -220px 0 -160px;
  background: linear-gradient(
    90deg,
    var(--bg-soft) 0%,
    var(--bg-soft) 48%,
    rgba(255, 253, 248, 0.92) 65%,
    rgba(255, 253, 248, 0.15) 100%
  );
  z-index: -1;
}

.hero-brand-block h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-block h1 .thin {
  display: block;
  font-size: 4.4rem;
  color: #181511;
  margin-bottom: 12px;
}

.hero-brand-block h1 .gold {
  display: block;
  font-size: 6.4rem;
  color: var(--gold);
}

.hero-script {
  font-family: "Great Vibes", cursive;
  font-size: 2.7rem;
  color: #2b2721;
  margin-top: 24px;
}

.hero-line {
  width: 78px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
  position: relative;
}

.hero-line::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hero-text {
  max-width: 450px;
  color: #4d463d;
  font-size: 1.05rem;
  margin: 30px 0 28px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn {
  width: auto;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 610px;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,253,248,0.85) 0%,
      rgba(255,253,248,0.42) 18%,
      rgba(255,253,248,0) 45%
    );
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  animation: heroZoom 9s ease-in-out infinite alternate;
}


/* =========================================================
   7. ACCUEIL - INFOS
========================================================= */

.hero-meta {
  background: rgba(255,253,248,0.96);
  border-bottom: 1px solid var(--border-soft);
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.95fr 1.35fr;
}

.meta-item {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.meta-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 48px;
  background: var(--border);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.meta-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid rgba(201,145,36,0.5);
  font-size: 1.2rem;
}

.meta-item h4 {
  color: #1f1b16;
  font-size: 1rem;
  font-weight: 800;
}

.meta-item p {
  color: var(--text-soft);
  font-size: 0.92rem;
}


/* =========================================================
   8. ACCUEIL - SECTIONS COMMUNES
========================================================= */

.section {
  padding: 38px 0;
}

.section-title {
  margin-bottom: 27px;
}

.section-title.center {
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 3vw, 3.4rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25211c;
}

.section-title h2 span {
  color: var(--gold);
  display: block;
}

.section-title.center h2 {
  display: inline-block;
  position: relative;
}

.section-title.center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 74px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.section-title.center h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.section-button {
  margin-top: 24px;
  text-align: center;
}


/* =========================================================
   9. ACCUEIL - FOOD CARDS
========================================================= */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.food-card {
  background: #ffffff;
  border: 1px solid #e8d7b8;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(196, 145, 36, 0.55);
}

.food-card-image {
  height: 260px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, #fffdf8, #fbf7ee);
  overflow: hidden;
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: 0.45s ease;
}

.food-card:hover .food-card-image img {
  transform: scale(1.04);
}

.food-card-body {
  padding: 24px 26px 30px;
  text-align: center;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.food-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  color: #b27d14;
  font-size: 2.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-bottom: 16px;
}

.food-card-body p {
  color: #5d544a;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 92%;
  margin: 0 auto;
}


/* =========================================================
   10. ACCUEIL - TASTE / GALLERY / FEATURES / CTA
========================================================= */

.taste-section {
  padding-top: 8px;
}

.taste-grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: 34% 66%;
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.taste-text {
  padding: 48px max(24px, calc((100vw - var(--container)) / 2 + 22px));
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.taste-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -160px;
  width: 260px;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 55%, rgba(255,255,255,0) 100%);
  z-index: -1;
}

.taste-text p {
  color: #5b5247;
  font-size: 1.05rem;
  max-width: 410px;
  line-height: 1.75;
}

.signature {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 2.8rem;
  margin-top: 18px;
}

.taste-image {
  min-height: 360px;
  overflow: hidden;
}

.taste-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.2s ease;
}

.taste-grid:hover .taste-image img {
  transform: scale(1.045);
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-thumb:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,145,36,0.48);
}

.gallery-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: 0.75s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.075);
}

.features-section {
  padding: 26px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-item {
  padding: 24px 14px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.feature-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 54px;
  background: var(--border);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.feature-item:hover {
  background: var(--gold-pale);
}

.feature-item i {
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 9px;
}

.feature-item h4 {
  color: var(--gold-dark);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.9rem;
  color: #5a5147;
}

.final-cta {
  padding: 18px 0 36px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  border-top: 1px solid var(--border-soft);
  padding-top: 26px;
}

.cta-left {
  padding-right: 34px;
}

.cta-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 3.4vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #25211d;
  font-weight: 600;
}

.cta-left h2 span {
  color: var(--gold);
}

.cta-left p {
  margin: 18px 0 16px;
  color: #5a5147;
  font-size: 1.04rem;
}

.cta-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 22px;
  color: #39342e;
  font-weight: 600;
}

.cta-contact-line i {
  color: var(--gold);
  margin-right: 8px;
}

.cta-map-card,
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  min-height: 250px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.real-map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  border: 0;
}

.map-pin {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 3rem;
  animation: pinFloat 2.5s ease-in-out infinite;
}

.map-info {
  text-align: center;
  margin-top: -14px;
}

.map-info h4 {
  color: var(--gold-dark);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-info p {
  color: #4d453a;
  font-weight: 600;
}


/* =========================================================
   11. PAGE CARTE - HERO
========================================================= */

.menu-hero {
  padding: 26px 0 18px;
  background: var(--bg-soft);
}

.menu-hero-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  min-height: 580px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.menu-hero-text {
  padding: 64px 46px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #fffdf8 0%, #fbf8f1 100%);
}

.page-kicker {
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}

.menu-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 18px;
}

.menu-hero h1 span {
  color: var(--gold);
}

.menu-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: #2f2a24;
  line-height: 1.25;
  margin-bottom: 22px;
}

.menu-hero-description {
  max-width: 520px;
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.menu-hero-visual {
  min-height: 580px;
  background: #f4ede0;
  position: relative;
  overflow: hidden;
}

.menu-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   12. PAGE CARTE - NAV CATEGORIES
========================================================= */

.menu-category-section {
  padding: 10px 0 28px;
  background: var(--bg);
}

.menu-category-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.category-link {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--border);
  color: #2b2721;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

.category-link:last-child {
  border-right: none;
}

.category-link i {
  color: var(--gold);
  font-size: 1.06rem;
}

.category-link:hover,
.category-link.active {
  background: linear-gradient(135deg, #c99727, #a87812);
  color: #fff;
}

.category-link:hover i,
.category-link.active i {
  color: #fff;
}


/* =========================================================
   13. PAGE CARTE - SECTIONS MENU
========================================================= */

.menu-section {
  padding: 52px 0;
}

.menu-section-soft {
  background:
    radial-gradient(circle at top left, rgba(201,145,36,0.08), transparent 34%),
    #fffaf0;
  border-top: 1px solid rgba(201,145,36,0.12);
  border-bottom: 1px solid rgba(201,145,36,0.12);
}

.menu-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 38px;
  margin-bottom: 34px;
}

.menu-section-heading.center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.menu-label {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.menu-section-heading h2,
.tacos-content h2,
.menu-final-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.4vw, 4.9rem);
  line-height: 0.95;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.menu-section-heading h2 span,
.tacos-content h2 span,
.menu-final-inner h2 span {
  color: var(--gold);
}

.menu-section-heading p {
  max-width: 470px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.menu-feature-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 28px;
  align-items: stretch;
}

.menu-feature-image {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.menu-feature-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
}

.menu-products-grid {
  display: grid;
  gap: 18px;
}

.menu-products-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.menu-item {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 28px rgba(50, 35, 13, 0.06);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,145,36,0.5);
}

.menu-item h3 {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.menu-item p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.price {
  min-width: 78px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c99727, #a87812);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.08rem;
  box-shadow: 0 12px 24px rgba(201,145,36,0.22);
  white-space: nowrap;
}

.menu-item-highlight {
  background: linear-gradient(135deg, #fff7e3, #ffffff);
  border-color: rgba(201,145,36,0.55);
}


/* =========================================================
   14. PAGE CARTE - SANDWICHS
========================================================= */

.sandwich-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sandwich-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.sandwich-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,145,36,0.5);
}

.sandwich-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(201,145,36,0.10), transparent 55%),
    var(--bg-soft);
}

.sandwich-info {
  padding: 16px 18px 18px;
}

.sandwich-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.72rem;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.dual-price {
  display: grid;
  gap: 8px;
}

.dual-price span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(201,145,36,0.42);
  padding-bottom: 6px;
}

.dual-price em {
  font-style: normal;
}

.dual-price strong {
  color: #fff;
  background: var(--gold);
  min-width: 58px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 8px;
}


/* =========================================================
   15. PAGE CARTE - TACOS / PANINIS / AUTRES
========================================================= */

.tacos-layout {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 32px;
  align-items: stretch;
}

.tacos-content {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
  box-shadow: var(--shadow-soft);
}

.tacos-description {
  color: var(--text-soft);
  max-width: 560px;
  margin: 18px 0 26px;
  line-height: 1.75;
}

.tacos-price-list {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.tacos-row {
  border: 1px solid rgba(201,145,36,0.22);
  background: var(--bg-soft);
  border-radius: 17px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tacos-row h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
}

.tacos-row p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.tacos-prices {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.tacos-prices span {
  min-width: 74px;
  height: 44px;
  background: linear-gradient(135deg, #c99727, #a87812);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.meats-box {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.meats-box h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-dark);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.meats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meats-grid span {
  border: 1px solid var(--border);
  background: #fff;
  color: #302a23;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.tacos-image {
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #fff;
  padding: 16px;
}

.tacos-image img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 19px;
}

.triple-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 22px;
}

.simple-menu-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.simple-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,145,36,0.5);
}

.simple-menu-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.simple-menu-title i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
}

.simple-menu-title h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--black);
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.price-list {
  display: grid;
  gap: 18px;
}

.price-list.compact {
  gap: 10px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(201,145,36,0.5);
  padding-bottom: 10px;
  color: #312b24;
  font-weight: 800;
}

.price-list strong {
  color: var(--gold-dark);
  white-space: nowrap;
}

.mini-title {
  width: fit-content;
  margin: 20px auto 12px;
  background: linear-gradient(135deg, #c99727, #a87812);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 999px;
}

.sauces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sauces-grid span {
  border: 1px solid rgba(201,145,36,0.28);
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--bg-soft);
  color: #302b24;
  font-weight: 800;
  font-size: 0.92rem;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.other-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px;
  transition: var(--transition);
}

.other-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,145,36,0.5);
}

.other-card img {
  width: 150px;
  height: 120px;
  object-fit: contain;
}

.other-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.other-card p {
  color: var(--text-soft);
}

.other-card strong {
  min-width: 82px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c99727, #a87812);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.18rem;
}


/* =========================================================
   16. AVANTAGES COMMUNS CARTE / GALERIE
========================================================= */

.menu-advantages {
  padding: 28px 0 54px;
  background: var(--bg);
}

.menu-advantages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.menu-advantage-card {
  min-height: 175px;
  padding: 28px 16px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.menu-advantage-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 58px;
  background: var(--border);
  transform: translateY(-50%);
}

.menu-advantage-card:hover {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf4e4 100%);
}

.menu-advantage-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(196, 145, 36, 0.10);
  border: 1px solid rgba(196, 145, 36, 0.28);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.22rem;
  margin-bottom: 14px;
}

.menu-advantage-card h3 {
  color: var(--gold-dark);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 1.35;
  margin-bottom: 7px;
}

.menu-advantage-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}


/* =========================================================
   17. CTA FINAL MENU
========================================================= */

.menu-final-cta {
  padding: 18px 0 54px;
}

.menu-final-inner {
  background:
    linear-gradient(rgba(255,253,248,0.9), rgba(255,253,248,0.9)),
    url("../images/hero/hero-home.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.menu-final-inner p {
  max-width: 580px;
  color: var(--text-soft);
  margin-top: 14px;
}

.menu-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}


/* =========================================================
   18. PAGE GALERIE
========================================================= */

.gallery-hero {
  padding: 26px 0 18px;
  background: var(--bg-soft);
}

.gallery-hero-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 580px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-hero-text {
  padding: 64px 46px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #fffdf8 0%, #fbf8f1 100%);
}

.gallery-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 18px;
}

.gallery-hero h1 span {
  color: var(--gold);
}

.gallery-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: #2f2a24;
  line-height: 1.25;
  margin-bottom: 22px;
}

.gallery-hero-description {
  max-width: 520px;
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.gallery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-hero-visual {
  min-height: 580px;
  background: #f4ede0;
  position: relative;
  overflow: hidden;
}

.gallery-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.82) 0%,
    rgba(255, 253, 248, 0.22) 24%,
    rgba(255, 253, 248, 0) 55%
  );
  z-index: 2;
}

.gallery-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 9s ease-in-out infinite alternate;
}

.gallery-filter-section {
  padding: 10px 0 30px;
  background: var(--bg);
}

.gallery-filter-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-filter {
  min-height: 70px;
  border: none;
  border-right: 1px solid var(--border);
  background: transparent;
  color: #2b2721;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter:last-child {
  border-right: none;
}

.gallery-filter i {
  color: var(--gold);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: linear-gradient(135deg, #c99727, #a87812);
  color: #fff;
}

.gallery-filter:hover i,
.gallery-filter.active i {
  color: #fff;
}

.gallery-main-section {
  padding: 54px 0;
}

.gallery-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.gallery-section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
  line-height: 0.95;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.gallery-section-heading h2 span {
  color: var(--gold);
}

.gallery-section-heading p {
  color: var(--text-soft);
  line-height: 1.75;
}

.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.premium-gallery-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #fff;
  transition: var(--transition);
}

.premium-gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.premium-gallery-card.wide {
  grid-column: span 2;
}

.premium-gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(196, 145, 36, 0.52);
}

.gallery-open {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.75s ease;
}

.premium-gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.02) 0%,
    rgba(0,0,0,0.10) 45%,
    rgba(0,0,0,0.72) 100%
  );
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  opacity: 0;
  transition: var(--transition);
}

.premium-gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #f2dba8;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.gallery-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin-top: 8px;
}

.gallery-overlay > i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gallery-mood-section {
  padding: 10px 0 54px;
}

.gallery-mood-card {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-mood-image {
  min-height: 360px;
  overflow: hidden;
}

.gallery-mood-image img {
  height: 100%;
  object-fit: cover;
}

.gallery-mood-text {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-mood-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
  margin: 12px 0 18px;
}

.gallery-mood-text p {
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 650px;
}

.gallery-mood-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gallery-mood-points div {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  color: #332c24;
}

.gallery-mood-points i {
  color: var(--gold);
  margin-right: 8px;
}

.gallery-final-cta {
  padding: 0 0 56px;
}

.gallery-final-inner {
  background:
    linear-gradient(rgba(255,253,248,0.9), rgba(255,253,248,0.9)),
    url("../images/hero/hero-home.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.gallery-final-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
  line-height: 0.95;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 14px;
}

.gallery-final-inner h2 span {
  color: var(--gold);
}

.gallery-final-inner p {
  max-width: 600px;
  color: var(--text-soft);
  line-height: 1.7;
}

.gallery-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


/* =========================================================
   19. LIGHTBOX GALERIE
========================================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(18, 14, 9, 0.86);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-content {
  width: min(1100px, 100%);
  background: var(--bg-soft);
  border: 1px solid rgba(232, 211, 161, 0.45);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.lightbox-content img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #111;
}

.lightbox-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-dark);
  padding: 18px 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lightbox-close {
  position: fixed;
  top: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232, 211, 161, 0.45);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--black);
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 2001;
}


/* =========================================================
   20. POLISH
========================================================= */

.food-card,
.gallery-thumb,
.meta-item,
.feature-item,
.btn,
.phone-btn,
.menu-item,
.sandwich-card,
.simple-menu-card,
.other-card,
.premium-gallery-card {
  will-change: transform;
}
/* =========================================================
   21. PAGE CONTACT & RÉSERVATION
========================================================= */

.contact-hero {
  padding: 26px 0 18px;
  background: var(--bg-soft);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 580px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-hero-text {
  padding: 64px 46px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #fffdf8 0%, #fbf8f1 100%);
}

.contact-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 18px;
}

.contact-hero h1 span {
  color: var(--gold);
}

.contact-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: #2f2a24;
  line-height: 1.25;
  margin-bottom: 22px;
}

.contact-hero-description {
  max-width: 520px;
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero-visual {
  min-height: 580px;
  background: #f4ede0;
  position: relative;
  overflow: hidden;
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.82) 0%,
    rgba(255, 253, 248, 0.22) 24%,
    rgba(255, 253, 248, 0) 55%
  );
  z-index: 2;
}

.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 9s ease-in-out infinite alternate;
}

/* MAIN CONTACT */
.contact-main-section {
  padding: 58px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 28px;
  align-items: start;
}

.reservation-card,
.contact-info-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.reservation-card {
  padding: 42px;
}

.reservation-card h2,
.contact-info-header h2,
.contact-map-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  line-height: 0.95;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.reservation-card h2 span,
.contact-info-header h2 span,
.contact-map-heading h2 span {
  color: var(--gold);
}

.reservation-card > p,
.contact-info-header p,
.contact-map-heading p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.reservation-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--text);
  font-size: 0.96rem;
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(196, 145, 36, 0.12);
}

.form-submit-btn {
  width: fit-content;
  margin-top: 6px;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

/* INFO CARD */
.contact-info-card {
  padding: 34px;
  position: sticky;
  top: 120px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-soft);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(196, 145, 36, 0.5);
  box-shadow: var(--shadow-soft);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 145, 36, 0.10);
  border: 1px solid rgba(196, 145, 36, 0.28);
  color: var(--gold);
}

.contact-info-item h3 {
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.contact-info-item p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-mini-cta {
  margin-top: 22px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7e3, #ffffff);
  border: 1px solid rgba(196, 145, 36, 0.32);
}

.contact-mini-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.contact-mini-cta p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* MAP */
.contact-map-section {
  padding: 0 0 58px;
}

.contact-map-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 30px;
}

.contact-map-card {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}