:root{
  --bg:#f6f4ef;
  --white:#ffffff;
  --text:#2e2e2e;
  --muted:#6b6b6b;

  --primary:#7BAE9E;
  --primary-dark:#5d8c7f;

  --accent:#d7c2b0;
  --border:rgba(0,0,0,0.08);

  --shadow: 0 18px 55px rgba(0,0,0,0.08);
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.06);

  --radius: 22px;
  --radius-sm: 16px;
}

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

body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(123,174,158,.18), transparent 60%),
    radial-gradient(700px 420px at 92% 8%, rgba(215,194,176,.22), transparent 65%),
    linear-gradient(to bottom, #ffffff, var(--bg));
  color:var(--text);
  line-height:1.75;
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:.2px;
}

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

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

.narrow{
  max-width:760px;
  margin:auto;
}

/* HEADER */
.header{
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  position: sticky;
  top:0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

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

.logo img{
  height:auto;
  max-height:200px; /* NON “mini” */
}

.nav{
  display:flex;
  gap:26px;
  align-items:center;
}

.nav a{
  font-weight:500;
  color: var(--text);
  padding:10px 12px;
  border-radius: 14px;
  transition: background .2s ease, transform .2s ease;
}

.nav a:hover{
  background: rgba(123,174,158,.14);
  transform: translateY(-1px);
}

.btn-nav{
  padding:10px 18px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(123,174,158,.25);
}

/* HERO */
.hero{
  padding:110px 0 85px;
}

.hero-content{
  display:flex;
  justify-content:center;
  text-align:center;
}

.hero-text{
  max-width: 760px;
}

.hero-kicker{
  display:inline-block;
  font-size:14px;
  color: var(--muted);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero h1{
  font-size: clamp(40px, 4.4vw, 56px);
  margin: 18px 0 18px;
  line-height: 1.1;
}

.hero p{
  font-size:18px;
  color:var(--muted);
  margin: 0 auto 26px;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-badges{
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-badges span{
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,194,176,.22);
  border: 1px solid rgba(215,194,176,.28);
}

/* SECTIONS */
.section{
  padding: 90px 0;
}

.section.light{
  background: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.section h2{
  font-size: 38px;
  text-align:center;
  margin-bottom: 18px;
}

.section p{
  color: var(--muted);
  font-size: 17px;
  text-align:center;
}

/* Pills */
.pill-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.pill{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  text-align:left;
}

.pill strong{
  display:block;
  font-size:16px;
  margin-bottom: 6px;
  color: var(--text);
}

.pill span{
  color: var(--muted);
  font-size: 14px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.card{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card h3{
  margin-bottom: 10px;
  font-size: 22px;
}

.card p{
  text-align:left;
  font-size: 16px;
  margin:0;
}

/* CTA soft */
.cta-soft{
  margin-top: 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(123,174,158,.22);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.cta-soft h3{
  font-size: 22px;
  margin-bottom: 6px;
}

.cta-soft p{
  text-align:left;
  margin:0;
  font-size: 15px;
}

/* Split bio */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items:center;
  margin-top: 30px;
}

.bio h2{ text-align:left; }
.bio p{ text-align:left; }

.bio-list{
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

.bio-list li{ margin-bottom: 8px; }

.bio-card{
  background: linear-gradient(180deg, rgba(215,194,176,.35), rgba(255,255,255,0.75));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.bio-card-title{
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.bio-card a{
  color: var(--primary-dark);
  font-weight: 600;
}

.bio-card-line{
  height:1px;
  background: rgba(0,0,0,0.08);
  margin: 14px 0;
}

/* CONTACT */
.contact-wrap{ margin-top: 8px; }

.contact-head{
  max-width: 780px;
  margin: 0 auto 24px;
  text-align:center;
}

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items:start;
  margin-top: 26px;
}

.contact-cards{
  display:grid;
  gap: 14px;
}

.contact-card{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-card .label{
  display:block;
  font-weight:700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-card .value{
  display:block;
  font-weight:600;
  margin-bottom: 6px;
}

.contact-card .note{
  display:block;
  color: var(--muted);
  font-size: 14px;
}

.small-card .note{ margin-top: 4px; }

/* FORM */
.form-card{
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.form-card h3{
  font-size: 22px;
  margin-bottom: 12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 12px;
}

.field label{
  font-weight: 600;
  font-size: 14px;
}

.field input,
.field textarea{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255,255,255,0.9);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.field textarea{
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(123,174,158,.55);
  box-shadow: 0 0 0 5px rgba(123,174,158,.18);
}

.check{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.check input{
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-foot{
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* Buttons */
.btn-primary{
  background: var(--primary);
  color:#fff;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  display:inline-block;
  text-decoration:none;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(123,174,158,.22);
  transition: background .2s ease, transform .2s ease;
}

.btn-primary:hover{
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline{
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(255,255,255,0.7);
  transition: transform .2s ease, background .2s ease;
}

.btn-outline:hover{
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.btn-full{
  width: 100%;
  cursor:pointer;
}

/* FOOTER */
.footer{
  padding: 40px 0;
  background: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align:center;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media(max-width: 980px){
  .nav{ display:none; } /* se vuoi hamburger lo aggiungo */
  .pill-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .cta-soft{ flex-direction: column; align-items:flex-start; }
  .contact-grid{ grid-template-columns: 1fr; }
  .section p{ text-align:left; }
  .section h2{ text-align:left; }
}