/* ============================================================
   TOUITIGROUP — Identité visuelle partagée
   Source unique de vérité : index.html (accueil)
   Noir #0a0a0a + or #c9a84c→#f5e070 · Cormorant Garamond + Montserrat
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #f5e070;
  --gold-dark: #8a6d1e;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --ivory: #f7f4ee;
  --stone: #a39063;
  --ink: #201d18;
  --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-press: cubic-bezier(0.4, 0, 0.6, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; }

::selection { background: rgba(201,168,76,0.3); color: #fff; }

/* ===== NAVBAR ===== */
nav.tg-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.tg-nav.scrolled {
  background: rgba(10,10,10,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 10px 60px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 58px; width: auto; display: block; transition: height 0.3s ease; }
nav.tg-nav.scrolled .nav-logo-img { height: 44px; }

.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); position: relative; transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background 0.3s ease, color 0.3s ease !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.nav-lang { display: flex; gap: 6px; align-items: center; }
.nav-lang a {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.55); text-decoration: none; padding: 4px 6px;
  transition: color 0.3s;
}
.nav-lang a:hover, .nav-lang a[aria-current="true"] { color: var(--gold); }
.nav-lang span { color: #333; font-size: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 34px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 26px; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; letter-spacing: 3px; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-lang { display: flex; gap: 16px; margin-top: 16px; }
.mobile-menu .mobile-lang a { font-size: 14px; letter-spacing: 1px; color: rgba(255,255,255,0.6); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 170px 60px 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -240px; right: -200px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }

.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: center;
}
.hero-photo-frame {
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.22);
  aspect-ratio: 4 / 5;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-badge {
  position: absolute; top: 16px; inset-inline-start: 16px;
  background: var(--gold); color: var(--black);
  padding: 7px 14px; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ===== PHOTO PAIR (2 photos côte à côte) ===== */
.photo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px;
}
.photo-pair .hero-photo-frame { aspect-ratio: 3 / 2; margin: 0; }
@media (max-width: 820px) {
  .photo-pair { grid-template-columns: 1fr; }
}

/* ===== TAGS / TITLES ===== */
.tg-tag {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.tg-tag-line { width: 34px; height: 1px; background: var(--gold); }
.tg-tag-text {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
}

.tg-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 74px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 22px;
}
.tg-h1 strong, .tg-h1 span.hl {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 15px; font-weight: 300; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.82); line-height: 1.9; max-width: 620px;
}

.section-tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-tag-line { width: 30px; height: 1px; background: var(--gold); }
.section-tag-text {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.12; margin-bottom: 18px;
}
.section-title strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gold-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0;
}
[dir="rtl"] .gold-divider { background: linear-gradient(270deg, var(--gold), transparent); }

/* ===== SECTIONS ===== */
.tg-section { padding: 100px 60px; position: relative; }
.tg-section-inner { max-width: 1200px; margin: 0 auto; }
.tg-section.narrow .tg-section-inner { max-width: 900px; }

.section-light {
  background: var(--ivory);
  color: var(--ink);
}
.section-light .section-tag-text { color: var(--gold-dark); }
.section-light .section-tag-line { background: var(--gold-dark); }
.section-light .section-title { color: var(--ink); }
.section-light .section-title strong {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-light .prose p { color: var(--ink); opacity: 0.85; }

/* ===== PROSE (article content) ===== */
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; line-height: 1.2;
  margin: 44px 0 14px; color: var(--white);
}
.prose h2:first-child { margin-top: 0; }
.section-light .prose h2 { color: var(--ink); }
.prose p {
  font-size: 14.5px; line-height: 1.95;
  color: rgba(255,255,255,0.8); margin-bottom: 16px;
  max-width: 760px;
}
[dir="rtl"] .prose p, [dir="rtl"] .hero-lead { max-width: 780px; }
.prose ul { margin: 0 0 18px; padding-inline-start: 22px; max-width: 760px; }
.prose li { font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.section-light .prose li { color: var(--ink); opacity: 0.85; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold-light); }
.prose strong { color: var(--white); }
.section-light .prose strong { color: var(--ink); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.3); }

/* ===== BUTTONS ===== */
.btn-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 36px; }
.btn-row.center { justify-content: center; }
.btn-primary {
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  position: relative; overflow: hidden; display: inline-block;
  transition: transform 0.2s var(--ease-out-smooth), box-shadow 0.2s var(--ease-out-smooth);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.45s var(--ease-out-smooth);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.4); }
.btn-primary:active { transform: translateY(0) scale(0.96); transition: transform 0.12s var(--ease-press); }

.btn-secondary {
  color: var(--white); text-decoration: none;
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s var(--ease-out-smooth);
}
.btn-secondary::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
  transition: width 0.25s var(--ease-out-smooth);
}
.btn-secondary:hover { color: var(--gold); }
.btn-secondary:hover::after { width: 46px; }
.section-light .btn-secondary { color: var(--ink); }
.section-light .btn-secondary:hover { color: var(--gold-dark); }

/* ===== CARDS (service grid) ===== */
.card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 20px;
}
.tg-card {
  background: var(--dark2);
  padding: 44px 38px;
  position: relative; overflow: hidden;
  transition: background 0.4s ease, transform 0.4s ease;
  text-decoration: none; color: inherit; display: block;
}
.tg-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.26;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.tg-card-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.9) 100%);
}
.tg-card > *:not(.tg-card-bg):not(.tg-card-overlay) { position: relative; z-index: 1; }
.tg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.tg-card:hover::before { transform: scaleX(1); }
.tg-card:hover { background: #1f1f1f; transform: translateY(-4px); }
.tg-card:hover .tg-card-bg { opacity: 0.4; transform: scale(1.05); }
.tg-card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700;
  color: rgba(201,168,76,0.14); line-height: 1; margin-bottom: 18px;
  transition: color 0.4s;
}
.tg-card:hover .tg-card-num { color: rgba(201,168,76,0.28); }
.tg-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.tg-card-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.7; }
.tg-card-arrow {
  margin-top: 22px; color: var(--gold); font-size: 16px;
  opacity: 0; transform: translateX(-8px); transition: all 0.3s ease;
}
[dir="rtl"] .tg-card-arrow { transform: translateX(8px); }
.tg-card:hover .tg-card-arrow { opacity: 1; transform: translateX(0); }

/* ===== METHOD STEPS ===== */
.method-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px;
}
.method-step { background: #ffffff; border: 1px solid #d9d3c6; padding: 28px 20px; text-align: center; }
.method-step-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 30px; color: var(--gold-dark); margin-bottom: 8px;
}
.method-step-title { font-size: 12.5px; font-weight: 600; color: var(--ink); }

/* ===== MONOCOUCHE BENEFITS (chips) ===== */
.mono-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 36px;
}
.mono-benefit {
  background: #ffffff; border: 1px solid #d9d3c6; padding: 22px 14px;
  text-align: center; font-size: 12px; font-weight: 600;
  letter-spacing: 0.3px; color: var(--ink);
}
@media (max-width: 700px) { .mono-benefits { grid-template-columns: 1fr 1fr; } }

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center; margin-top: 20px;
}
.trust-item { padding: 0 12px; border-inline-start: 1px solid #d9d3c6; }
.trust-item:first-child { border-inline-start: none; }
.trust-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 32px; color: var(--gold-dark); margin-bottom: 6px;
}
.trust-label { font-size: 11px; line-height: 1.5; color: var(--ink); opacity: 0.8; }

/* ===== CALLOUT (quality note) ===== */
.callout {
  margin-top: 36px; padding: 26px 30px;
  background: rgba(201,168,76,0.05);
  border-inline-start: 2px solid var(--gold);
  max-width: 820px;
}
.callout p { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,0.82); margin: 0; }
.callout strong { color: var(--gold); }
.section-light .callout { background: #ffffff; border-color: var(--gold-dark); }
.section-light .callout p { color: var(--ink); }
.section-light .callout strong { color: var(--gold-dark); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 820px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid rgba(201,168,76,0.15); background: var(--black); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: none; border: none; cursor: pointer;
  text-align: start; font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--white); transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-q { margin: 0; font: inherit; color: inherit; font-weight: inherit; }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 26px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 26px 24px; }
.faq-answer p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.85; }

/* ===== ABOUT LOGO BADGE ===== */
.about-visual { position: relative; }
.about-box-main {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-logo-badge {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 40px 50px;
  background: radial-gradient(ellipse at 30% 20%, #221d15 0%, #0d0b08 70%);
  border-radius: 14px; position: relative; border: 1px solid #3a3020;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about-logo-badge::before {
  content: ''; position: absolute; inset: 12px; border-radius: 9px;
  border: 2px solid;
  border-image: linear-gradient(135deg, #f3dc8f, #a9822f, #f3dc8f, #7a5f22) 1;
}
.about-logo-img { width: 240px; max-width: 60vw; height: auto; display: block; position: relative; z-index: 2; }
.about-year {
  position: absolute; bottom: 20px; inset-inline-end: 22px;
  font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-badge {
  position: absolute; top: -18px; inset-inline-start: -16px;
  background: var(--dark); border: 1px solid var(--gold); padding: 14px 18px;
}
.about-badge-text { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 4px; }
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--white); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.info-card { padding: 22px 24px; border: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.03); }
.info-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.info-card p { font-size: 12.5px; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }
.info-card .role { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.value-item { padding: 16px 20px; border-inline-start: 2px solid var(--gold); background: rgba(201,168,76,0.04); }
.value-item .t { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.value-item .d { font-size: 12px; color: rgba(255,255,255,0.8); }

/* ===== CTA PANEL (avis / contact) ===== */
.cta-panel {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 44px 40px; text-align: center; max-width: 780px; margin-top: 32px;
}
.cta-panel h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.cta-panel p { font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.8; margin: 0 auto 22px; max-width: 520px; }
.cta-panel .btn-row { justify-content: center; margin-top: 0; }

/* ===== GALLERY (réalisations) ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.gallery-item {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15); background: var(--dark2);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); }
.gallery-item-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(10,10,10,0.55); border: 1px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.gallery-item-play::before {
  content: ''; width: 0; height: 0;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-left: 14px solid var(--gold-light); margin-left: 4px;
}
.gallery-caption {
  position: absolute; bottom: 0; inset-inline: 0; padding: 16px 18px;
  background: linear-gradient(to top, rgba(10,10,10,0.92), transparent);
}
.gallery-caption-title {
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--white);
}
.gallery-caption-sub { font-size: 10px; color: var(--gold); letter-spacing: 1px; margin-top: 2px; }
.gallery-note {
  text-align: center; margin-top: 40px;
  font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT (section + formulaire devis) ===== */
.section-contact { position: relative; }
.section-contact::before {
  content: ''; position: absolute; top: 0; inset-inline: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.contact-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 22px;
  border: 1px solid rgba(201,168,76,0.1); transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(201,168,76,0.4); }
.contact-item-icon {
  width: 44px; height: 44px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); flex-shrink: 0;
}
.contact-item-label {
  font-size: 10px; letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 6px;
}
.contact-item-value { font-size: 14px; color: var(--white); line-height: 1.6; }
.map-wrap {
  margin-top: 24px; border: 1px solid rgba(201,168,76,0.25); overflow: hidden;
}
.map-wrap iframe { display: block; }
.map-gbp-link {
  display: block; margin-top: 10px; text-align: center;
  color: var(--gold); text-decoration: none; font-size: 12px; font-weight: 600;
  transition: color 0.2s var(--ease-out-smooth);
}
.map-gbp-link:hover { color: var(--gold-light); }
.contact-cta-wrap {
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.2);
  padding: 44px 36px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.contact-cta-icon {
  width: 64px; height: 64px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700;
  color: var(--gold); margin-bottom: 20px;
}
.contact-cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.contact-cta-text {
  font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7;
  max-width: 320px; margin-bottom: 24px;
}
.quote-form { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 12px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 13px; outline: none;
  transition: border-color 0.2s;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); }
.quote-form select { appearance: none; cursor: pointer; }
.quote-form select option { background: var(--dark2); color: var(--white); }
.quote-form textarea { resize: vertical; }
.contact-cta-btn {
  width: 100%; margin-top: 6px; padding: 16px 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black);
  border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: transform 0.2s var(--ease-out-smooth), box-shadow 0.2s var(--ease-out-smooth);
}
.contact-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.35); }
.contact-cta-btn:active { transform: translateY(0) scale(0.96); transition: transform 0.12s var(--ease-press); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ===== FOOTER ===== */
.tg-footer {
  padding: 56px 60px;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
}
.tg-footer-logo img { height: 34px; width: auto; display: block; }
.tg-footer-social { display: flex; gap: 10px; margin-top: 12px; }
.tg-footer-social a {
  width: 30px; height: 30px; border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; font-size: 11px; font-weight: 700;
  transition: transform 0.2s var(--ease-out-smooth), background 0.2s, color 0.2s;
}
.tg-footer-social a:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.tg-footer-links { display: flex; flex-direction: column; gap: 6px; font-size: 11px; text-align: center; }
.tg-footer-links a { color: #c9c9c9; text-decoration: none; transition: color 0.3s; }
.tg-footer-links a:hover { color: var(--gold); }
.tg-footer-ids { font-size: 10px; color: #bbb; letter-spacing: 1px; line-height: 1.8; text-align: center; }
.tg-footer-copy { font-size: 11px; color: #bbb; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-btn {
  position: fixed; bottom: 28px; inset-inline-end: 24px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 998; text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 11px; font-weight: 700; color: var(--black);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(201,168,76,0.6); }
.maps-btn {
  position: fixed; bottom: 92px; inset-inline-end: 24px;
  width: 52px; height: 52px;
  background: var(--dark2); border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998; text-decoration: none; font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.maps-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease-out-smooth), transform 0.55s var(--ease-out-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-frame { aspect-ratio: 16/10; order: 2; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .method-steps { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .trust-item { border-inline-start: none; }
}
@media (max-width: 960px) {
  .nav-links, .nav-lang { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 820px) {
  nav.tg-nav { padding: 14px 22px; }
  nav.tg-nav.scrolled { padding: 10px 22px; }
  .page-hero { padding: 130px 22px 70px; }
  .tg-section { padding: 70px 22px; }
  .tg-footer { padding: 40px 22px; flex-direction: column; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .method-steps { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .about-year { font-size: 44px; }
}
