/* Brand palette inspired by your flyer:
   cream background, teal/sage accents, slate text, soft shadows
*/
:root{
  --bg: #efebe0;          /* warm cream */
  --panel: rgba(255,255,255,.55);
  --panel-strong: rgba(255,255,255,.72);

   /* --text: #238680;       near-black slate */
  --text: #323646;   /* deep slate (clean & elegant) */
  --muted: rgba(38,42,43,.72);

  --teal: #699993;        /* teal accent */
  --sage: #6f8478;        /* sage green */
  --slate: #323646;       /* deep slate */

  --border: rgba(38,42,43,.14);
  --shadow: 0 18px 40px rgba(50,54,70,.10);
  --radius: 18px;

  --container: 1100px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 15% -10%, rgba(105,153,147,.18), transparent 60%),
              radial-gradient(900px 600px at 110% 0%, rgba(111,132,120,.16), transparent 60%),
              var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(239,235,224,.70);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.brand-mark{
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-name{
  font-weight: 800;
  letter-spacing: .2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  color: rgba(38,42,43,.78);
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover{
  background: rgba(255,255,255,.45);
  text-decoration: none;
}
.nav-cta{
  border: 1px solid rgba(105,153,147,.45);
  background: rgba(105,153,147,.12);
}

/* Sections / cards */
.section{
  padding: 44px 0;
}
.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.grid{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.grid.two{
  grid-template-columns: repeat(2, 1fr);
}

/* Services grid: 2x2 looks better with 4 cards */
.services-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* Hero */
.hero{
  padding: 54px 0 18px;
}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.12;
}
.pill-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.50);
  font-weight: 600;
}
.pill.primary{
  border-color: rgba(105,153,147,.55);
  background: rgba(105,153,147,.16);
}
.hero-visual{
  background: transparent;
}
.hero-visual img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 26px 0 40px;
}

/* Responsive */
@media (max-width: 900px){
  .nav{ display:none; }
  .grid{ grid-template-columns: 1fr; }
  .grid.two{ grid-template-columns: 1fr; }
  .hero-wrap{ grid-template-columns: 1fr; }
}

/* Tarifs page */
.tarifs-header { margin-bottom: 18px; }

.tarifs-title{
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  color: var(--teal);
  letter-spacing: .2px;
}

.tarifs-grid{
  columns: 2;
  column-gap: 16px;
}

.tarif-card{
  background: rgba(255,255,255,.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  
  break-inside: avoid;
  margin: 0 0 16px;
}

.tarif-card h2{
  margin: 0;
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 800;
}

.tarif-card-head{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tarif-icon{
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: .92;
}

.tarif-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.tarif-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(38,42,43,.18);
  color: rgba(38,42,43,.84);
}

.tarif-row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.price{
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}

.tarifs-notes{
  margin-top: 16px;
}

/* Tarifs notes list */
.notes-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.notes-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

/* Scissor icon before each note */
.notes-list li::before{
  content: "✂";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-size: 1rem;
}

/* Atelier note italic */
.note-atelier{
  font-style: italic;
}

@media (max-width: 900px){
  .tarifs-grid{ columns: 1; }
}

/* Contact page */

.page-title{
  margin-bottom: 20px;
}

.contact-wrapper{
  display: flex;
  justify-content: center;
}

.contact-card{
  width: 100%;
  max-width: 700px;
}

form{
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

form input,
form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
  font-family: inherit;
}

form input:focus,
form textarea:focus{
  outline: none;
  border-color: var(--teal);
}

@media (max-width: 700px){
  .form-grid{
    grid-template-columns: 1fr;
  }
}

input[type="file"]{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(38,42,43,.25);
  background: rgba(255,255,255,.55);
}

.contact-options{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method{
  text-align: center;
}

.contact-method h3{
  margin-top: 0;
  color: var(--teal);
}

.contact-divider{
  text-align: center;
  margin: 30px 0;
  color: var(--muted);
  position: relative;
}

.contact-divider::before,
.contact-divider::after{
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 0 10px;
  vertical-align: middle;
}

.hours-wrapper{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.hours-card{
  max-width: 600px;
  text-align: center;
}

.hours-card h3{
  color: var(--teal);
  margin-bottom: 8px;
}

.hours-card ul{
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  color: var(--muted);
}

.hours-card li{
  margin-bottom: 4px;
}

.atelier-note{
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 10px;
}

@media (max-width: 900px){
  .contact-options{
    grid-template-columns: 1fr;
  }
}

.about-card{
  max-width: none;
  margin: 0;
}
