:root {
  --cream: #f4ece4;
  --paper: #fbf7f2;
  --brown: #29180f;
  --ink: #281b15;
  --gold: #a86c30;
  --soft: #e8d9cb;
  --sans: "DM Sans", sans-serif;
  --serif: "Cormorant Garamond", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  padding: 8px 7.2%;
  gap: 44px;
  background: #f7f2ec;
}
.brand,
.footer-brand {
  font-family: var(--serif);
  line-height: 0.8;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
}
.brand b,
.footer-brand b {
  font-size: 28px;
  letter-spacing: -0.04em;
}
.brand small,
.footer-brand small {
  letter-spacing: 0.38em;
  font: 600 9px var(--sans);
  margin-left: 0.35em;
}
.crown {
  font-size: 27px;
  height: 27px;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.site-nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.site-nav .active {
  position: relative;
}
.site-nav .active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 1px;
  background: var(--gold);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 30px;
  padding: 11px 23px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.dark {
  color: #fff;
  background: #23150f;
}
.header-cta {
  padding: 10px 18px;
}
.header-cta span,
.hero-actions span {
  font-size: 18px;
  margin-right: 7px;
}
.nav-toggle {
  display: none;
}
.hero {
  height: 358px;
  position: relative;
  overflow: hidden;
  background: #e8e0d9;
}
.hero-content {
  z-index: 1;
  position: absolute;
  left: 7.8%;
  top: 54px;
}
.hero h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.9;
  margin: 0;
}
.hero h1 {
  font-size: 39px;
  letter-spacing: -0.035em;
}
.hero em,
h2 em {
  font-style: normal;
  color: var(--gold);
}
.intro {
  line-height: 1.55;
  font-size: 12px;
  margin: 16px 0;
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
}
.text-link {
  font-size: 9px;
  font-weight: bold;
  color: var(--ink);
  text-decoration: none;
}
.text-link b {
  font-size: 24px;
  font-weight: 400;
  margin-left: 12px;
  color: var(--gold);
}
.hero-photo {
  height: 100%;
  position: absolute;
  right: 0;
  width: 57%;
  background:
    linear-gradient(90deg, #e8e0d9 0%, transparent 22%),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1500&q=85")
      center/cover;
}
.hero-bottom {
  display: none;
}
.mobile-kicker {
  display: none;
}
.section {
  padding: 20px 7.2%;
  text-align: center;
}
.section-title p,
.about-copy > p,
.faq-main > p,
.testimonial > p {
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin: 0 0 9px;
}
.section h2 {
  font-size: 34px;
}
.services {
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 13px 0 15px;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.image-lightbox {
  width: min(92vw, 780px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: visible;
  background: transparent;
}
.image-lightbox::backdrop {
  background: rgba(20, 11, 7, 0.9);
  backdrop-filter: blur(3px);
}
.image-lightbox img {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -12px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #281b15;
  font: 30px/34px Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}
.service-card h3 {
  font-size: 10px;
  margin: 9px 0 4px;
}
.service-card p {
  margin: 0;
  font-size: 9px;
  line-height: 1.35;
}
.service-card b {
  display: none;
}
.outline {
  border: 1px solid #87684f;
  color: #513420;
  padding: 6px 28px;
  background: transparent;
  font-size: 9px;
}
.experience {
  background: #e6d5c7;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  text-align: left;
  align-items: center;
  padding-top: 19px;
  padding-bottom: 19px;
  gap: 35px;
}
.experience h2 {
  font-size: 29px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.benefits article {
  text-align: center;
  border-left: 1px solid #d4bda9;
  padding: 0 8px;
}
.benefits i {
  font-style: normal;
  color: #79512e;
  font-size: 26px;
}
.benefits h3 {
  font-size: 9px;
  margin: 4px 0;
}
.benefits p {
  font-size: 8px;
  line-height: 1.3;
  margin: 0;
}
.gallery {
  display: none;
  padding-bottom: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 260px;
  gap: 4px;
  margin: 14px 0;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about {
  display: grid;
  grid-template-columns: 44.6% 55.4%;
  background: #f0e4da;
}
.about-photo {
  min-height: 450px;
  background: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1000&q=85")
    center 25% / cover;
}
.about-copy {
  padding: 25px 10% 15px;
  background:
    linear-gradient(90deg, rgba(248, 241, 235, 0.9), rgba(247, 238, 231, 0.88)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=700&q=60")
      right/cover;
}
.about-copy h2 {
  font-size: 34px;
}
.about-text {
  width: 50%;
  font-size: 15px;
  line-height: 1.35;
}
.signature {
  font: italic 24px var(--serif);
  color: #000;
}
.faq {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.faq-main,
.testimonial {
  padding: 26px 15%;
}
.faq h2 {
  font-size: 29px;
}
.accordion {
  margin: 13px 0;
}
.accordion button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ddcec2;
  background: rgba(255, 255, 255, 0.43);
  padding: 6px 11px;
  font: 13px var(--sans);
  text-align: left;
}
.accordion button b {
  font-size: 17px;
  color: #966d45;
  font-weight: 400;
}
.accordion-item {
  margin-bottom: 8px;
}
.accordion .faq-toggle {
  cursor: pointer;
}
.accordion .faq-answer {
  padding: 0 2px 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #5d4433;
}
.accordion .faq-answer p {
  margin: 0;
}
.accordion .faq-toggle[aria-expanded="true"] b {
  transform: rotate(45deg);
}
.testimonial {
  background: #f4ece4;
  text-align: center;
}
.testimonial h2 {
  font-size: 30px;
}
.review {
  background: #fffaf6;
  margin: 16px auto;
  width: 80%;
  padding: 20px 17px;
  border-radius: 7px;
  text-align: center;
}
.reviews {
  position: relative;
  touch-action: pan-y;
}
.reviews .review {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.reviews .review.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.review > b {
  color: var(--gold);
  letter-spacing: 4px;
}
.review p {
  font-size: 10px;
  line-height: 1.75;
}
.review em {
  font: italic 19px var(--serif);
}
.dots {
  color: #a8753e;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid #a8753e;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.dots button.active {
  background: #a8753e;
}
.final-cta {
  min-height: 180px;
  background:
    linear-gradient(90deg, rgba(37, 21, 14, 0.9), rgba(37, 21, 14, 0.52)),
    url("https://images.unsplash.com/photo-1487412912498-0447578fcca8?auto=format&fit=crop&w=1500&q=85")
      center/cover;
  color: white;
  display: flex;
  justify-content: center;
  text-align: left;
}
.final-cta > div {
  width: 52%;
  padding: 25px;
}
.line-art {
  float: right;
  color: #a67140;
  font-size: 52px;
}
.final-cta h2 {
  font-size: 34px;
}
.final-cta p {
  font-size: 15px;
}
.gold {
  background: #d0821a;
  color: #fff;
  padding: 9px 19px;
}
footer {
  background: #22150f;
  color: #f7eee8;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  padding: 18px 10% 31px;
  gap: 25px;
  align-items: center;
}
footer .footer-brand {
  color: #fff;
  width: auto;
}
.footer-brand b {
  font-size: 24px;
}
footer h3 {
  font-size: 15px;
  letter-spacing: 0.15em;
  margin: 0 0 5px;
}
footer p {
  margin: 3px 0;
  font-size: 12px;
}
footer p a {
  color: inherit;
  text-decoration: none;
}
footer p a:hover,
footer p a:focus-visible {
  text-decoration: underline;
}
.social {
  display: flex;
  gap: 16px;
  margin-top: 13px;
}
.social a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}
.copyright {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: #b79c8c;
  white-space: nowrap;
}
.copyright a {
  color: inherit;
  text-decoration: none;
}
.copyright a:hover,
.copyright a:focus-visible {
  text-decoration: underline;
}
.floating-whatsapp {
  display: none;
}
@media(min-width:700px){
  footer .footer-brand{
    align-self: start;
  }

}
@media (max-width: 700px) {
  body {
    font-size: 14px;
  }
  .site-header {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 75px;
    background: transparent;
    padding: 10px 23px;
    justify-content: space-between;
  }
  .brand {
    color: #fff;
    width: 88px;
  }
  .brand b {
    font-size: 19px;
  }
  .brand small {
    font-size: 6px;
  }
  .crown {
    font-size: 18px;
    height: 18px;
  }
  .site-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
    position: fixed;
    z-index: 12;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    padding: 10px;
    flex-direction: column;
    gap: 4px;
    box-shadow: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
  }
  .nav-toggle.scrolled,
  .nav-toggle[aria-expanded="true"] {
    background: rgba(41, 24, 15, 0.92);
    box-shadow: 0 3px 12px rgba(34, 19, 11, 0.22);
  }
  .nav-toggle i {
    width: 20px;
    height: 2px;
    background: #fff;
    display: block;
  }
  .site-nav.open {
    display: flex;
    position: fixed;
    z-index: 11;
    top: 68px;
    left: 20px;
    right: 20px;
    padding: 18px;
    background: #29180f;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .site-nav.open a {
    color: #fff;
    font-size: 14px;
  }
  .hero {
    height: 623px;
    background: #23150f;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    background:
      linear-gradient(90deg, rgba(24, 12, 6, 0.82), rgba(24, 12, 6, 0.28)),
      url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=900&q=85")
        center/cover;
  }
  .hero-content {
    top: 128px;
    left: 23px;
    right: 20px;
    color: white;
  }
  .mobile-kicker {
    display: none;
  }
  .hero h1 {
    font-size: 35px;
    line-height: 0.95;
  }
  .intro {
    font-size: 14px;
    line-height: 1.65;
    margin: 20px 0 25px;
  }
  .hero-actions {
    display: block;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 11px 15px;
  }
  .text-link {
    display: flex;
    margin-top: 12px;
    padding: 10px 15px;
    border: 1px solid #906741;
    color: #e8d3c0;
    border-radius: 30px;
    width: 148px;
    justify-content: center;
  }
  .text-link b {
    font-size: 17px;
    margin-left: 8px;
    color: #e8d3c0;
  }
  .hero-bottom {
    display: flex;
    position: absolute;
    bottom: 17px;
    left: 18px;
    right: 18px;
    justify-content: space-between;
    color: #fff;
    text-align: center;
  }
  .hero-bottom span {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
  }
  .hero-bottom b {
    font-size: 13px;
  }
  .hero-bottom small {
    font-size: 12px;
    color: #ddd;
    max-width: 70px;
  }
  .section {
    padding: 30px 26px;
  }
  .section h2 {
    font-size: 31px;
    line-height: 1.05;
  }
  .section-title p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .services {
    padding-top: 31px;
  }
  .service-grid {
    display: block;
    margin: 25px 0 25px;
  }
  .service-card {
    display: grid;
    grid-template-columns: clamp(126px, 38vw, 150px) 1fr;
    gap: 17px;
    padding: 0 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e3d7cc;
    text-align: left;
    align-items: center;
  }
  .service-card img {
    height: auto;
    aspect-ratio: 6 / 7;
    object-fit: cover;
    border-radius: 8px;
  }
  .service-card h3 {
    font-size: 15px;
    margin: 0 0 9px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.45;
  }
  .service-card b {
    display: none;
  }
  .services .outline {
    padding: 9px 39px;
  }
  .experience {
    padding: 35px 30px;
    display: block;
    text-align: center;
  }
  .experience h2 {
    font-size: 32px;
  }
  .benefits {
    display: block;
    text-align: left;
    margin-top: 31px;
  }
  .benefits article {
    border: 0;
    border-bottom: 1px solid #ebddcf;
    padding: 13px 0;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    text-align: left;
    align-items: center;
  }
  .benefits i {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #f8f0e8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
  }
  .benefits h3 {
    font-size: 14px;
    margin: 0 0 3px;
  }
  .benefits p {
    font-size: 13px;
    line-height: 1.45;
  }
  .gallery {
    padding: 31px 27px;
  }
  .gallery-grid {
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 25px 0;
  }
  .gallery-grid img {
    aspect-ratio: 1/1.2;
    border-radius: 5px;
  }
  .gallery .outline {
    padding: 9px 32px;
  }
  .about {
    display: flex;
    flex-direction: column-reverse;
    background: #21130e;
    color: white;
  }
  .about-photo {
    height: 390px;
    min-height: 0;
    width: 100%;
    background:
      linear-gradient(0deg, rgba(31, 17, 10, 0.78), transparent 55%),
      url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1000&q=85")
        center/cover;
  }
  .about-copy {
    margin-bottom: -390px;
    z-index: 1;
    height: 390px;
    padding: 29px 31px;
    background: none;
  }
  .about-copy > p {
    color: #ca9a67;
    font-size: 14px;
  }
  .faq-main > p,
  .testimonial > p {
    font-size: 14px;
  }
  .about-copy h2 {
    font-size: 31px;
    color: #000;
  }
  .about-text {
    width: 100%;
    font-size: 14px;
    line-height: 1.55;
    margin-top: 25px;
    color: #000;
  }
  .signature {
    font-size: 29px;
  }
  .bottom-layout {
    display: block;
  }
  .faq-main {
    padding: 35px 27px;
    background: #f1e8df;
  }
  .faq-main h2 {
    font-size: 31px;
  }
  .accordion {
    margin: 22px 0;
  }
  .accordion button {
    margin-bottom: 7px;
    border: 0;
    padding: 15px 12px;
    background: #fffaf6;
    border-radius: 3px;
    font-size: 14px;
  }
  .accordion .faq-answer {
    font-size: 14px;
  }
  .faq-link {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
  }
  .testimonial {
    display: block;
    padding: 35px 27px;
    background: #f6efe8;
  }
  .testimonial h2 {
    font-size: 31px;
  }
  .review {
    width: 100%;
    padding: 27px 22px;
  }
  .review p {
    font-size: 14px;
  }
  .final-cta {
    min-height: 270px;
    justify-content: flex-start;
    background:
      linear-gradient(90deg, rgba(37, 21, 14, 0.94), rgba(37, 21, 14, 0.8)),
      url("https://images.unsplash.com/photo-1487412912498-0447578fcca8?auto=format&fit=crop&w=900&q=85")
        center/cover;
  }
  .final-cta > div {
    width: 100%;
    padding: 35px 29px;
    text-align: center;
  }
  .final-cta h2 {
    font-size: 32px;
  }
  .line-art {
    float: none;
    display: block;
    font-size: 35px;
  }
  .final-cta p {
    font-size: 14px;
  }
  .light {
    font-size: 11px;
    padding: 12px 19px;
    background: #fff;
    color: #3b2113;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 42px 25px 48px;
    gap: 28px;
    background: #f8f2eb;
    color: #3b251a;
  }
  footer .footer-brand {
    color: #26170f;
  }
  footer p {
    font-size: 13px;
    margin: 7px 0;
  }
  footer h3 {
    font-size: 12px;
  }
  .footer-location p small {
    font-size: 12px;
  }
  .social {
    justify-content: center;
  }
  .social a {
    color: #27170f;
  }
  .copyright {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    font-size: 11px;
    color: #8b7c71;
    bottom: 14px;
    white-space: normal;
  }
  .floating-whatsapp {
    position: fixed;
    right: 19px;
    bottom: 21px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    background: #27170f;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 3px 10px #7f6856;
  }
  .floating-whatsapp i {
    text-decoration: none;
  }
  .floating-whatsapp:after {
    content: "";
    position: absolute;
    right: 1px;
    top: 1px;
    width: 9px;
    height: 9px;
    background: #e7191d;
    border-radius: 50%;
  }
}

/* Chiusura desktop come nel mockup: FAQ a sinistra e CTA fotografica a destra. */
.bottom-layout {
  display: grid;
  grid-template-columns: 44.7% 55.3%;
  text-align: left;
}
.bottom-layout .faq-main {
  padding: 20px 14%;
  background: #f1e8df;
}
.bottom-layout .faq-main h2 {
  font: 500 29px/0.9 var(--serif);
  margin: 0;
}
.faq-link {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.testimonial {
  display: none;
}
.bottom-layout .final-cta {
  min-height: 180px;
  justify-content: flex-start;
  background:
    linear-gradient(90deg, rgba(37, 21, 14, 0.78), rgba(37, 21, 14, 0.1)),
    url("https://images.unsplash.com/photo-1615800002234-05c4d488696c?auto=format&fit=crop&w=1500&q=85")
      center/cover;
}
.bottom-layout .final-cta > div {
  width: 66%;
  padding: 25px 9%;
}
.light {
  background: #fbf6ef;
  color: #3c2112;
  padding: 10px 20px;
}
@media (max-width: 700px) {
  .bottom-layout {
    display: block;
  }
  .bottom-layout .faq-main {
    padding: 35px 27px;
  }
  .bottom-layout .faq-main h2 {
    font-size: 31px;
  }
  .testimonial {
    display: block;
    padding: 35px 27px;
    background: #f6efe8;
  }
  .bottom-layout .final-cta {
    min-height: 270px;
    background:
      linear-gradient(90deg, rgba(37, 21, 14, 0.94), rgba(37, 21, 14, 0.8)),
      url("https://images.unsplash.com/photo-1487412912498-0447578fcca8?auto=format&fit=crop&w=900&q=85")
        center/cover;
  }
  .bottom-layout .final-cta > div {
    width: 100%;
    padding: 35px 29px;
    text-align: center;
  }
  .bottom-layout .final-cta h2 {
    font-size: 32px;
  }
}

/* Hero desktop: la navigazione vive sopra l'immagine, come nel riferimento. */
@media (min-width: 701px) {
  .site-header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 110px;
    padding: 19px 4.7%;
    background: transparent;
    gap: 48px;
  }
  .brand {
    width: 165px;
  }
  .brand b {
    font-size: 37px;
  }
  .brand small {
    font-size: 10px;
  }
  .crown {
    font-size: 35px;
    height: 35px;
  }
  .site-nav {
    justify-content: flex-start;
    gap: 42px;
  }
  .site-nav a {
    font-size: 13px;
  }
  .header-cta {
    margin-left: auto;
    padding: 13px 23px;
    font-size: 11px;
  }
  .hero {
    height: clamp(470px, 46vw, 740px);
  }
  .hero-content {
    top: 30%;
    left: 7.8%;
  }
  .hero h1 {
    font-size: clamp(44px, 3.4vw, 64px);
  }
  .intro {
    font-size: 14px;
    margin: 23px 0;
  }
  .hero-actions {
    gap: 38px;
  }
  .hero-actions .button {
    padding: 17px 32px;
    font-size: 11px;
  }
  .text-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 10px;
  }
  .text-link b {
    order: -1;
    margin: 0;
    font-size: 28px;
    line-height: 1;
  }
  .hero-photo {
    width: 63%;
    background:
      linear-gradient(
        90deg,
        #e8e0d9 0%,
        rgba(232, 224, 217, 0.7) 14%,
        transparent 39%
      ),
      url("../assets/images/hero-studio.jpg") center/cover;
  }
}
@media (max-width: 700px) {
  .text-link b {
    order: 2;
    margin-left: 8px;
    margin-right: 0;
  }
}
.hero-highlight {
  display: block;
  margin-top: 0.16em;
}
@media (max-width: 700px) {
  .hero-highlight {
    margin-top: 0.22em;
  }
}

/* Esperienza: cinque benefit desktop, icone lineari e tonalità del mockup. */
@media (min-width: 701px) {
  .experience {
    min-height: 310px;
    padding: 48px 7.2%;
    background: #dfc3ad;
    gap: 42px;
  }
  .experience h2 {
    font-size: clamp(35px, 2.6vw, 50px);
    line-height: 0.94;
  }
  .benefits {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-self: stretch;
  }
  .benefits article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    border-left: 1px solid rgba(99, 64, 38, 0.2);
  }
  .benefits article.music-benefit {
    display: none;
  }
  .benefits i {
    height: 55px;
    color: #62401f;
    font-size: 0;
  }
  .benefits i svg {
    width: 49px;
    height: 49px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .benefits h3 {
    margin: 9px 0 10px;
    font-size: 15px;
    line-height: 1.15;
  }
  .benefits p {
    font-size: 13px;
    line-height: 1.45;
  }
  .experience .section-title {
    align-self: start;
  }
}
@media (max-width: 700px) {
  .benefits article.music-benefit {
    display: grid;
  }
  .benefits i {
    font-size: 0;
  }
  .benefits i svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

/* Servizi: medaglioni e motivo botanico decorativo del mockup desktop. */
.services {
  position: relative;
  overflow: hidden;
  background: #f0e6de;
}
.services:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -42px;
  top: 2px;
  width: 310px;
  height: 405px;
  background: url("../assets/images/services-floral.svg") right top/contain
    no-repeat;
  opacity: 0.26;
  filter: blur(1px);
}
.services .section-title,
.services .service-grid,
.services > .button {
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px 0 5px 12px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: #fbf8f4;
  color: #795636;
  box-shadow: 0 2px 5px rgba(86, 53, 30, 0.08);
}
.service-icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.35));
  color: #c9953a;
  stroke: currentColor;
  fill: currentColor;
}
.service-card h3 {
  margin-top: 4px;
}
.service-card p {
  line-height: 1.45;
}
.services > .button {
  padding: 8px 39px;
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 700px) {
  .services:after {
    display: none;
  }
  .service-icon {
    display: none;
  }
  .service-card h3 {
    margin-top: 0;
  }
}

@media (min-width: 701px) {
  .services {
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .services .section-title p {
    font-size: 13px;
    margin-bottom: 9px;
  }
  .services h2 {
    font-size: clamp(34px, 2.45vw, 48px);
    line-height: 0.95;
  }
  .service-grid {
    margin-top: 22px;
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 15px;
    margin: 6px 0 8px;
  }
  .service-card p {
    font-size: 13px;
    line-height: 1.45;
  }
  .services > .button {
    font-size: 11px;
    padding: 10px 43px;
  }
}

/* Logo locale sostituibile. */
.brand img {
  display: block;
  width: 132px;
  height: auto;
}
.footer-brand img {
  display: block;
  width: 105px;
  height: auto;
  filter: invert(1);
}
@media (max-width: 700px) {
  .brand img {
    width: 88px;
    filter: invert(1);
  }
  .footer-brand img {
    width: 115px;
    filter: none;
  }
}

/* Asset locali: questi file possono essere sostituiti mantenendo lo stesso nome. */
.hero-photo {
  background:
    linear-gradient(90deg, #e8e0d9 0%, transparent 22%),
    url("../assets/images/hero-studio.jpg") center/cover;
}
.about-photo {
  background: url("../assets/images/about-simona.jpg") center 25% / cover;
}
.about-copy {
  background: url("../assets/images/about-decoration.jpg") right/cover;
      display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-direction: column;
    justify-content: center;
}
.bottom-layout .final-cta {
  background:
    linear-gradient(90deg, rgba(37, 21, 14, 0.78), rgba(37, 21, 14, 0.1)),
    url("../assets/images/cta-background.jpg") center/cover;
        display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 700px) {
  .hero-photo {
    background:
      linear-gradient(90deg, rgba(24, 12, 6, 0.82), rgba(24, 12, 6, 0.28)),
      url("../assets/images/hero-studio.jpg") center/cover;
  }
  .about-photo {
    background:
      linear-gradient(0deg, rgba(31, 17, 10, 0.78), transparent 55%),
      url("../assets/images/about-simona.jpg") center/cover;
  }
  .bottom-layout .final-cta {
    background:
      linear-gradient(90deg, rgba(37, 21, 14, 0.94), rgba(37, 21, 14, 0.8)),
      url("../assets/images/cta-background.jpg") center/cover;
  }
}

/* Footer desktop: divisioni e icone circolari del mockup. */
@media (min-width: 701px) {
  footer {
    min-height: 142px;
    display: grid;
    grid-template-columns: 1.1fr 1.35fr 1.2fr 1.2fr 0.3fr;
    padding: 22px 7.4% 31px;
    gap: 0;
    align-items: center;
  }
  .footer-brand {
    padding-right: 35px;
  }
  .footer-brand img {
    width: 140px;
  }
  .footer-location,
  .footer-follow,
  .footer-contacts {
    min-height: 72px;
    padding: 0 38px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  footer h3 {
    font-size: 11px;
    letter-spacing: 0.13em;
    margin: 0 0 9px;
  }
  footer p {
    font-size: 12px;
    line-height: 1.35;
    margin: 2px 0;
  }
  .footer-location p {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer-location p small {
    font-size: 11px;
  }
  .footer-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
  }
  .footer-pin i {
    font-size: 16px;
  }
  .footer-follow {
    padding-right: 25px;
  }
  .social {
    gap: 11px;
    margin: 0;
  }
  .social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
  }
  .social i {
    font-size: 15px;
  }
  .footer-contacts p span {
    display: inline-block;
    width: 19px;
    font-size: 17px;
    vertical-align: -1px;
  }
  .footer-heart {
    font: 44px/1 var(--serif);
    color: #a47747;
    text-align: right;
  }
  .copyright {
    bottom: 8px;
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  .footer-location,
  .footer-follow,
  .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-location p {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .footer-pin {
    font-size: 25px;
  }
  .footer-follow .social a {
    width: 31px;
    height: 31px;
    border: 1px solid #3b251a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-follow .social svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .footer-heart {
    display: none;
  }

  .about {
    flex-direction: column;
  }
  .about-photo {
    display: block;
    flex: 0 0 390px;
    height: 390px;
    min-height: 390px;
  }
  .about-copy {
    height: auto;
    min-height: 390px;
    margin-bottom: 0;
    background: url("../assets/images/about-decoration.jpg") right/cover;
  }
}
