:root {
  --creme: #eae7df;
  --gold: #dec08f;
  --brun: #673302;
  --brun-dark: #4a2402;
  --white: #faf9f7;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--brun-dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(234, 231, 223, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(103, 51, 2, 0.1);
}

.logo-link img,
nav img.logo {
  height: 70px;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brun);
  text-transform: uppercase;
  transition: opacity 0.2s;
}

nav ul li a:hover {
  opacity: 0.6;
}

.btn-rdv {
  background: var(--brun);
  color: var(--creme) !important;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s !important;
}

.btn-rdv:hover {
  background: var(--brun-dark) !important;
  opacity: 1 !important;
}

.page-hero {
  padding: 140px 72px 100px;
  background: var(--brun-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(222, 192, 143, 0.1) 0%, transparent 65%);
}

.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(222, 192, 143, 0.6);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--creme);
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.page-hero .desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(234, 231, 223, 0.72);
  margin-bottom: 40px;
}

.cta-gold {
  background: var(--gold);
  color: var(--brun-dark);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(103, 51, 2, 0.25);
}

.section {
  padding: 80px 72px;
}

.section .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.label::before {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.text {
  font-size: 16px;
  line-height: 1.75;
  color: #6b4f38;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.card {
  display: block;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(103, 51, 2, 0.09);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(103, 51, 2, 0.12);
  border-color: rgba(103, 51, 2, 0.2);
}

.card-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--brun);
  margin-bottom: 10px;
}

.card-text {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4030;
}

.section-dark {
  background: var(--brun-dark);
  color: var(--creme);
}

.section-dark h2,
.section-dark .label {
  color: var(--creme);
}

.section-dark .text-light {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(234, 231, 223, 0.8);
  margin-bottom: 32px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
  align-items: center;
}

.dark-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.dark-card {
  background: rgba(222, 192, 143, 0.08);
  border: 1px solid rgba(222, 192, 143, 0.25);
  border-radius: 14px;
  padding: 24px 22px;
}

.dark-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dark-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(234, 231, 223, 0.8);
}

.photo-block {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-band {
  background: var(--gold);
  padding: 60px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--brun-dark);
  max-width: 520px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-dark {
  background: var(--brun-dark);
  color: var(--creme);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-dark:hover {
  background: #2d1400;
  transform: translateY(-2px);
}

.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brun-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

footer {
  background: var(--brun-dark);
  padding: 40px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(234, 231, 223, 0.65);
  font-size: 13px;
}

footer address {
  font-style: normal;
}

@media (max-width: 900px) {
  .page-hero { padding: 110px 24px 72px; }
  .section { padding: 56px 24px; }
  .cards { grid-template-columns: 1fr; }
  .two-col { gap: 40px; }
  .photo-block { min-height: 320px; }
  .cta-band { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  nav { padding: 14px 20px; }
  nav ul { display: none; }
}
