:root{
  --terracotta:#b86d5c;
  --terracotta-dark:#9f5b4c;
  --bg:#f6f3f1;
  --surface:#ffffff;
  --text:#2f2a28;
  --muted:#6f6763;
  --border:#e7dfdb;
  --max:1180px;
  --radius:10px;
  --shadow:0 8px 30px rgba(0,0,0,.06);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.topbar{
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px 0;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}

.brand strong{
  font-size:1.02rem;
  letter-spacing:.2px;
}

.brand span{
  font-size:.9rem;
  color:var(--muted);
}

.menu{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.menu a{
  color:var(--muted);
  font-size:.96rem;
  white-space:nowrap;
}

.menu a.active,
.menu a:hover{
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  background:var(--terracotta);
  color:#fff;
  border-radius:4px;
  border:1px solid var(--terracotta);
  transition:.2s ease;
  text-align:center;
}

.btn:hover{
  background:var(--terracotta-dark);
  border-color:var(--terracotta-dark);
}

.btn-outline{
  background:transparent;
  color:var(--terracotta);
}

.btn-outline:hover{
  background:var(--terracotta);
  color:#fff;
}

/* HERO */
.hero{
  padding:72px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  color:var(--terracotta);
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.3px;
  margin-bottom:10px;
}

.hero h1,
.page-hero h1{
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.1;
  margin:0 0 18px;
}

.hero p.lead,
.page-hero p{
  font-size:1.05rem;
  color:var(--muted);
  margin:0 0 24px;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-card img{
  width:100%;
  height:520px;
  object-fit:cover;
}

/* SECTIONS */
.section{
  padding:26px 0 70px;
}

.section-head{
  max-width:760px;
  margin-bottom:26px;
}

.section-head h2{
  font-size:1.8rem;
  margin:0 0 10px;
}

.section-head p{
  margin:0;
  color:var(--muted);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.card h2,
.card h3{
  margin-top:0;
}

.card h3{
  margin-bottom:10px;
  font-size:1.08rem;
}

.card p{
  margin:0 0 14px;
  color:var(--muted);
}

.card p:last-child{
  margin-bottom:0;
}

.quote{
  padding:28px;
  border-left:4px solid var(--terracotta);
  background:var(--surface);
  border-radius:0 var(--radius) var(--radius) 0;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.quote p{
  margin:0;
  font-size:1.04rem;
}

.info-list{
  display:grid;
  gap:14px;
}

.info-row{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px 18px;
  box-shadow:var(--shadow);
}

.info-row strong{
  display:block;
  margin-bottom:4px;
}

.gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:14px;
}

.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.gallery img:first-child{
  height:534px;
  grid-row:span 2;
}

.page-hero{
  padding:56px 0 22px;
}

.page-hero .box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}

.two-col{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:26px;
  align-items:start;
}

.profile-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.profile-box img{
  width:100%;
  height:460px;
  object-fit:cover;
}

.profile-box .inner{
  padding:18px;
}

.list{
  padding-left:18px;
  margin:0;
}

.list li{
  margin-bottom:10px;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.badge{
  background:#f1e4df;
  color:#7d4e42;
  border:1px solid #ead2ca;
  border-radius:999px;
  padding:8px 12px;
  font-size:.92rem;
}

.cta-box{
  background:linear-gradient(135deg, #fff 0%, #f3e4df 100%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
}

/* FORM */
form{
  display:grid;
  gap:14px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

input,
textarea{
  width:100%;
  padding:14px 14px;
  border:1px solid #d8ceca;
  border-radius:6px;
  background:#fff;
  color:var(--text);
  font:inherit;
}

textarea{
  min-height:140px;
  resize:vertical;
}

button{
  font:inherit;
  cursor:pointer;
}

small.help{
  color:var(--muted);
  display:block;
  margin-top:-4px;
}

.footer{
  margin-top:40px;
  padding:26px 0 34px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:.94rem;
}

/* TABLET */
@media (max-width: 980px){
  .hero-grid,
  .grid-2,
  .grid-3,
  .two-col,
  .gallery,
  .form-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:48px 0 30px;
  }

  .hero-card img{
    height:420px;
  }

  .gallery img,
  .gallery img:first-child{
    height:280px;
    grid-row:auto;
  }

  .profile-box img{
    height:420px;
  }

  .menu{
    gap:14px;
  }
}

/* MOBILE */
@media (max-width: 768px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .topbar{
    position:static;
  }

  .nav{
    min-height:auto;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:14px 0;
  }

  .brand{
    width:100%;
  }

  .brand strong{
    font-size:1rem;
  }

  .brand span{
    font-size:.88rem;
  }

  .menu{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .menu a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 12px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:6px;
    font-size:.92rem;
  }

  .menu a.btn{
    background:var(--terracotta);
    color:#fff;
    border-color:var(--terracotta);
  }

  .hero{
    padding:28px 0 20px;
  }

  .hero-grid{
    gap:20px;
  }

  .hero h1,
  .page-hero h1{
    font-size:2rem;
    line-height:1.15;
  }

  .hero p.lead,
  .page-hero p{
    font-size:1rem;
    line-height:1.6;
  }

  .actions{
    flex-direction:column;
    align-items:stretch;
  }

  .actions .btn{
    width:100%;
  }

  .hero-card img{
    height:320px;
  }

  .page-hero{
    padding:28px 0 10px;
  }

  .page-hero .box{
    padding:22px 18px;
  }

  .section{
    padding:18px 0 42px;
  }

  .section-head{
    margin-bottom:18px;
  }

  .section-head h2,
  .card h2{
    font-size:1.45rem;
  }

  .card{
    padding:18px;
  }

  .quote{
    padding:20px;
  }

  .quote p{
    font-size:1rem;
  }

  .info-row{
    padding:14px 16px;
  }

  .gallery{
    gap:12px;
  }

  .gallery img,
  .gallery img:first-child{
    height:220px;
  }

  .profile-box img{
    height:320px;
  }

  .profile-box .inner{
    padding:14px 16px;
  }

  .badge{
    font-size:.88rem;
    padding:7px 10px;
  }

  .cta-box{
    padding:22px 18px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  input,
  textarea{
    padding:13px 12px;
    font-size:16px; /* évite le zoom iPhone */
  }

  button.btn,
  .btn{
    min-height:46px;
  }

  .footer{
    margin-top:20px;
    padding:20px 0 26px;
    font-size:.9rem;
  }
}

/* PETITS MOBILES */
@media (max-width: 480px){
  .menu{
    grid-template-columns:1fr;
  }

  .hero h1,
  .page-hero h1{
    font-size:1.7rem;
  }

  .eyebrow{
    font-size:.84rem;
  }

  .hero-card img,
  .profile-box img,
  .gallery img,
  .gallery img:first-child{
    height:200px;
  }

  .card,
  .cta-box,
  .page-hero .box{
    border-radius:8px;
  }
}

/* MENU HAMBURGER */
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:6px;
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  box-shadow:var(--shadow);
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:.2s ease;
}

@media (max-width: 768px){
  .nav{
    position:relative;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .brand{
    flex:1;
    min-width:0;
  }

  .menu-toggle{
    display:flex;
  }

  .menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:10px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:10px;
    box-shadow:var(--shadow);
    padding:12px;
    grid-template-columns:1fr;
    gap:10px;
    z-index:100;
  }

  .menu.open{
    display:grid;
  }

  .menu a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 12px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:6px;
    font-size:.95rem;
  }

  .menu a.btn{
    background:var(--terracotta);
    color:#fff;
    border-color:var(--terracotta);
  }

  .menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
}