:root {
  --forest: #5b9b28;
  --forest-dark: #3f781c;
  --lime: #8fd04a;
  --sage: #eaf5df;
  --cream: #fbfaf4;
  --purple: #7431a6;
  --purple-bright: #b62cff;
  --gold: #7bbd37;
  --ink: #211b26;
  --muted: #62576a;
  --line: #ddc8ed;
  --white: #fffdf9;
  --shadow: 0 18px 45px rgba(116, 49, 166, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, var(--forest-dark), var(--purple));
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { text-decoration: none; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--forest-dark);
}
.brand img {
  width: 118px;
  height: 76px;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  font-size: 24px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu a,
.dropdown summary {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
  cursor: pointer;
  list-style: none;
}
.dropdown summary::-webkit-details-marker { display: none; }
.menu a:hover,
.menu a.active,
.dropdown:hover summary,
.dropdown.active summary {
  background: var(--sage);
  color: var(--forest-dark);
}
.dropdown {
  position: relative;
}
.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 245px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(116, 49, 166, .24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 30;
}
.dropdown[open] .submenu,
.dropdown:hover .submenu {
  display: flex;
}
.submenu a {
  white-space: nowrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--forest), var(--purple));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.menu a.button {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.button.secondary {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.hero {
  background:
    radial-gradient(circle at 9% 18%, rgba(143, 208, 74, .22), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(182, 44, 255, .13), transparent 26%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  min-height: 630px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 44px;
  align-items: center;
  padding: 52px 0 72px;
}
.hero-content { width: min(690px, 100%); }
.hero-photo {
  position: relative;
  border: 3px solid var(--purple);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 12px;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}
.hero-logo {
  width: min(290px, 78vw);
  margin-bottom: 18px;
}
.eyebrow {
  color: var(--forest-dark);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 900;
}
h1, h2, h3 { line-height: 1.13; color: var(--purple); margin: 0 0 16px; }
h1 { font-size: clamp(38px, 6vw, 66px); }
h2 { font-size: clamp(29px, 4vw, 44px); }
h3 { font-size: 22px; }
p { margin: 0 0 16px; }
.lead { font-size: 20px; color: #3d3445; }
.hero-actions, .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.badge-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: -42px;
  position: relative;
  z-index: 3;
}
.badge {
  background: var(--white);
  border: 1px solid rgba(116, 49, 166, .35);
  border-top: 7px solid var(--forest);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
  min-height: 102px;
}
.badge strong { display: block; color: var(--forest-dark); font-size: 17px; }
.badge span { color: var(--muted); font-size: 14px; }
.label-truffe {
  width: min(100%, 520px);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(42, 88, 66, .28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(42, 88, 66, .12);
  color: var(--forest-dark);
  text-decoration: none;
}
.label-truffe img {
  width: 86px !important;
  height: 86px !important;
  max-width: 86px !important;
  max-height: 86px !important;
  object-fit: contain;
  flex: 0 0 86px;
  display: block;
}
.label-truffe strong,
.label-truffe small {
  display: block;
}
.label-truffe strong {
  color: var(--forest-dark);
  font-size: 20px;
}
.label-truffe small {
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}
.compact-badges {
  margin: 18px 0 20px;
  grid-template-columns: repeat(3, 1fr);
}

.section { padding: 76px 0; }
.section.alt { background: var(--cream); }
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(116, 49, 166, .26);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(116,49,166,.08);
}
.card h3 a { text-decoration: none; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(116, 49, 166, .18);
  background: var(--sage);
}
.service-card .button { margin-top: auto; align-self: flex-start; }
.highlight {
  background: linear-gradient(135deg, #fff, #f6effb);
  border: 2px solid var(--purple);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote {
  border-left: 5px solid var(--forest);
  padding: 18px 0 18px 22px;
  font-weight: 800;
  color: var(--forest-dark);
  font-size: 20px;
}
.portrait-box {
  background: linear-gradient(135deg, var(--sage), #fff);
  border-radius: 12px;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 2px solid var(--purple);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-photo {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.proof-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff, var(--sage));
  border: 2px solid var(--purple);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.proof-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(116, 49, 166, .18);
  border-radius: 8px;
}
.proof-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}
.proof-item strong {
  display: block;
  color: var(--purple);
}
.proof-item span {
  color: var(--muted);
  font-size: 14px;
}
.flyer-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.flyer-thumb {
  border: 2px solid var(--purple);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.split-title span {
  display: block;
  color: var(--forest-dark);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(234,245,223,.92), rgba(255,255,255,.96)),
    var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 58px;
}
.page-hero .lead { width: min(760px, 100%); }
.service-visual {
  margin: -28px auto 34px;
  width: min(720px, 100%);
}
.service-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(116, 49, 166, .24);
  box-shadow: var(--shadow);
  background: #fff;
}
.list {
  margin: 0;
  padding-left: 20px;
}
.list li { margin: 8px 0; }
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.info {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}
.info strong { display: block; color: var(--forest-dark); }

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid rgba(116, 49, 166, .24);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.pricing-card h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 20px;
  overflow: hidden;
  border-radius: 8px;
}
.price-table th,
.price-table td {
  padding: 13px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(116, 49, 166, .16);
}
.price-table th {
  background: var(--purple);
  color: #fff;
}
.price-table tr:nth-child(even) td {
  background: #faf6fd;
}
.price-table td:last-child {
  color: var(--forest-dark);
  font-weight: 900;
  white-space: nowrap;
}
.pricing-note {
  border-left: 5px solid var(--forest);
  padding: 14px 0 14px 16px;
  color: var(--muted);
}
.pricing-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.source-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.source-images img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(116, 49, 166, .22);
  box-shadow: 0 10px 28px rgba(116,49,166,.08);
}

.contact-panel {
  background: linear-gradient(135deg, var(--forest-dark), var(--purple));
  color: #fff;
  border-radius: 8px;
  padding: 32px;
}
.contact-panel h2, .contact-panel h3 { color: #fff; }
.contact-panel a { color: #fff; font-weight: 800; }
.narrow {
  max-width: 760px;
}
.form {
  display: grid;
  gap: 12px;
}
.form label { font-weight: 800; color: var(--forest-dark); }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.form textarea { min-height: 150px; resize: vertical; }
.success, .error {
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}
.success {
  background: rgba(92, 158, 43, .14);
  color: var(--forest-dark);
}
.error {
  background: rgba(116, 49, 166, .12);
  color: var(--purple);
}

.footer {
  background: linear-gradient(90deg, var(--forest-dark), var(--purple));
  color: #fff;
  padding: 34px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer a { color: #fff; font-weight: 800; text-decoration: none; }
.copyright {
  opacity: .9;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 88px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .dropdown {
    width: 100%;
  }
  .dropdown summary {
    width: 100%;
  }
  .submenu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    box-shadow: none;
    border-color: var(--line);
  }
  .menu.open { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .badge-row, .compact-badges, .grid-2, .grid-3, .info-strip, .flyer-panel, .pricing-layout, .pricing-extra, .source-images { grid-template-columns: 1fr; }
  .hero-photo img { height: 460px; }
  .badge-row { margin-top: 18px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .topbar .container { align-items: flex-start; padding: 8px 0; }
  .brand img { width: 100px; height: 68px; }
  .section { padding: 54px 0; }
  .hero-grid { padding: 34px 0 52px; gap: 28px; }
  .hero-photo img { height: 390px; }
  h1 { font-size: 38px; }
  .lead { font-size: 18px; }
}
