:root {
  --sand: #b49e80;
  --cream: #f5f0e9;
  --paper: #fbfaf7;
  --taupe: #857668;
  --ink: #26231f;
  --white: #fff;
  --line: rgba(38, 35, 31, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(251, 250, 247, 0.93);
  backdrop-filter: blur(18px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.site-header.scrolled {
  height: 72px;
  border-color: var(--line);
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.brand small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 9px;
  margin-top: 7px;
}
.monogram {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 0.05em;
}
nav a:not(.nav-cta) {
  position: relative;
}
nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
}
nav a:hover:after {
  right: 0;
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 12px 20px;
  transition: 0.2s;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
}
.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--ink);
  margin: 7px;
}
.hero {
  height: min(900px, 100vh);
  min-height: 700px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 27, 22, 0.67) 0%,
    rgba(31, 27, 22, 0.21) 48%,
    rgba(31, 27, 22, 0.05) 100%
  );
}
.hero-copy {
  position: absolute;
  left: clamp(24px, 8vw, 130px);
  top: 52%;
  transform: translateY(-43%);
  max-width: 720px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 500;
  margin: 0 0 26px;
}
.eyebrow.dark {
  color: var(--taupe);
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0;
}
h1 {
  font-size: clamp(64px, 7.4vw, 116px);
  line-height: 0.81;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-weight: 400;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin: 35px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 16px 26px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.button.light {
  background: #fff;
  color: var(--ink);
}
.text-link {
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
}
.text-link span,
.card-link span {
  margin-left: 9px;
}
.hero-note {
  position: absolute;
  right: 3.5vw;
  bottom: 45px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
}
.section-pad {
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 130px);
}
.manifesto {
  text-align: center;
}
.manifesto h2 {
  font-size: clamp(43px, 5vw, 74px);
  line-height: 1.04;
}
.manifesto .lead {
  max-width: 790px;
  margin: 40px auto 0;
  line-height: 1.9;
  color: #655e56;
  font-size: 17px;
}
.properties {
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(48px, 5vw, 70px);
}
.section-head > p {
  max-width: 390px;
  color: #6d655c;
  line-height: 1.7;
}
.property-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.property-card {
  min-height: 510px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ddd0bf;
  position: relative;
  overflow: hidden;
}
.property-card.featured {
  background: #c1a986;
}
.property-card:nth-child(2) {
  background: #ede5d9;
}
.property-card.dark-card {
  background: #34342f;
  color: #fff;
}
.card-number {
  position: absolute;
  right: 28px;
  top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  opacity: 0.15;
}
.tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
}
.property-card p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.property-card h3 {
  font-size: clamp(33px, 3vw, 47px);
  line-height: 1;
  margin-bottom: 24px;
}
.property-card span {
  font-size: 13px;
}
.card-link {
  border: 0;
  border-top: 1px solid currentColor;
  background: none;
  color: inherit;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.catalogue-note {
  text-align: center;
  margin: 46px 0 0;
  color: #776d62;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 21px;
}
.services {
  padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 130px);
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.services h2 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.95;
}
.service-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.service-list article > span {
  color: #b9aa96;
  font-size: 12px;
}
.service-list h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.service-list p {
  color: #c9c4be;
  line-height: 1.65;
  margin: 0;
}
.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
}
.story-mark {
  width: min(35vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e5d9c9;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(82px, 11vw, 160px);
  letter-spacing: -0.12em;
  color: #796b5a;
}
.story-mark span {
  font-style: italic;
  font-size: 0.42em;
  margin: 0 0.08em;
}
.story h2 {
  font-size: clamp(47px, 5vw, 72px);
  line-height: 1;
}
.story-copy > p:not(.eyebrow) {
  max-width: 620px;
  line-height: 1.8;
  color: #665f57;
}
.dark-link {
  display: inline-block;
  margin-top: 25px;
}
.contact {
  background: #baa486;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 8vw, 130px);
}
.contact h2 {
  font-size: clamp(62px, 7vw, 100px);
  line-height: 0.82;
}
.contact-intro > p:not(.eyebrow) {
  max-width: 470px;
  line-height: 1.7;
  margin: 35px 0;
}
.location {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-portrait {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(38, 35, 31, 0.18);
  background: #d8c8b4;
}
.contact-portrait img {
  display: block;
  width: 100%;
  height: auto;
}
.contact-form > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(38, 35, 31, 0.45);
  background: transparent;
  padding: 11px 0;
  border-radius: 0;
  outline: 0;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}
.contact-form ::placeholder {
  color: rgba(38, 35, 31, 0.55);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
legend {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 15px;
}
.choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.choices input {
  position: absolute;
  opacity: 0;
}
.choices span {
  display: block;
  border: 1px solid rgba(38, 35, 31, 0.35);
  padding: 11px 17px;
  font-size: 13px;
  cursor: pointer;
}
.choices input:checked + span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.dark-button {
  align-self: flex-start;
  background: var(--ink);
  color: #fff;
  min-width: 190px;
}
.form-status {
  min-height: 24px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
}
footer {
  padding: 46px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  background: #171613;
  color: #fff;
}
footer .footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 400;
}
footer .footer-brand span,
footer small {
  display: block;
  color: #8f8b85;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 6px;
}
footer p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  margin: 0;
}
footer > a {
  font-size: 12px;
}
footer small {
  grid-column: 1/-1;
  margin-top: 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }
  .menu-button {
    display: block;
    z-index: 2;
  }
  nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    transform: translateX(100%);
    transition: 0.35s;
  }
  nav.open {
    transform: none;
  }
  .property-grid {
    grid-template-columns: 1fr;
  }
  .property-card {
    min-height: 390px;
  }
  .services,
  .story,
  .contact {
    grid-template-columns: 1fr;
  }
  .story-mark {
    width: min(78vw, 410px);
    margin: auto;
  }
  .section-head {
    align-items: start;
    gap: 30px;
    flex-direction: column;
  }
  .services {
    gap: 70px;
  }
}
@media (max-width: 600px) {
  .brand strong {
    font-size: 19px;
  }
  .brand small {
    letter-spacing: 0.13em;
  }
  .hero {
    min-height: 720px;
  }
  .hero-copy {
    top: 48%;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-note {
    display: none;
  }
  .property-card {
    padding: 25px;
  }
  .story {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .contact {
    gap: 70px;
  }
  .contact-portrait {
    margin-top: 10px;
  }
  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  footer small {
    grid-column: auto;
  }
  .services h2 {
    font-size: 47px;
  }
}
/* Ritratti Luisa ed Eleonora */
.story {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}
.story-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.story-portraits figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #e5d9c9;
}
.story-portraits figure:first-child {
  transform: translateY(-28px);
}
.story-portraits img {
  display: block;
  width: 100%;
  height: clamp(390px, 44vw, 610px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
}
.story-portraits figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 18px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(25, 21, 17, 0.78));
}
.story-portraits figcaption strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
}
.story-portraits figcaption span {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .story-portraits {
    width: min(100%, 620px);
    margin: 28px auto 25px;
  }
  .story-portraits img {
    height: clamp(390px, 72vw, 560px);
  }
}
@media (max-width: 600px) {
  .story-portraits {
    gap: 8px;
  }
  .story-portraits figure:first-child {
    transform: translateY(-16px);
  }
  .story-portraits img {
    height: 390px;
  }
  .story-portraits figcaption {
    padding: 42px 12px 14px;
  }
  .story-portraits figcaption strong {
    font-size: 24px;
  }
  .story-portraits figcaption span {
    font-size: 8px;
  }
}
.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 14px 19px;
  background: #1f6f50;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.2s;
}
.whatsapp-contact:hover {
  background: #185c42;
  transform: translateY(-2px);
}
.whatsapp-contact span {
  font-size: 19px;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 19px 0 15px;
  border-radius: 999px;
  background: #1f6f50;
  color: #fff;
  box-shadow: 0 10px 30px rgba(20, 45, 34, 0.28);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s,
    background 0.2s;
}
.whatsapp-float:hover {
  background: #185c42;
  transform: translateY(-3px);
}
.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 17px;
}
@media (max-width: 600px) {
  footer {
    padding-bottom: 105px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }
}
.music-toggle {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 39;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(38, 35, 31, 0.82);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(20, 18, 15, 0.18);
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.music-bars {
  height: 17px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.music-bars i {
  display: block;
  width: 2px;
  height: 8px;
  background: #d7c4a7;
  animation: music-wave 0.9s ease-in-out infinite alternate;
}
.music-bars i:nth-child(2) {
  height: 15px;
  animation-delay: -0.35s;
}
.music-bars i:nth-child(3) {
  height: 11px;
  animation-delay: -0.65s;
}
.music-toggle.paused .music-bars i {
  animation-play-state: paused;
  height: 3px;
}
.music-toggle:hover {
  background: rgba(38, 35, 31, 0.94);
}
@keyframes music-wave {
  to {
    height: 16px;
  }
}
@media (max-width: 600px) {
  .music-toggle {
    left: 16px;
    bottom: 20px;
    min-height: 42px;
    padding: 0 13px;
  }
  .music-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .music-bars i {
    animation: none;
  }
}

.testimonials {
  background: #f1ece5;
}
.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 55px;
}
.testimonials-head h2 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.92;
}
.testimonials-head h2 em {
  font-weight: 300;
}
.google-rating {
  flex: 0 0 auto;
  display: grid;
  gap: 6px;
  text-align: right;
}
.google-rating span,
.testimonial-stars {
  color: #a77a42;
  letter-spacing: 0.12em;
}
.google-rating strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 500;
}
.google-rating small {
  color: #746e67;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.testimonial {
  grid-column: span 2;
  min-height: 290px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.testimonial:nth-child(4) {
  grid-column: 2 / span 2;
}
.testimonial blockquote {
  margin: 28px 0 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  line-height: 1.28;
  font-weight: 400;
}
.testimonial p {
  margin: auto 0 0;
  padding-top: 20px;
  border-top: 1px solid #ddd2c3;
  color: #4a4641;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.testimonials-source {
  margin: 28px 0 0;
  text-align: center;
  color: #777169;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .testimonials-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .google-rating {
    text-align: left;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial,
  .testimonial:nth-child(4) {
    grid-column: auto;
  }
  .testimonial:last-child {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .testimonials-head {
    margin-bottom: 36px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial,
  .testimonial:nth-child(4),
  .testimonial:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 28px 24px;
  }
  .testimonial blockquote {
    margin: 22px 0 26px;
    font-size: 22px;
  }
}
