/*
Theme Name:   Guide Touristique Hongrie
Theme URI:    https://guidetouristiquehongrie.com
Template:     astra
Version:      2.0.0
Description:  Child theme Astra — Design Art déco Budapest, orienté visites guidées francophones SEO
Author:       Guide Touristique Hongrie
Text Domain:  gth
*/

/* ════════════════════════════════════════════════════════════
   VARIABLES
════════════════════════════════════════════════════════════ */
:root {
  --noir:      #0D0B09;
  --encre:     #1A1714;
  --brun:      #2C2520;
  --or:        #BF9B4E;
  --or-clair:  #D4B36A;
  --or-pale:   #E8D49A;
  --rouge:     #8B1A1A;
  --ivoire:    #F5EFE0;
  --sable:     #EAE0CC;
  --muted:     #7A6D5E;
  --blanc:     #FDFAF4;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--blanc);
  color: var(--encre);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Désactive les marges/paddings Astra qui perturbent la home */
body.gth-home .site-content,
body.gth-home #content,
body.gth-home .ast-container,
body.gth-home .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body.gth-home .site-primary,
body.gth-home .ast-article-post,
body.gth-home article.page {
  padding: 0 !important;
  margin: 0 !important;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════════════════════
   OVERRIDES ASTRA HEADER
════════════════════════════════════════════════════════════ */
/* Cacher le header natif Astra sur la home (on a le nôtre) */
body.gth-home #masthead,
body.gth-home .site-header {
  display: none !important;
}

/* Cacher le footer natif Astra sur la home */
body.gth-home .site-footer,
body.gth-home #colophon {
  display: none !important;
}

/* Cacher le titre de page Astra */
body.gth-home .entry-title,
body.gth-home .page-title,
body.gth-home .ast-page-header-content {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHIE
════════════════════════════════════════════════════════════ */
.f-display {
  font-family: 'Bodoni Moda', 'Georgia', serif;
  font-optical-sizing: auto;
}
.f-marcellus { font-family: 'Marcellus', serif; }

/* ════════════════════════════════════════════════════════════
   ORNEMENTS ART DÉCO
════════════════════════════════════════════════════════════ */
.ornament {
  display: block;
  width: 120px; height: 8px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(to right,
    transparent 0%, var(--or) 20%,
    var(--or-pale) 50%, var(--or) 80%, transparent 100%);
  clip-path: polygon(2% 0%, 98% 0%, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
}
.ornament--small { width: 60px; height: 5px; margin: 0 0 1.2rem; }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--or);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--or));
  max-width: 40px;
}
.eyebrow::after { background: linear-gradient(to left, transparent, var(--or)); }

/* ════════════════════════════════════════════════════════════
   BOUTONS
════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .9rem 2.2rem; border-radius: 1px;
  transition: all .28s ease;
  cursor: pointer; border: none;
}
.btn-or {
  background: var(--or); color: var(--noir);
  box-shadow: 0 4px 20px rgba(191,155,78,.3);
}
.btn-or:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(191,155,78,.4);
}
.btn-outline-blanc {
  background: transparent; color: var(--ivoire);
  border: 1px solid rgba(245,239,224,.45);
}
.btn-outline-blanc:hover { border-color: var(--or-clair); color: var(--or-clair); }
.btn-outline-or {
  background: transparent; color: var(--or);
  border: 1px solid var(--or);
}
.btn-outline-or:hover { background: var(--or); color: var(--noir); }

/* ════════════════════════════════════════════════════════════
   TOPBAR CUSTOM
════════════════════════════════════════════════════════════ */
#gth-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(13,11,9,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(191,155,78,.18);
  transition: background .3s;
}
.gth-logo-wrap { display: flex; flex-direction: column; line-height: 1; }
.gth-logo-main {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--or-clair); letter-spacing: .06em;
}
.gth-logo-sub {
  font-size: .56rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,239,224,.45); margin-top: .15rem;
}
nav.gth-nav {
  display: flex; align-items: center; gap: 1.8rem;
}
nav.gth-nav a {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,239,224,.65);
  transition: color .2s;
}
nav.gth-nav a:hover { color: var(--or-clair); }
.gth-nav-phone {
  color: var(--or) !important;
  border: 1px solid rgba(191,155,78,.35);
  padding: .35rem .9rem; border-radius: 1px;
  font-family: 'Marcellus', serif !important;
  font-size: .8rem !important;
  transition: all .2s !important;
}
.gth-nav-phone:hover {
  background: rgba(191,155,78,.12) !important;
  border-color: var(--or) !important;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.gth-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.gth-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,11,9,.25) 0%, rgba(13,11,9,0) 30%, rgba(13,11,9,.82) 75%),
    url('https://images.unsplash.com/photo-1504214208698-ea1916a2195a?w=1920&q=85') center / cover no-repeat;
  animation: gth-drift 22s ease-in-out infinite alternate;
}
@keyframes gth-drift {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.00) translateX(-15px); }
}
.gth-hero__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.045'/%3E%3C/svg%3E");
}
.gth-hero__frame {
  position: absolute; inset: 20px; pointer-events: none; z-index: 2;
  border: 1px solid rgba(191,155,78,.18);
}
.gth-hero__frame::before, .gth-hero__frame::after {
  content: ''; position: absolute;
  width: 40px; height: 40px;
  border-color: var(--or); border-style: solid;
}
.gth-hero__frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.gth-hero__frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.gth-hero__inner {
  position: relative; z-index: 3;
  padding: 0 8vw 8vh; max-width: 860px;
  animation: gth-fadeup 1.1s cubic-bezier(.22,.61,.36,1) .2s both;
}
@keyframes gth-fadeup {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gth-hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--or); border: 1px solid rgba(191,155,78,.4);
  padding: .4rem 1rem; border-radius: 1px;
  background: rgba(191,155,78,.07); margin-bottom: 1.8rem;
}
.gth-hero__badge::before { content: '✦'; font-size: .55rem; }
.gth-hero h1 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.5rem, 5.5vw, 5.2rem); font-weight: 900;
  line-height: 1.05; color: var(--ivoire); margin-bottom: 1rem;
}
.gth-hero h1 em { font-style: italic; color: var(--or-clair); }
.gth-hero__sub {
  font-family: 'Marcellus', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(245,239,224,.78); line-height: 1.7;
  max-width: 540px; margin-bottom: 2.5rem;
}
.gth-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.gth-hero__trust {
  display: flex; align-items: center; gap: 1.4rem;
  margin-top: 2.2rem; flex-wrap: wrap;
}
.gth-trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .06em;
  color: rgba(245,239,224,.55);
}
.gth-trust-item span { color: var(--or); font-size: .85rem; }
.gth-hero__scroll {
  position: absolute; bottom: 2rem; right: 5vw; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,239,224,.35);
}
.gth-hero__scroll::before {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--or));
}

/* ════════════════════════════════════════════════════════════
   STRIP CHIFFRES
════════════════════════════════════════════════════════════ */
.gth-strip {
  background: var(--encre);
  border-top: 1px solid rgba(191,155,78,.15);
  border-bottom: 1px solid rgba(191,155,78,.15);
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.gth-strip::-webkit-scrollbar { display: none; }
.gth-chiffre {
  flex: 1 0 180px; padding: 2.2rem 2rem; text-align: center;
  border-right: 1px solid rgba(191,155,78,.1);
}
.gth-chiffre:last-child { border-right: none; }
.gth-chiffre__num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--or-clair);
  display: block; line-height: 1;
}
.gth-chiffre__label {
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(245,239,224,.38); margin-top: .4rem; display: block;
}

/* ════════════════════════════════════════════════════════════
   SECTION VISITES GUIDÉES
════════════════════════════════════════════════════════════ */
.gth-visites {
  background: var(--noir); padding: 6rem 8vw;
}
.gth-visites__header { text-align: center; margin-bottom: 4rem; }
.gth-visites__header h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; color: var(--ivoire);
  margin-top: .8rem;
}
.gth-visites__header h2 em { font-style: italic; color: var(--or-clair); }
.gth-visites__header p {
  font-family: 'Marcellus', serif;
  font-size: 1.05rem; color: rgba(245,239,224,.55);
  max-width: 560px; margin: 1rem auto 0; line-height: 1.7;
}
.gth-visites__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
}
.gth-visite-card {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; text-decoration: none;
}
.gth-visite-card--large { grid-column: span 2; aspect-ratio: auto; min-height: 500px; }
.gth-visite-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.gth-visite-card:hover .gth-visite-card__img { transform: scale(1.07); }
.gth-visite-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,.94) 0%, rgba(13,11,9,.3) 45%, transparent 65%);
  transition: background .4s;
}
.gth-visite-card:hover .gth-visite-card__overlay {
  background: linear-gradient(to top, rgba(13,11,9,.96) 0%, rgba(13,11,9,.5) 55%, transparent 70%);
}
.gth-visite-card__body { position: relative; z-index: 2; padding: 1.8rem 2rem; }
.gth-visite-card--large .gth-visite-card__body { padding: 2.4rem 3rem; }
.gth-visite-card__tag {
  font-size: .58rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--or); display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem;
}
.gth-visite-card__tag::before { content: '✦'; font-size: .5rem; }
.gth-visite-card__title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--ivoire);
  line-height: 1.2; margin-bottom: .4rem;
}
.gth-visite-card--large .gth-visite-card__title { font-size: 2.1rem; }
.gth-visite-card__desc {
  font-size: .82rem; color: rgba(245,239,224,.62);
  line-height: 1.6; margin-bottom: .8rem;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .3s; opacity: 0;
}
.gth-visite-card:hover .gth-visite-card__desc { max-height: 80px; opacity: 1; }
.gth-visite-card--large .gth-visite-card__desc { max-height: 60px; opacity: 1; }
.gth-visite-card__cta {
  font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--or-clair); display: flex; align-items: center; gap: .4rem;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s .05s, transform .3s .05s;
}
.gth-visite-card:hover .gth-visite-card__cta,
.gth-visite-card--large .gth-visite-card__cta { opacity: 1; transform: translateX(0); }
.gth-visite-card__meta {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--or); background: rgba(13,11,9,.75);
  border: 1px solid rgba(191,155,78,.3); padding: .3rem .7rem;
  border-radius: 1px; backdrop-filter: blur(8px);
}

/* ════════════════════════════════════════════════════════════
   SECTION POURQUOI
════════════════════════════════════════════════════════════ */
.gth-pourquoi { background: var(--ivoire); padding: 6rem 8vw; }
.gth-pourquoi__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.gth-pourquoi__media { position: relative; }
.gth-pourquoi__img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px; filter: sepia(12%) contrast(1.05);
}
.gth-pourquoi__img-frame {
  position: absolute; inset: -16px -16px 16px 16px;
  border: 1px solid rgba(191,155,78,.3); border-radius: 2px;
  pointer-events: none; z-index: -1;
}
.gth-pourquoi__badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--noir); border: 1px solid rgba(191,155,78,.3);
  padding: 1.2rem 1.5rem; border-radius: 2px; text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.gth-pourquoi__badge-stars { color: var(--or); font-size: .95rem; letter-spacing: .08em; }
.gth-pourquoi__badge-score {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem; font-weight: 700; color: var(--ivoire);
  display: block; line-height: 1; margin: .2rem 0 .1rem;
}
.gth-pourquoi__badge-source {
  font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,239,224,.4);
}
.gth-pourquoi__content h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 1.2rem; color: var(--encre);
}
.gth-pourquoi__content h2 em { font-style: italic; color: #8A6820; }
.gth-pourquoi__content > p {
  font-family: 'Marcellus', serif;
  font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem;
}
.gth-atouts { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.2rem; }
.gth-atout {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.2rem; border: 1px solid var(--sable);
  border-radius: 2px; background: var(--blanc);
  transition: border-color .25s, box-shadow .25s;
}
.gth-atout:hover { border-color: var(--or); box-shadow: 0 4px 20px rgba(191,155,78,.1); }
.gth-atout__icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 42px; height: 42px; background: rgba(191,155,78,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.gth-atout__text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--encre); margin-bottom: .2rem; }
.gth-atout__text span { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ════════════════════════════════════════════════════════════
   SECTION EXCURSIONS
════════════════════════════════════════════════════════════ */
.gth-excursions { background: var(--blanc); padding: 6rem 8vw; }
.gth-excursions__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.gth-excursions__header h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--encre);
}
.gth-excursions__header h2 em { font-style: italic; color: #8A6820; }
.gth-excursions__header p { font-family: 'Marcellus', serif; font-size: 1rem; color: var(--muted); max-width: 340px; line-height: 1.65; }
.gth-excursions__list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.gth-excursion {
  border: 1px solid var(--sable); border-radius: 2px; overflow: hidden;
  text-decoration: none; display: block;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.gth-excursion:hover {
  border-color: rgba(191,155,78,.5); box-shadow: 0 8px 30px rgba(191,155,78,.08);
  transform: translateY(-3px);
}
.gth-excursion__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }
.gth-excursion:hover .gth-excursion__img { transform: scale(1.05); }
.gth-excursion__body { padding: 1.2rem; }
.gth-excursion__tag {
  font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--or); display: flex; align-items: center; gap: .35rem; margin-bottom: .4rem;
}
.gth-excursion__title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem; font-weight: 700; color: var(--encre); line-height: 1.25; margin-bottom: .4rem;
}
.gth-excursion__desc { font-size: .78rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; }
.gth-excursion__footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  border-top: 1px solid var(--sable); padding-top: .7rem; margin-top: .4rem;
}
.gth-excursion__duree { color: var(--muted); }
.gth-excursion__lien { color: var(--or); }

/* ════════════════════════════════════════════════════════════
   SECTION NICHES SEO
════════════════════════════════════════════════════════════ */
.gth-niches { background: var(--encre); padding: 6rem 8vw; }
.gth-niches__header { text-align: center; margin-bottom: 4rem; }
.gth-niches__header h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--ivoire);
}
.gth-niches__header h2 em { color: var(--or-clair); font-style: italic; }
.gth-niches__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; border: 1px solid rgba(191,155,78,.12);
  overflow: hidden; border-radius: 2px;
}
.gth-niche {
  padding: 2.2rem 2rem; background: var(--brun);
  border-right: 1px solid rgba(191,155,78,.1);
  border-bottom: 1px solid rgba(191,155,78,.1);
  text-decoration: none; display: block;
  transition: background .25s; position: relative; overflow: hidden;
}
.gth-niche::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.gth-niche:hover { background: rgba(44,37,32,.8); }
.gth-niche:hover::before { transform: scaleX(1); }
.gth-niche__num {
  font-family: 'Bodoni Moda', serif; font-size: 3.5rem; font-weight: 900;
  color: rgba(191,155,78,.12); position: absolute; top: .8rem; right: 1.2rem;
  line-height: 1; pointer-events: none;
}
.gth-niche__icon { font-size: 1.7rem; display: block; margin-bottom: 1rem; }
.gth-niche h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--ivoire); margin-bottom: .55rem;
}
.gth-niche p { font-size: .82rem; color: rgba(245,239,224,.52); line-height: 1.65; margin-bottom: .8rem; }
.gth-niche__kw { display: flex; flex-wrap: wrap; gap: .35rem; }
.gth-kw {
  font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--or); border: 1px solid rgba(191,155,78,.25);
  padding: .18rem .5rem; border-radius: 1px;
}

/* ════════════════════════════════════════════════════════════
   SECTION AVIS
════════════════════════════════════════════════════════════ */
.gth-avis { background: var(--ivoire); padding: 6rem 8vw; }
.gth-avis__header { text-align: center; margin-bottom: 3.5rem; }
.gth-avis__header h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--encre);
}
.gth-avis__header h2 em { font-style: italic; color: #8A6820; }
.gth-avis__score {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 1rem; flex-wrap: wrap;
}
.gth-avis__stars { color: var(--or); font-size: 1.2rem; letter-spacing: .08em; }
.gth-avis__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.gth-avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gth-avis-card {
  background: var(--blanc); border: 1px solid var(--sable);
  border-radius: 2px; padding: 1.8rem; position: relative; overflow: hidden;
  transition: box-shadow .3s;
}
.gth-avis-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.07); }
.gth-avis-card__quote {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Bodoni Moda', serif; font-size: 5rem; font-weight: 900;
  color: var(--sable); line-height: 1; pointer-events: none;
}
.gth-avis-card__stars { color: var(--or); font-size: .82rem; margin-bottom: .7rem; }
.gth-avis-card__title { font-family: 'Bodoni Moda', serif; font-size: 1rem; font-weight: 700; color: var(--encre); margin-bottom: .7rem; }
.gth-avis-card p { font-family: 'Marcellus', serif; font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.3rem; }
.gth-avis-card__author {
  display: flex; align-items: center; gap: .7rem;
  border-top: 1px solid var(--sable); padding-top: 1rem;
}
.gth-avis-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--sable);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bodoni Moda', serif; font-weight: 700; color: #8A6820; font-size: .95rem;
}
.gth-avis-card__name { font-size: .82rem; font-weight: 700; color: var(--encre); display: block; }
.gth-avis-card__loc  { font-size: .72rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   CTA RÉSERVATION
════════════════════════════════════════════════════════════ */
.gth-cta {
  background: var(--noir); padding: 5.5rem 8vw; text-align: center;
  position: relative; overflow: hidden;
}
.gth-cta::before {
  content: 'BUDAPEST'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bodoni Moda', serif; font-size: 20vw; font-weight: 900;
  color: rgba(191,155,78,.04); white-space: nowrap; pointer-events: none; letter-spacing: .08em;
}
.gth-cta h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--ivoire); margin-bottom: .8rem; position: relative;
}
.gth-cta h2 em { color: var(--or-clair); font-style: italic; }
.gth-cta > p {
  font-family: 'Marcellus', serif; font-size: 1.1rem;
  color: rgba(245,239,224,.55); max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.7; position: relative;
}
.gth-cta__btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }
.gth-cta__guarantees {
  display: flex; justify-content: center; gap: 2rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.gth-guarantee {
  display: flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,239,224,.35);
}
.gth-guarantee span { color: var(--or); }

/* ════════════════════════════════════════════════════════════
   FOOTER CUSTOM
════════════════════════════════════════════════════════════ */
.gth-footer {
  background: var(--encre); padding: 4.5rem 8vw 2rem;
  border-top: 1px solid rgba(191,155,78,.1);
}
.gth-footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(191,155,78,.08); margin-bottom: 2rem;
}
.gth-footer__brand {
  font-family: 'Bodoni Moda', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--or-clair); display: block; margin-bottom: .8rem;
}
.gth-footer__brand em { font-style: italic; font-weight: 400; color: rgba(245,239,224,.6); }
.gth-footer__desc {
  font-family: 'Marcellus', serif; font-size: .9rem;
  color: rgba(245,239,224,.42); line-height: 1.7; margin-bottom: 1.2rem;
}
.gth-footer__contact a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(245,239,224,.5); margin-bottom: .4rem; transition: color .2s;
}
.gth-footer__contact a:hover { color: var(--or-clair); }
.gth-footer__contact a span { color: var(--or); }
.gth-footer__col h5 {
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--or); margin-bottom: 1.1rem;
}
.gth-footer__col ul { list-style: none; }
.gth-footer__col li { margin-bottom: .5rem; }
.gth-footer__col a { font-size: .82rem; color: rgba(245,239,224,.45); transition: color .2s; }
.gth-footer__col a:hover { color: var(--or-clair); }
.gth-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .7rem; color: rgba(245,239,224,.25); flex-wrap: wrap; gap: .5rem;
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS SCROLL
════════════════════════════════════════════════════════════ */
.gth-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.gth-reveal.gth-visible { opacity: 1; transform: translateY(0); }
.gth-reveal:nth-child(2) { transition-delay: .1s; }
.gth-reveal:nth-child(3) { transition-delay: .2s; }
.gth-reveal:nth-child(4) { transition-delay: .3s; }
.gth-reveal:nth-child(5) { transition-delay: .4s; }
.gth-reveal:nth-child(6) { transition-delay: .5s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gth-visites__grid { grid-template-columns: 1fr 1fr; }
  .gth-visite-card--large { grid-column: 1 / -1; min-height: 360px; }
  .gth-excursions__list { grid-template-columns: repeat(2, 1fr); }
  .gth-niches__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 850px) {
  .gth-visites, .gth-niches, .gth-cta { padding: 4rem 6vw; }
  .gth-pourquoi { padding: 4rem 6vw; }
  .gth-excursions { padding: 4rem 6vw; }
  .gth-avis { padding: 4rem 6vw; }
  nav.gth-nav { display: none; }
  .gth-pourquoi__inner { grid-template-columns: 1fr; gap: 3rem; }
  .gth-pourquoi__media { max-width: 400px; }
  .gth-avis__grid { grid-template-columns: 1fr; }
  .gth-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .gth-visites__grid { grid-template-columns: 1fr; }
  .gth-visite-card--large { min-height: 280px; }
  .gth-excursions__list { grid-template-columns: 1fr; }
  .gth-niches__grid { grid-template-columns: 1fr; }
  .gth-strip { flex-wrap: wrap; }
  .gth-chiffre { flex: 1 0 50%; border-bottom: 1px solid rgba(191,155,78,.1); }
  .gth-footer__top { grid-template-columns: 1fr; }
  .gth-hero__frame { display: none; }
}
