/* ========== RESET / BASE ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: #140f18;
  background: radial-gradient(1200px 700px at 50% 20%, #f6d9ea 0%, #e8b9d2 35%, #d49abb 70%, #c68bb0 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

/* ========== THEME TOKENS ========== */
:root{
  --ink: #140f18;
  --ink-soft: rgba(20, 15, 24, 0.72);
  --paper: #faefd9;          /* bandeau crème */
  --paper-2: #fff6e6;
  --card: rgba(255, 255, 255, 0.55);
  --card-2: rgba(255, 255, 255, 0.40);
  --stroke: rgba(20, 15, 24, 0.18);
  --stroke-2: rgba(20, 15, 24, 0.28);
  --shadow: 0 18px 50px rgba(20, 15, 24, 0.22);
  --shadow-soft: 0 10px 30px rgba(20, 15, 24, 0.16);
  --radius: 22px;
}

/* ========== ORNAMENTS (simple flourish vibe) ========== */
.orn{
  position: fixed;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0.45;
  filter: drop-shadow(0 12px 18px rgba(20,15,24,0.18));
  background:
    radial-gradient(circle at 30% 30%, rgba(20,15,24,0.55) 0 6px, transparent 7px),
    radial-gradient(circle at 62% 40%, rgba(20,15,24,0.55) 0 4px, transparent 5px),
    conic-gradient(from 90deg, rgba(20,15,24,0.0), rgba(20,15,24,0.55), rgba(20,15,24,0.0));
  border-radius: 999px;
  mask:
    radial-gradient(circle at 30% 30%, #0000 0 20px, #000 21px 100%),
    radial-gradient(circle at 55% 55%, #0000 0 85px, #000 86px 100%),
    radial-gradient(circle at 50% 50%, #000 0 100%);
}
.orn--tl{ top: -140px; left: -140px; transform: rotate(-25deg); }
.orn--br{ bottom: -150px; right: -150px; transform: rotate(155deg); opacity: 0.40; }

@media (max-width: 700px){
  .orn{ width: 240px; height: 240px; opacity: 0.28; }
  .orn--tl{ top: -110px; left: -110px; }
  .orn--br{ bottom: -120px; right: -120px; }
}

/* ========== HEADER ========== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(246,217,234,0.70), rgba(246,217,234,0.30));
  border-bottom: 1px solid rgba(20,15,24,0.12);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(20,15,24,0.85);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.35);
}
.brand__name{
  font-size: 16px;
}
.nav{
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 15px;
}
.nav a{ opacity: 0.9; }
.nav a:hover{ opacity: 1; }
@media (max-width: 680px){
  .nav{ gap: 10px; }
  .brand__name{ display: none; }
}

/* ========== BUTTONS ========== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(20,15,24,0.22);
  box-shadow: var(--shadow-soft);
  text-decoration: none !important;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  font-weight: 700;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary{
  background: rgba(20,15,24,0.90);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.btn--secondary{
  background: rgba(255,255,255,0.55);
}
.btn--ghost{
  background: rgba(255,255,255,0.30);
  box-shadow: none;
}

/* ========== HERO ========== */
.hero{
  padding: 42px 0 28px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 18px;
  align-items: start;
}
.hero__card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.hero__card::before{
  content:"";
  position:absolute;
  inset: -40px -40px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.55), rgba(255,255,255,0));
  transform: rotate(20deg);
  pointer-events: none;
}

.logoWrap{
  display: grid;
  place-items: center;
  padding: 14px 10px 4px;
}
.logo{
  width: min(520px, 100%);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(20,15,24,0.22));
}

.title{
  margin: 10px 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.2px;
}
.title__soft{
  display: inline-block;
  margin-top: 6px;
  font-weight: 400;
  opacity: 0.78;
  font-size: 0.82em;
}
.subtitle{
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.hero__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.chips{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,15,24,0.16);
  background: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.92;
}

/* ========== SIDE ========== */
.side__card{
  background: var(--card-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.side__title{
  margin: 2px 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.list li{
  border: 1px solid rgba(20,15,24,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.38);
  padding: 12px 12px;
}
.list strong{ display: block; font-size: 14px; margin-bottom: 2px; }
.list span{ display: block; font-size: 13px; color: var(--ink-soft); }

.divider{
  height: 1px;
  background: rgba(20,15,24,0.16);
  margin: 14px 0;
}

.trust{
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.trust__line{
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.spark{ opacity: 0.85; }

@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
}

/* ========== CONTACT BAND (cream strip like card) ========== */
.contactBand{
  padding: 18px 0;
}
.contactBand__inner{
  background: linear-gradient(to bottom, var(--paper), var(--paper-2));
  border: 1px solid rgba(20,15,24,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px;
  text-align: center;
}
.contactBand__big{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.1vw, 28px);
  letter-spacing: 0.4px;
}
.contactBand__label{ font-weight: 700; }
.contactBand__sep{ opacity: 0.55; padding: 0 8px; }

.contactBand__row{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}
.contactBand__dot{ opacity: 0.55; }
.contactLink{
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(20,15,24,0.25);
  padding-bottom: 2px;
}
.contactLink:hover{ border-bottom-color: rgba(20,15,24,0.65); }

/* ========== TEASER GRID ========== */
.teaser{
  padding: 28px 0 44px;
}
.teaser__head{
  text-align: center;
  margin-bottom: 16px;
}
.sectionTitle{
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.2px;
}
.sectionSub{
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.workCard{
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(20,15,24,0.16);
  background: rgba(255,255,255,0.38);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  text-decoration: none !important;
  transition: transform .12s ease, box-shadow .12s ease;
}
.workCard:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }

.workCard__thumb{
  height: 140px;
  position: relative;
  
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  
  background-color: rgba(246,217,234,0.35);
}
.workCard__tag{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(20,15,24,0.88);
  color: #fff;
}
.workCard__hint{
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.78;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,15,24,0.18);
  background: rgba(255,255,255,0.55);
}
.workCard__txt{
  padding: 12px 14px 14px;
}
.workCard__txt h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.workCard__txt p{
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.4;
}

.teaser__cta{
  display: grid;
  place-items: center;
  margin-top: 16px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  .workCard__thumb{ height: 120px; }
}

/* ========== FOOTER ========== */
.footer{
  padding: 18px 0 28px;
  border-top: 1px solid rgba(20,15,24,0.12);
  background: linear-gradient(to top, rgba(246,217,234,0.65), rgba(246,217,234,0.0));
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(20,15,24,0.78);
  font-size: 13px;
}
.footer__links{
  display: flex;
  gap: 12px;
}
.footer__links a{
  opacity: 0.9;
}
.footer__links a:hover{
  opacity: 1;
}
