/* Miloni’s Couture — handcrafted static site
   Design goals: elegant, minimal, fast, accessible.
*/
:root{
  --bg: #fbf7f1;
  --bg2:#f6efe5;
  --paper:#ffffff;
  --ink:#141416;
  --muted:#5b5b63;
  --line: rgba(20,20,22,.12);
  --shadow: 0 14px 40px rgba(20,20,22,.10);
  --shadow2: 0 10px 22px rgba(20,20,22,.08);
  --radius: 20px;

  --accent:#9a7b45;      /* warm gold */
  --accent2:#3d3d44;     /* charcoal */
  --accentSoft: rgba(154,123,69,.18);

  --max: 1120px;
  --pad: clamp(18px, 2.2vw, 26px);
  --padY: clamp(56px, 6.2vw, 92px);

  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background: radial-gradient(1200px 800px at 22% 0%, rgba(154,123,69,.10), transparent 55%),
              radial-gradient(900px 600px at 90% 20%, rgba(61,61,68,.10), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{color:var(--accent)}
small{color:var(--muted)}
p{margin:0 0 14px}
ul{margin:0; padding-left:18px}
li{margin:8px 0}

.skip-link{
  position:absolute;
  top:0; left:0;
  transform: translateY(-120%);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 10px;
  z-index: 1000;
}
.skip-link:focus{transform:none}

.container{width:min(var(--max), calc(100% - 2*var(--pad))); margin-inline:auto}
.section{padding: var(--padY) 0}
.section.compact{padding: clamp(34px, 4.4vw, 58px) 0}
.section .kicker{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:650;
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 10px;
}
h1,h2,h3{line-height:1.15; margin: 0 0 12px}
h1{
  font-size: clamp(34px, 3.6vw, 54px);
  letter-spacing:-0.02em;
}
h2{font-size: clamp(26px, 2.6vw, 38px); letter-spacing:-0.015em}
h3{font-size: clamp(18px, 1.6vw, 22px)}
.lead{font-size: clamp(16px, 1.4vw, 18px); color: rgba(20,20,22,.86); max-width: 60ch}
.note{color: var(--muted); max-width: 70ch}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(20,20,22,.06);
  backdrop-filter: blur(8px);
}
.badge svg{width:18px;height:18px;color:var(--accent)}

hr.sep{border:0; border-top: 1px solid var(--line); margin: 0}

/* Header / Nav */
.header{
  position:sticky; top:0; z-index: 999;
  background: rgba(251,247,241,.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,20,22,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .mark{
  width: 40px; height: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(20,20,22,.18);
  overflow:hidden;
}
.brand .name{
  display:flex; flex-direction:column; line-height:1.05
}
.brand .name strong{font-size: 15px; letter-spacing:.02em}
.brand .name span{font-size: 12px; color: var(--muted)}

.navlinks{
  display:flex; gap: 18px;
  align-items:center;
}
.navlinks a{
  font-size: 14px;
  color: rgba(20,20,22,.86);
  padding: 10px 10px;
  border-radius: 12px;
}
.navlinks a[aria-current="page"]{
  background: rgba(154,123,69,.12);
  color: var(--ink);
}
.nav-cta{display:flex; gap: 10px; align-items:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,22,.12);
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(20,20,22,.08);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 16px 34px rgba(20,20,22,.12)}
.btn.primary{
  border-color: rgba(154,123,69,.35);
  background: linear-gradient(180deg, rgba(154,123,69,.95), rgba(154,123,69,.86));
  color: #fff;
}
.btn.primary:hover{background: linear-gradient(180deg, rgba(154,123,69,1), rgba(154,123,69,.88))}
.btn.ghost{
  background: transparent;
  border-color: rgba(20,20,22,.18);
  box-shadow:none;
}
.btn.small{padding: 10px 14px; border-radius: 12px; font-size: 14px}
.btn svg{width:18px;height:18px}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,22,.12);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 24px rgba(20,20,22,.08);
}

/* Mobile drawer */
.drawer{
  display:none;
  position:fixed; inset:0;
  background: rgba(20,20,22,.45);
  z-index: 1000;
}
.drawer .panel{
  position:absolute; right:0; top:0; height:100%;
  width: min(380px, 92vw);
  background: var(--paper);
  padding: 18px;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 45px rgba(20,20,22,.20);
}
.drawer .panel .top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 12px;
}
.drawer nav a{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(20,20,22,.9);
}
.drawer nav a:hover{border-color: var(--line); background: rgba(154,123,69,.08)}
.drawer .panel .actions{display:flex; gap:10px; margin-top: 12px; flex-wrap:wrap}
.drawer.open{display:block}

/* Hero */
.hero{
  position:relative;
  padding: clamp(48px, 6.5vw, 92px) 0;
}
.hero .grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3.2vw, 34px);
  align-items:center;
}
.hero-card{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(20,20,22,.10);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-art{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(20,20,22,.12);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 360px;
}
.hero-art::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(500px 360px at 20% 20%, rgba(154,123,69,.30), transparent 62%),
              linear-gradient(180deg, transparent, rgba(20,20,22,.08));
  pointer-events:none;
}
.hero-art img{width:100%; height:100%; object-fit:cover}

.hero .meta{
  display:flex; flex-wrap:wrap; gap:10px;
  margin: 16px 0 0;
}
.hero .actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px}
.hero .trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top: 18px;
}
.trust .pill{
  display:flex; gap:10px; align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,22,.10);
  background: rgba(255,255,255,.8);
  font-size: 13px;
  color: rgba(20,20,22,.86);
}
.pill svg{width:16px;height:16px;color:var(--accent)}

.grid-3{display:grid; grid-template-columns: repeat(3,1fr); gap: 16px}
.grid-2{display:grid; grid-template-columns: repeat(2,1fr); gap: 16px}
@media (max-width: 920px){
  .hero .grid{grid-template-columns:1fr}
  .hero-art{min-height: 280px}
}
@media (max-width: 980px){
  .navlinks, .nav-cta{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
}

.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(20,20,22,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}
.card .icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(154,123,69,.14);
  border: 1px solid rgba(154,123,69,.22);
  margin-bottom: 12px;
}
.card .icon svg{width:22px;height:22px;color:var(--accent)}
.card p{color: rgba(20,20,22,.78)}

.service-card{
  display:flex; flex-direction:column;
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(20,20,22,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.service-card .img{height: 190px; overflow:hidden; position:relative}
.service-card .img img{width:100%; height:100%; object-fit:cover; transform: scale(1.02); transition: transform .35s ease}
.service-card:hover .img img{transform: scale(1.06)}
.service-card .body{padding: 18px}
.service-card .body .meta{
  display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px;
}
.chip{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(154,123,69,.12);
  border: 1px solid rgba(154,123,69,.18);
  font-size: 12px;
  color: rgba(20,20,22,.86);
}
.service-card .body .more{margin-top: 14px}
.service-card .body .more a{
  display:inline-flex; gap:10px; align-items:center;
  color: var(--accent);
  font-weight:650;
}
.service-card .body .more svg{width:18px;height:18px}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 920px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}

.panel{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(20,20,22,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel .head{
  padding: 18px;
  border-bottom: 1px solid rgba(20,20,22,.08);
  background: linear-gradient(180deg, rgba(154,123,69,.10), rgba(255,255,255,0));
}
.panel .body{padding: 18px}
.panel .body p:last-child{margin-bottom:0}

.timeline{
  display:grid; gap: 12px;
}
.step{
  display:grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(20,20,22,.10);
  background: rgba(255,255,255,.72);
}
.step .num{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(154,123,69,.14);
  border: 1px solid rgba(154,123,69,.22);
  font-weight:800;
  color: var(--accent);
}

.quote{
  position:relative;
  padding: 18px 18px 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(20,20,22,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.quote:before{
  content:"“";
  position:absolute;
  top:-18px; left: 16px;
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(154,123,69,.26);
}
.quote p{margin:0; color: rgba(20,20,22,.82)}
.quote .who{margin-top: 10px; color: var(--muted); font-size: 13px}

.faq{
  display:grid; gap: 10px;
}
details{
  border-radius: 16px;
  border: 1px solid rgba(20,20,22,.10);
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 18px rgba(20,20,22,.06);
  overflow:hidden;
}
summary{
  list-style:none;
  padding: 14px 14px;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  font-weight: 700;
}
summary::-webkit-details-marker{display:none}
details .answer{
  padding: 0 14px 14px;
  color: rgba(20,20,22,.82);
}
details[open] summary{background: rgba(154,123,69,.10)}
.chev{width:18px;height:18px; transition: transform .2s ease}
details[open] .chev{transform: rotate(180deg)}

.form{
  display:grid; gap: 12px;
}
.field{
  display:grid; gap: 8px;
}
label{font-weight: 700; font-size: 14px}
input, select, textarea{
  font-family:inherit;
  border-radius: 14px;
  border: 1px solid rgba(20,20,22,.14);
  padding: 12px 12px;
  background: rgba(255,255,255,.90);
  outline:none;
}
textarea{min-height: 130px; resize: vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(154,123,69,.55);
  box-shadow: 0 0 0 4px rgba(154,123,69,.18);
}
.help{font-size: 12px; color: var(--muted)}
.inline{
  display:flex; gap: 12px; flex-wrap:wrap; align-items:center;
}
.alert{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(20,20,22,.12);
  background: rgba(255,255,255,.82);
}
.alert.ok{border-color: rgba(48,136,86,.28); background: rgba(48,136,86,.10)}
.alert.bad{border-color: rgba(180,54,54,.30); background: rgba(180,54,54,.10)}
.req{color: #b43636}

.footer{
  padding: 44px 0 28px;
  border-top: 1px solid rgba(20,20,22,.10);
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(10px);
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
}
.footer a{color: rgba(20,20,22,.82)}
.footer a:hover{color: var(--accent)}
.footer .legal{
  margin-top: 22px;
  display:flex; gap: 10px; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 920px){
  .footer .cols{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .footer .cols{grid-template-columns:1fr}
}

.page-hero{
  padding: clamp(38px, 5vw, 66px) 0;
}
.breadcrumbs{
  display:flex; gap: 10px; flex-wrap:wrap;
  font-size: 13px; color: var(--muted); margin-top: 10px
}
.breadcrumbs a{color: rgba(20,20,22,.75)}
.breadcrumbs a:hover{color: var(--accent)}

.banner{
  border-radius: var(--radius);
  border: 1px solid rgba(20,20,22,.10);
  background: linear-gradient(120deg, rgba(154,123,69,.12), rgba(255,255,255,.75));
  padding: 18px;
  box-shadow: var(--shadow2);
}
.banner .row{
  display:flex; gap: 12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.banner .row p{margin:0}

/* Cookie banner */
.cookie{
  position:fixed;
  left: var(--pad);
  right: var(--pad);
  bottom: var(--pad);
  z-index: 1200;
  display:none;
}
.cookie .box{
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20,20,22,.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(20,20,22,.22);
  padding: 14px;
  backdrop-filter: blur(12px);
}
.cookie .box .row{
  display:flex; gap: 12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
}
.cookie .box p{margin:0; color: rgba(20,20,22,.82)}
.cookie .actions{display:flex; gap: 10px; flex-wrap:wrap}

.fade-in{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible{opacity:1; transform:none}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
  .fade-in{transition:none}
}