/* ==========================================================================
   template2.css — Style "Classique / Élégant" (vert foncé + or, serif)
   ========================================================================== */

body { background: #fffdf8; font-family: 'Inter', sans-serif; }
.t2-serif { font-family: 'Playfair Display', serif; }

/* ---------- Header ---------- */
.t2-topbar {
  background: var(--primary-color);
  color: #f4e9c9;
  font-size: 13px;
  padding: 8px 0;
}
.t2-topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.t2-topbar span { margin-right: 20px; }
.t2-topbar i { margin-right: 6px; color: #d4af37; }

.t2-header { background: #fffdf8; border-bottom: 1px solid #eee3c8; position: sticky; top: 0; z-index: 100; }
.t2-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
.t2-logo { display: flex; align-items: center; gap: 12px; }
.t2-logo-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-color); color: #d4af37; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.t2-logo-text strong { font-size: 21px; color: var(--primary-color); display: block; }
.t2-logo-text small { font-size: 11px; letter-spacing: 2px; color: #b08d2e; }

.t2-nav { display: flex; gap: 30px; }
.t2-nav a { color: #2c3b34; font-size: 14.5px; font-weight: 500; }
.t2-nav a.active, .t2-nav a:hover { color: var(--primary-color); border-bottom: 2px solid #d4af37; padding-bottom: 4px; }

.t2-btn-book {
  background: #d4af37;
  color: #1c2b21;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.t2-btn-book:hover { background: #c19a2e; }
.t2-menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary-color); cursor: pointer; }

/* ---------- Hero ---------- */
.t2-hero { position: relative; background: var(--primary-color); overflow: hidden; }
.t2-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 560px; }
.t2-hero-content { padding: 60px 24px 60px 0; color: #fff; position: relative; z-index: 2; }
.t2-hero-content .t2-eyebrow { color: #d4af37; letter-spacing: 3px; font-size: 13px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 16px; }
.t2-hero-content h1 { font-size: 44px; line-height: 1.2; margin: 0 0 22px; font-weight: 700; }
.t2-hero-content h1 .accent { color: #d4af37; }
.t2-hero-content p { font-size: 16px; line-height: 1.8; color: #d8e3dd; max-width: 460px; margin-bottom: 30px; }
.t2-hero-actions { display: flex; gap: 16px; margin-bottom: 34px; }
.t2-btn-outline-light { border: 1.5px solid #d4af37; color: #d4af37; padding: 12px 24px; border-radius: 4px; font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }

#hero-badges-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 420px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: #f4e9c9; }
.hero-badge-icon { color: #d4af37; font-size: 18px; }

.t2-hero-image-wrap { position: relative; height: 100%; min-height: 560px; }
.t2-hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.t2-hero-image-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 30%);
  z-index: 1;
}
.t2-frame-corner {
  position: absolute;
  border: 2px solid #d4af37;
  width: 120px; height: 120px;
  bottom: 30px; right: 30px;
  z-index: 2;
}

/* ---------- Services ---------- */
.t2-section { padding: 90px 0; }
.t2-section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.t2-eyebrow { color: #b08d2e; font-weight: 700; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.t2-section-head h2 { font-size: 34px; font-weight: 700; margin: 0; color: var(--primary-color); }
.t2-divider { width: 60px; height: 3px; background: #d4af37; margin: 18px auto 0; }

#services-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: #fff;
  border: 1px solid #f0e6c8;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: 0 18px 36px rgba(15,76,58,0.12); transform: translateY(-6px); }
.service-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%;
  background: #f4f1e2;
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border: 1px solid #d4af37;
}
.service-card h3 { font-size: 19px; margin: 0 0 12px; color: var(--primary-color); font-weight: 700; }
.service-card p { color: #6b7a71; font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; }
.service-link { color: #b08d2e; font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: .5px; }

.t2-view-all { text-align: center; margin-top: 46px; }
.t2-view-all a { border: 1.5px solid var(--primary-color); color: var(--primary-color); padding: 13px 30px; font-weight: 700; font-size: 14px; letter-spacing: .5px; }

/* ---------- About ---------- */
.t2-about { background: #f7f2e4; }
.t2-about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.t2-about-image { position: relative; }
.t2-about-image img { border-radius: 4px; }
.t2-about-image::before {
  content: "";
  position: absolute; inset: -16px auto auto -16px;
  width: 100%; height: 100%;
  border: 2px solid #d4af37;
  z-index: -1;
}
.t2-about-content h2 { font-size: 32px; font-weight: 700; margin: 12px 0 18px; color: var(--primary-color); }
.t2-about-content > p { color: #55655d; line-height: 1.8; margin-bottom: 24px; }

#why-points-container { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 13px; }
#why-points-container li { color: #2c3b34; font-size: 14.5px; font-weight: 500; }
#why-points-container li i { color: #d4af37; margin-right: 10px; }

#info-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.info-card { display: flex; gap: 14px; align-items: flex-start; }
.info-card-icon { color: var(--primary-color); font-size: 20px; margin-top: 3px; }
.info-card h4 { font-size: 14.5px; margin: 0 0 4px; color: var(--primary-color); }
.info-card p { font-size: 13px; color: #6b7a71; margin: 0; line-height: 1.5; }

/* ---------- Testimonial ---------- */
.t2-testimonial { background: var(--primary-color); padding: 70px 0; text-align: center; }
.t2-testimonial i.quote { font-size: 28px; color: #d4af37; }
.t2-testimonial blockquote { font-size: 21px; font-weight: 500; max-width: 720px; margin: 18px auto; color: #fff; line-height: 1.7; font-family: 'Playfair Display', serif; font-style: italic; }
.t2-testimonial cite { color: #d4af37; font-size: 14px; font-style: normal; letter-spacing: .5px; }

/* ---------- CTA ---------- */
.t2-cta-wrap { padding: 70px 0; }
.t2-cta {
  background: #fff;
  border: 1.5px solid #d4af37;
  border-radius: 6px;
  padding: 44px 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  max-width: 1152px; margin-inline: auto;
}
.t2-cta-left { display: flex; align-items: center; gap: 20px; }
.t2-cta-icon { width: 58px; height: 58px; border-radius: 50%; background: #f4f1e2; color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 24px; border: 1px solid #d4af37; flex-shrink: 0; }
.t2-cta h3 { margin: 0 0 6px; font-size: 22px; color: var(--primary-color); font-family: 'Playfair Display', serif; }
.t2-cta p { margin: 0; color: #6b7a71; font-size: 14.5px; }

/* ---------- Footer ---------- */
.t2-footer { background: #12241c; color: #b8c4bd; padding: 70px 0 24px; }
.t2-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 44px; }
.t2-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.t2-footer-logo-icon { width: 40px; height: 40px; border-radius: 50%; background: #d4af37; color: #12241c; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.t2-footer-logo strong { color: #fff; font-size: 19px; font-family: 'Playfair Display', serif; }
.t2-footer p { font-size: 14px; line-height: 1.7; color: #8ea092; }
.t2-footer h4 { color: #d4af37; font-size: 14.5px; margin: 0 0 18px; letter-spacing: 1px; text-transform: uppercase; }
.t2-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.t2-footer ul li a { color: #8ea092; font-size: 14px; }
.t2-footer ul li a:hover { color: #fff; }
.t2-footer .contact-item { display: flex; gap: 10px; font-size: 14px; margin-bottom: 13px; color: #8ea092; }
.t2-footer .contact-item i { color: #d4af37; margin-top: 3px; }
.t2-social { display: flex; gap: 10px; margin-top: 18px; }
.t2-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(212,175,55,0.15); display: flex; align-items: center; justify-content: center; color: #d4af37; }
.t2-footer-bottom { border-top: 1px solid rgba(212,175,55,0.15); padding-top: 22px; display: flex; justify-content: space-between; font-size: 13px; color: #6b7a71; flex-wrap: wrap; gap: 10px; }
.t2-footer-bottom a { color: #6b7a71; margin-left: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .t2-nav { display: none; }
  .t2-menu-toggle { display: block; }
  .t2-hero-grid, .t2-about-grid { grid-template-columns: 1fr; }
  .t2-hero-content { padding: 50px 24px; }
  .t2-hero-content h1 { font-size: 32px; }
  #services-container { grid-template-columns: 1fr 1fr; }
  .t2-footer-grid { grid-template-columns: 1fr 1fr; }
  .t2-cta { flex-direction: column; text-align: center; padding: 32px; }
}
@media (max-width: 600px) {
  #services-container { grid-template-columns: 1fr; }
  #info-cards-container { grid-template-columns: 1fr; }
  .t2-footer-grid { grid-template-columns: 1fr; }
  .t2-hero-content h1 { font-size: 27px; }
  #hero-badges-container { grid-template-columns: 1fr; }
}
