:root {
  --cream: #fbf6ee;
  --sand: #efe3d2;
  --ivory: #fffaf3;
  --terracotta: #b98254;
  --terracotta-dark: #96643d;
  --brown: #3a2a20;
  --brown-soft: #6c5a4b;
  --gold: #c9a16f;
  --line: #e4d4bf;
  --white: #ffffff;
  --black-soft: #221912;
  --shadow-soft: 0 24px 70px rgba(58, 42, 32, 0.16);
  --shadow-card: 0 18px 45px rgba(58, 42, 32, 0.10);
  --transition: 0.35s ease;
}

/* RESET BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.serif {
  font-family: Georgia, "Times New Roman", serif;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 32px;
}

/* HEADER / MENU */
header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  width: 100%;
  color: var(--white);
}

.nav {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 177, 132, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8cda8;
  font-family: Georgia, serif;
  font-size: 19px;
  background: rgba(255, 255, 255, 0.06);
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.brand-sub {
  margin-top: 8px;
  color: #e8cda8;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  opacity: 0.94;
  transition: color var(--transition), opacity var(--transition);
}

nav a:hover,
nav a.active,
.active {
  color: #e8cda8;
  opacity: 1;
}

.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 1px;
  background: #e8cda8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
}

.lang {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hamb {
  display: none;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 1100px) {
  header nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 22px;
    right: 22px;
    background: rgba(43, 33, 25, 0.96);
    padding: 26px;
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
  }

  header nav.is-open {
    display: block;
  }

  header nav ul {
    display: grid;
    gap: 18px;
  }

  header nav a {
    color: #fff;
  }

  header nav a.active {
    color: #e8cda8;
  }

  .hamb {
    cursor: pointer;
    user-select: none;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background:
    url("https://www.casalepoggiomeone.it/img/esterno_3.png")
    center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.68),
    rgba(34, 25, 18, 0.38),
    rgba(34, 25, 18, 0.08)
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
  color: var(--white);
}

.kicker {
  margin-bottom: 22px;
  color: #e8cda8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
}

.hero p {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  background: var(--terracotta-dark);
}

.btn.light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn.light:hover {
  background: var(--white);
  color: var(--brown);
}

.slider-count {
  position: absolute;
  right: 48px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
}

.slider-count span:nth-child(2) {
  width: 1px;
  height: 95px;
  background: rgba(255, 255, 255, 0.65);
}

/* BOOKING BAR */
.booking {
  position: relative;
  z-index: 3;
  margin-top: 64px;
}

.booking-box {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 270px;
}

.booking-item {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.booking-box.booking-form {
  width: 100%;
  border: 0;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 270px;
  box-shadow: var(--shadow-soft);
}

.booking-form .booking-item {
  min-width: 0;
}

.booking-form label.booking-label {
  display: block;
}

.booking-form .booking-value {
  width: 100%;
}

.booking-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1.4;
  padding: 0;
}

.booking-form input[type="date"] {
  min-height: 28px;
}

.booking-form input[type="number"] {
  appearance: textfield;
}

.booking-form input[type="number"]::-webkit-outer-spin-button,
.booking-form input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.booking-form button {
  min-height: 100%;
  border: 0;
  background: #2b2119;
  color: var(--white);
  padding: 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background var(--transition);
}

.booking-form button:hover {
  background: var(--terracotta);
}

.home-footer-btn {
  display: inline-block;
  text-align: center;
}

/* Mobile */
@media (max-width: 1100px) {
  .booking-box.booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form .booking-item:nth-child(2) {
    border-right: 0;
  }

  .booking-form button {
    min-height: 90px;
  }
}

@media (max-width: 820px) {
  .booking {
    margin-top: 0;
  }

  .booking-box.booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form .booking-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-form button {
    min-height: auto;
    padding: 24px;
  }
}



/* COMMON SECTION */
section {
  position: relative;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.decor {
  position: absolute;
  right: 45px;
  top: 30px;
  color: rgba(201, 161, 111, 0.12);
  font-family: Georgia, serif;
  font-size: 170px;
  line-height: 1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.about p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack .big {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 455px;
  object-fit: cover;
  box-shadow: 0 24px 65px rgba(58, 42, 32, 0.14);
}

.photo-stack .small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 265px;
  object-fit: cover;
  border: 14px solid var(--cream);
  box-shadow: 0 24px 65px rgba(58, 42, 32, 0.14);
}

/* ROOMS */
.rooms {
  padding: 115px 0;
  background: #eadcc9;
  color: var(--brown);
  overflow: hidden;
}

.rooms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.70), rgba(255, 250, 243, 0.35)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  opacity: 0.45;
}

.rooms-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
}

.rooms p {
  max-width: 390px;
  margin-top: 26px;
  color: var(--brown-soft);
}

.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--ivory);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(58, 42, 32, 0.14);
}

.room-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.room-info {
  padding: 26px;
}

.room-info h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.room-info p {
  margin-top: 8px;
  color: #7a6858;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Sezione appartamenti: immagine unica + elenco elegante */
.apartments-simple {
  padding: 120px 0;
  background: #f8f0e6;
  overflow: hidden;
}

.apartments-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.apartments-image {
  position: relative;
}

.apartments-image::before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
  z-index: 0;
}

.apartments-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 680px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.14);
}

.apartments-content p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.apartments-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
  border-top: 1px solid var(--line);
}

.apartment-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.apartment-item span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
}

.apartment-item h3 {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.apartment-item p {
  margin-top: 4px;
  color: #75665a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 1100px) {
  .apartments-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .apartments-image img {
    height: 520px;
  }
}

@media (max-width: 760px) {
  .apartments-simple {
    padding: 78px 0;
  }

  .apartments-image::before {
    display: none;
  }

  .apartments-image img {
    height: 420px;
  }

  .apartments-list {
    grid-template-columns: 1fr;
  }

  .apartment-item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .apartment-item h3 {
    font-size: 23px;
  }

  .apartment-item p {
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .apartments-image img {
    height: 360px;
  }
}



/* SERVICES */
.services {
  padding: 120px 0;
  background: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.services h2 {
  max-width: 700px;
  margin: 0 auto;
}

.service-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.service {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service:hover {
  background: var(--white);
  box-shadow: 0 22px 50px rgba(58, 42, 32, 0.10);
  border-color: var(--terracotta);
  transform: translateY(-8px);
}

.service-icon {
  margin-bottom: 22px;
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.service h3 {
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service p {
  color: #75665a;
  font-size: 14px;
  line-height: 1.65;
}

/* VERSIONE PIÙ ELEGANTE SERVIZI */

.service-grid.refined {
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.service.refined {
  border-radius: 28px;
  padding: 40px 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
  transition: all .35s ease;
}

.service.refined:hover {
  transform: translateY(-10px);
  border-color: var(--terracotta);
  box-shadow: 0 24px 60px rgba(58,42,32,.12);
  background: white;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: all .3s;
}

.service.refined:hover .service-icon {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.service.refined h3 {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service.refined p {
  font-size: 14px;
  color: var(--brown-soft);
}

/* RESPONSIVE */
@media (max-width:1100px){
  .service-grid.refined{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:700px){
  .service-grid.refined{
    grid-template-columns: 1fr;
  }
}

/* EXPERIENCES */
.experiences {
  padding: 120px 0;
  background: #2c2118;
  color: var(--white);
  overflow: hidden;
}

.experiences::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 23, 17, 0.95), rgba(31, 23, 17, 0.72), rgba(31, 23, 17, 0.55)),
    url("https://www.casalepoggiomeone.it/img/esperienze/sfondo.png")
    center / cover no-repeat;
}

.exp-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.experiences p {
  max-width: 430px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover img {
  transform: scale(1.09);
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));
}

.exp-card h3 {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

/* FOOTER */
footer {
  background: var(--cream);
  color: var(--brown);
  border-top: 1px solid var(--line);
}

.footer-main {
  padding: 82px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 52px;
}

.footer-logo {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-main p,
.footer-main li {
  color: #6f6054;
}

.footer-main h4 {
  margin-bottom: 24px;
  color: var(--terracotta);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.footer-main ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: color var(--transition), border-color var(--transition);
}

.socials a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: #8a7b6e;
  font-size: 14px;
}

.bottom-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-btn {
  width: 100%;
  border: 0;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background var(--transition);
}

.footer-btn:hover {
  background: var(--terracotta-dark);
}

/* ===== FOOTER MOBILE FIX ===== */

@media (max-width: 700px){

  .footer-main{
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 60px 0;
  }

  .footer-main > div{
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .footer-main > div:last-child{
    border-bottom: none;
  }

  /* LOGO BLOCK */
  .footer-logo{
    justify-content: center;
    text-align: center;
  }

  .footer-main p{
    text-align: center;
  }

  .socials{
    justify-content: center;
  }

  /* NAV */
  .footer-main ul{
    text-align: center;
  }

  /* CONTATTI */
  .footer-main h4{
    text-align: center;
  }

  .footer-main div:nth-child(3) p{
    text-align: center;
  }

  /* CTA BLOCCO */
  .footer-btn{
    margin-top: 12px;
    font-size: 13px;
    padding: 18px;
  }

  /* BOTTOM BAR */
  .bottom-flex{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom{
    font-size: 13px;
  }
}

/* RESPONSIVE: LARGE TABLET */
@media (max-width: 1200px) {
  .nav {
    padding-inline: 28px;
  }

  nav ul {
    gap: 18px;
    font-size: 11px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* RESPONSIVE: TABLET */
@media (max-width: 1100px) {
  nav ul {
    display: none;
  }

  .hamb {
    display: block;
  }

  .about-grid,
  .rooms-grid,
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid,
  .exp-grid {
    gap: 48px;
  }

  .room-cards,
  .exp-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-item:nth-child(2) {
    border-right: 0;
  }

  .booking button {
    min-height: 90px;
    padding: 24px;
  }
}

/* RESPONSIVE: SMALL TABLET */
@media (max-width: 820px) {
  .nav-actions .btn-outline,
  .nav-actions .lang {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero p {
    font-size: 16px;
  }

  .booking {
    margin-top: 0;
  }

  .booking-box {
    grid-template-columns: 1fr;
  }

  .booking-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service {
    border-radius: 40px;
  }

  .slider-count {
    display: none;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 700px) {
  .container {
    padding-inline: 22px;
  }

  .nav {
    padding: 22px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-sub {
    letter-spacing: 0.32em;
  }

  .hero {
    min-height: 88vh;
    align-items: center;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(34, 25, 18, 0.74),
      rgba(34, 25, 18, 0.52),
      rgba(34, 25, 18, 0.28)
    );
  }

  .hero-content {
    padding-top: 110px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .kicker,
  .eyebrow {
    letter-spacing: 0.20em;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .about,
  .rooms,
  .services,
  .experiences {
    padding: 76px 0;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .photo-stack .big,
  .photo-stack .small {
    position: relative;
    width: 100%;
    height: 330px;
    border: 0;
    inset: auto;
  }

  .room-cards,
  .exp-cards,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .room-card img,
  .exp-card {
    height: 300px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 64px 0;
  }
}

/* RESPONSIVE: SMALL MOBILE */
@media (max-width: 430px) {
  .nav {
    padding-inline: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    font-size: 9px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .btn {
    padding: 14px 20px;
  }

  .booking-item,
  .booking button {
    padding-inline: 22px;
  }

  .service {
    min-height: 220px;
    padding: 30px 22px;
  }

  .bottom-flex {
    flex-direction: column;
  }
}

/* =========================================================
   PAGINA: IL CASALE
   Da aggiungere in fondo a style.css originale
   ========================================================= */

.casale-page header {
  position: absolute;
}

.casale-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    url("https://www.casalepoggiomeone.it/img/esterno_5.png")
    center / cover no-repeat;
}

.casale-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.72),
    rgba(34, 25, 18, 0.44),
    rgba(34, 25, 18, 0.14)
  );
}

.casale-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.casale-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 110px;
  color: var(--white);
}

.casale-hero-content p {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* INTRO */
.casale-intro {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.casale-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
  align-items: center;
}

.casale-copy p {
  max-width: 570px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.casale-photo-duo {
  position: relative;
  min-height: 580px;
}

.casale-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 74%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.15);
}

.casale-photo-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 285px;
  object-fit: cover;
  border: 14px solid var(--cream);
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.15);
}

/* MOOD SECTION */
.casale-mood {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.70)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.casale-mood-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.casale-mood-text {
  columns: 2;
  column-gap: 42px;
}

.casale-mood-text p {
  color: var(--brown-soft);
  break-inside: avoid;
}

.casale-mood-text p + p {
  margin-top: 0;
}

/* VALUES */
.casale-values {
  padding: 120px 0;
  background: var(--ivory);
}

.casale-values-head {
  max-width: 720px;
  margin-bottom: 58px;
}

.casale-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.casale-values-grid article {
  min-height: 310px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.casale-values-grid article:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 24px 60px rgba(58, 42, 32, 0.11);
}

.casale-values-grid span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.casale-values-grid h3 {
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.casale-values-grid p {
  margin-top: 16px;
  color: var(--brown-soft);
}

/* CTA */
.casale-cta {
  padding: 100px 0;
  background: var(--cream);
}

.casale-cta-box {
  padding: 58px 64px;
  background: #2b2119;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.18);
}

.casale-cta-box h2 {
  max-width: 760px;
}

.casale-cta-box p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.casale-cta-box .btn {
  white-space: nowrap;
}

.casale-footer-btn {
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .casale-intro-grid,
  .casale-mood-grid {
    grid-template-columns: 1fr;
  }

  .casale-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .casale-mood-text {
    columns: 1;
  }

  .casale-mood-text p + p {
    margin-top: 24px;
  }

  .casale-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .casale-hero {
    min-height: 72vh;
  }

  .casale-hero-content {
    padding-top: 115px;
  }

  .casale-hero-content p {
    font-size: 16px;
  }

  .casale-intro,
  .casale-mood,
  .casale-values,
  .casale-cta {
    padding: 76px 0;
  }

  .casale-photo-duo {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .casale-photo-main,
  .casale-photo-overlap {
    position: relative;
    width: 100%;
    height: 330px;
    border: 0;
    inset: auto;
  }

  .casale-values-grid {
    grid-template-columns: 1fr;
  }

  .casale-values-grid article {
    min-height: auto;
  }

  .casale-cta-box {
    padding: 42px 26px;
  }

  .casale-cta-box .btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   PAGINA: APPARTAMENTI
   Da aggiungere in fondo a style.css originale
   ========================================================= */

.appartamenti-page header {
  position: absolute;
}

.appartamenti-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    url("https://www.casalepoggiomeone.it/img/appartamenti/appartamenti-casale-poggio-meone.png")
    center / cover no-repeat;
}

.appartamenti-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.74),
    rgba(34, 25, 18, 0.48),
    rgba(34, 25, 18, 0.18)
  );
}

.appartamenti-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.appartamenti-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 110px;
  color: var(--white);
}

.appartamenti-hero-content p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* INTRO */
.appartamenti-intro {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.appartamenti-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 82px;
  align-items: center;
}

.appartamenti-image {
  position: relative;
}

.appartamenti-image::before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
}

.appartamenti-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 660px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.14);
}

.appartamenti-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--brown-soft);
}

/* LISTA APPARTAMENTI */
.appartamenti-list-section {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.90), rgba(255, 250, 243, 0.74)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.appartamenti-list-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.appartamenti-list-head p {
  max-width: 560px;
  color: var(--brown-soft);
}

.appartamenti-table {
  border-top: 1px solid var(--line);
}

.appartamento-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--transition), background var(--transition);
}

.appartamento-row:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.appartamento-row > span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.appartamento-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.appartamento-row p {
  margin-top: 6px;
  color: var(--brown-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.appartamento-row a {
  border: 1px solid var(--line);
  padding: 12px 20px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.appartamento-row a:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

/* COMFORT */
.appartamenti-comfort {
  padding: 120px 0;
  background: var(--ivory);
}

.appartamenti-comfort-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.comfort-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comfort-cards article {
  min-height: 280px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.comfort-cards article:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 24px 60px rgba(58, 42, 32, 0.11);
}

.comfort-cards h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.comfort-cards p {
  margin-top: 18px;
  color: var(--brown-soft);
}

/* CTA */
.appartamenti-cta {
  padding: 100px 0;
  background: var(--cream);
}

.appartamenti-cta-box {
  padding: 58px 64px;
  background: #2b2119;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.18);
}

.appartamenti-cta-box h2 {
  max-width: 780px;
}

.appartamenti-cta-box p {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.appartamenti-cta-box .btn {
  white-space: nowrap;
}

.appartamenti-footer-btn {
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .appartamenti-intro-grid,
  .appartamenti-list-head,
  .appartamenti-comfort-grid {
    grid-template-columns: 1fr;
  }

  .comfort-cards {
    grid-template-columns: 1fr 1fr;
  }

  .appartamenti-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .appartamenti-hero {
    min-height: 72vh;
  }

  .appartamenti-hero-content {
    padding-top: 115px;
  }

  .appartamenti-hero-content p {
    font-size: 16px;
  }

  .appartamenti-intro,
  .appartamenti-list-section,
  .appartamenti-comfort,
  .appartamenti-cta {
    padding: 76px 0;
  }

  .appartamenti-image::before {
    display: none;
  }

  .appartamenti-image img {
    height: 430px;
  }

  .appartamento-row {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .appartamento-row:hover {
    padding-left: 0;
  }

  .appartamento-row a {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }

  .appartamento-row > span {
    font-size: 25px;
  }

  .appartamento-row h3 {
    font-size: 28px;
  }

  .appartamento-row p {
    font-size: 18px;
  }

  .comfort-cards {
    grid-template-columns: 1fr;
  }

  .comfort-cards article {
    min-height: auto;
  }

  .appartamenti-cta-box {
    padding: 42px 26px;
  }

  .appartamenti-cta-box .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .appartamenti-image img {
    height: 360px;
  }
}


/* =========================================================
   PAGINA: SERVIZI
   Da aggiungere in fondo a style.css originale
   Nota: per ora non include la colazione.
   ========================================================= */

.servizi-page header {
  position: absolute;
}

.servizi-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    url("https://www.casalepoggiomeone.it/img/piscina_3.png")
    center / cover no-repeat;
}

.servizi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.76),
    rgba(34, 25, 18, 0.48),
    rgba(34, 25, 18, 0.16)
  );
}

.servizi-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.servizi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 110px;
  color: var(--white);
}

.servizi-hero-content p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* INTRO */
.servizi-intro {
  padding: 120px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

.servizi-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.servizi-intro-text {
  columns: 2;
  column-gap: 42px;
}

.servizi-intro-text p {
  color: var(--brown-soft);
  break-inside: avoid;
}

.servizi-intro-text p + p {
  margin-top: 0;
}

/* CARDS SERVIZI */
.servizi-main {
  padding: 40px 0 120px;
  background: var(--cream);
}

.servizi-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.servizio-card {
  min-height: 310px;
  padding: 38px 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.60);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.servizio-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 24px 60px rgba(58, 42, 32, 0.11);
}

.servizio-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.62)),
    url("https://www.casalepoggiomeone.it/img/piscina_3.png")
    center / cover no-repeat;
}

.servizio-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  background: rgba(255, 255, 255, 0.58);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.servizio-card:hover .servizio-icon {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.servizio-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.45;
}

.servizio-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}

.servizio-card p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--brown-soft);
}

/* PHOTO BAND */
.servizi-photo-band {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.86), rgba(255, 250, 243, 0.70)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.servizi-photo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 82px;
  align-items: center;
}

.servizi-photo-copy p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.servizi-photo-stack {
  position: relative;
  min-height: 570px;
}

.servizi-photo-big {
  position: absolute;
  right: 0;
  top: 0;
  width: 74%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.15);
}

.servizi-photo-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 280px;
  object-fit: cover;
  border: 14px solid var(--cream);
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.15);
}

/* CTA */
.servizi-cta {
  padding: 100px 0;
  background: var(--cream);
}

.servizi-cta-box {
  padding: 58px 64px;
  background: #2b2119;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.18);
}

.servizi-cta-box h2 {
  max-width: 780px;
}

.servizi-cta-box p {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.servizi-cta-box .btn {
  white-space: nowrap;
}

.servizi-footer-btn {
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .servizi-intro-grid,
  .servizi-photo-grid {
    grid-template-columns: 1fr;
  }

  .servizi-intro-text {
    columns: 1;
  }

  .servizi-intro-text p + p {
    margin-top: 24px;
  }

  .servizi-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servizio-card-featured {
    grid-column: span 2;
  }

  .servizi-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .servizi-hero {
    min-height: 72vh;
  }

  .servizi-hero-content {
    padding-top: 115px;
  }

  .servizi-hero-content p {
    font-size: 16px;
  }

  .servizi-intro,
  .servizi-main,
  .servizi-photo-band,
  .servizi-cta {
    padding: 76px 0;
  }

  .servizi-main-grid {
    grid-template-columns: 1fr;
  }

  .servizio-card,
  .servizio-card-featured {
    grid-column: auto;
    min-height: auto;
    padding: 34px 26px;
  }

  .servizi-photo-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .servizi-photo-big,
  .servizi-photo-small {
    position: relative;
    width: 100%;
    height: 330px;
    border: 0;
    inset: auto;
  }

  .servizi-cta-box {
    padding: 42px 26px;
  }

  .servizi-cta-box .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .servizio-card h3 {
    font-size: 28px;
  }

  .servizi-photo-big,
  .servizi-photo-small {
    height: 300px;
  }
}


/* =========================================================
   PAGINA: DINTORNI
   Da aggiungere in fondo a style.css originale
   ========================================================= */

.dintorni-page header {
  position: absolute;
}

.dintorni-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    url("https://www.casalepoggiomeone.it/img/esperienze/sfondo.png")
    center / cover no-repeat;
}

.dintorni-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.76),
    rgba(34, 25, 18, 0.48),
    rgba(34, 25, 18, 0.16)
  );
}

.dintorni-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.dintorni-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 110px;
  color: var(--white);
}

.dintorni-hero-content p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* INTRO */
.dintorni-intro {
  padding: 120px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

.dintorni-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.dintorni-intro-text {
  columns: 2;
  column-gap: 42px;
}

.dintorni-intro-text p {
  color: var(--brown-soft);
  break-inside: avoid;
}

.dintorni-intro-text p + p {
  margin-top: 0;
}

/* DISCOVER CARDS */
.dintorni-discover {
  padding: 40px 0 120px;
  background: var(--cream);
}

.dintorni-discover-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 26px;
  align-items: stretch;
}

.dintorni-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(58, 42, 32, 0.08);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.dintorni-card:hover {
  transform: translateY(-8px);
  border-color: var(--terracotta);
  box-shadow: 0 26px 70px rgba(58, 42, 32, 0.13);
}

.dintorni-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dintorni-card:hover img {
  transform: scale(1.05);
}

.dintorni-card-large img {
  height: 420px;
}

.dintorni-card div {
  padding: 30px;
}

.dintorni-card span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.dintorni-card h3 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.dintorni-card p {
  margin-top: 16px;
  color: var(--brown-soft);
}

/* ROUTES */
.dintorni-routes {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.90), rgba(255, 250, 243, 0.72)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dintorni-routes-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  align-items: start;
}

.dintorni-routes-copy p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.routes-list {
  border-top: 1px solid var(--line);
}

.routes-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.routes-list span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.routes-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.routes-list p {
  margin-top: 8px;
  color: var(--brown-soft);
}

/* SEA / FINAL IMAGE */
.dintorni-sea {
  padding: 120px 0;
  background: var(--ivory);
}

.dintorni-sea-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
  align-items: center;
}

.dintorni-sea-image {
  position: relative;
}

.dintorni-sea-image::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
}

.dintorni-sea-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 570px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.14);
}

.dintorni-sea p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--brown-soft);
}

/* CTA */
.dintorni-cta {
  padding: 100px 0;
  background: var(--cream);
}

.dintorni-cta-box {
  padding: 58px 64px;
  background: #2b2119;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.18);
}

.dintorni-cta-box h2 {
  max-width: 780px;
}

.dintorni-cta-box p {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.dintorni-cta-box .btn {
  white-space: nowrap;
}

.dintorni-footer-btn {
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .dintorni-intro-grid,
  .dintorni-routes-grid,
  .dintorni-sea-grid {
    grid-template-columns: 1fr;
  }

  .dintorni-intro-text {
    columns: 1;
  }

  .dintorni-intro-text p + p {
    margin-top: 24px;
  }

  .dintorni-discover-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dintorni-card-large {
    grid-column: span 2;
  }

  .dintorni-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dintorni-hero {
    min-height: 72vh;
  }

  .dintorni-hero-content {
    padding-top: 115px;
  }

  .dintorni-hero-content p {
    font-size: 16px;
  }

  .dintorni-intro,
  .dintorni-discover,
  .dintorni-routes,
  .dintorni-sea,
  .dintorni-cta {
    padding: 76px 0;
  }

  .dintorni-discover-grid {
    grid-template-columns: 1fr;
  }

  .dintorni-card-large {
    grid-column: auto;
  }

  .dintorni-card img,
  .dintorni-card-large img {
    height: 300px;
  }

  .routes-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dintorni-sea-image::before {
    display: none;
  }

  .dintorni-sea-image img {
    height: 360px;
  }

  .dintorni-cta-box {
    padding: 42px 26px;
  }

  .dintorni-cta-box .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .dintorni-card div {
    padding: 26px;
  }

  .dintorni-card h3,
  .routes-list h3 {
    font-size: 28px;
  }

  .dintorni-sea-image img {
    height: 310px;
  }
}


/* =========================================================
   PAGINA: CONTATTI
   Da aggiungere in fondo a style.css originale
   ========================================================= */

.contatti-page header {
  position: absolute;
}

.contatti-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    url("https://www.casalepoggiomeone.it/img/esterno_3.png")
    center / cover no-repeat;
}

.contatti-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.76),
    rgba(34, 25, 18, 0.48),
    rgba(34, 25, 18, 0.16)
  );
}

.contatti-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.contatti-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 110px;
  color: var(--white);
}

.contatti-hero-content p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* MAIN */
.contatti-main {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.contatti-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 82px;
  align-items: start;
}

.contatti-copy p {
  max-width: 560px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.contact-info-cards {
  margin-top: 44px;
  display: grid;
  gap: 18px;
}

.contact-info-cards article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-info-cards article:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-info-cards span {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-cards h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-info-cards p {
  margin-top: 4px;
}

/* FORM */
.contact-form-wrap {
  position: relative;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
}

.contact-form-luxury {
  position: relative;
  z-index: 1;
  padding: 46px;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.13);
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form-luxury label {
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form-luxury input,
.contact-form-luxury select,
.contact-form-luxury textarea {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brown);
  padding: 15px 16px;
  outline: none;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form-luxury textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-luxury input:focus,
.contact-form-luxury select:focus,
.contact-form-luxury textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(185, 130, 84, 0.10);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.privacy-check {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--brown-soft) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.privacy-check input {
  width: auto;
  margin-top: 3px;
}

.form-message {
  display: none;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.70);
  color: var(--brown);
}

.form-message.is-visible {
  display: block;
}

.form-message.success {
  border-color: rgba(81, 128, 90, 0.35);
  background: rgba(81, 128, 90, 0.10);
  color: #385c3e;
}

.form-message.error {
  border-color: rgba(150, 70, 55, 0.35);
  background: rgba(150, 70, 55, 0.10);
  color: #7b3328;
}

.contact-submit {
  border: 0;
  width: fit-content;
}

/* MAP */
.contatti-map-section {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.90), rgba(255, 250, 243, 0.72)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  border-top: 1px solid var(--line);
}

.contatti-map-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 82px;
  align-items: center;
}

.contatti-map-grid p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.map-placeholder {
  min-height: 420px;
  background:
    linear-gradient(rgba(43, 33, 25, 0.62), rgba(43, 33, 25, 0.62)),
    url("https://www.casalepoggiomeone.it/img/esterno_5.png")
    center / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.14);
}

.map-placeholder span {
  display: inline-flex;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #e8cda8;
  font-size: 28px;
}

.map-placeholder h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.map-placeholder p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.contatti-footer-btn {
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contatti-grid,
  .contatti-map-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contatti-hero {
    min-height: 72vh;
  }

  .contatti-hero-content {
    padding-top: 115px;
  }

  .contatti-hero-content p {
    font-size: 16px;
  }

  .contatti-main,
  .contatti-map-section {
    padding: 76px 0;
  }

  .contact-form-wrap::before {
    display: none;
  }

  .contact-form-luxury {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
    text-align: center;
  }

  .map-placeholder {
    min-height: 330px;
  }
}


/* =========================================================
   PAGINA: ESPERIENZE
   Da aggiungere in fondo a style.css originale
   ========================================================= */

.esperienze-page header {
  position: absolute;
}

.esperienze-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    url("https://www.casalepoggiomeone.it/img/esperienze/sfondo.png")
    center / cover no-repeat;
}

.esperienze-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 25, 18, 0.78),
    rgba(34, 25, 18, 0.50),
    rgba(34, 25, 18, 0.16)
  );
}

.esperienze-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(0deg, var(--cream), rgba(251, 246, 238, 0));
}

.esperienze-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 110px;
  color: var(--white);
}

.esperienze-hero-content p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* INTRO */
.esperienze-intro {
  padding: 120px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

.esperienze-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.esperienze-intro-text {
  columns: 2;
  column-gap: 42px;
}

.esperienze-intro-text p {
  color: var(--brown-soft);
  break-inside: avoid;
}

.esperienze-intro-text p + p {
  margin-top: 0;
}

/* CARDS */
.esperienze-cards-section {
  padding: 40px 0 120px;
  background: var(--cream);
}

.esperienze-cards-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 26px;
  align-items: stretch;
}

.esperienza-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(58, 42, 32, 0.08);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.esperienza-card:hover {
  transform: translateY(-8px);
  border-color: var(--terracotta);
  box-shadow: 0 26px 70px rgba(58, 42, 32, 0.13);
}

.esperienza-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.esperienza-card:hover img {
  transform: scale(1.05);
}

.esperienza-card-large img {
  height: 420px;
}

.esperienza-card div {
  padding: 30px;
}

.esperienza-card span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.esperienza-card h3 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.esperienza-card p {
  margin-top: 16px;
  color: var(--brown-soft);
}

/* TERRE DI CRETA */
.terre-creta-section {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.90), rgba(255, 250, 243, 0.72)),
    url("https://www.casalepoggiomeone.it/img/esterno_1.jpg")
    center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terre-creta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 82px;
  align-items: center;
}

.terre-creta-image {
  position: relative;
}

.terre-creta-image::before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
}

.terre-creta-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 590px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.14);
}

.terre-creta-copy p {
  max-width: 570px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.terre-creta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
}

/* FLOW */
.esperienze-flow {
  padding: 120px 0;
  background: var(--ivory);
}

.esperienze-flow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  align-items: start;
}

.esperienze-flow p {
  max-width: 540px;
  margin-top: 24px;
  color: var(--brown-soft);
}

.flow-list {
  border-top: 1px solid var(--line);
}

.flow-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.flow-list p {
  margin-top: 8px;
  color: var(--brown-soft);
}

/* CTA */
.esperienze-cta {
  padding: 100px 0;
  background: var(--cream);
}

.esperienze-cta-box {
  padding: 58px 64px;
  background: #2b2119;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 28px 70px rgba(58, 42, 32, 0.18);
}

.esperienze-cta-box h2 {
  max-width: 780px;
}

.esperienze-cta-box p {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.esperienze-cta-box .btn {
  white-space: nowrap;
}

.esperienze-footer-btn {
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .esperienze-intro-grid,
  .terre-creta-grid,
  .esperienze-flow-grid {
    grid-template-columns: 1fr;
  }

  .esperienze-intro-text {
    columns: 1;
  }

  .esperienze-intro-text p + p {
    margin-top: 24px;
  }

  .esperienze-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .esperienza-card-large {
    grid-column: span 2;
  }

  .esperienze-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .esperienze-hero {
    min-height: 72vh;
  }

  .esperienze-hero-content {
    padding-top: 115px;
  }

  .esperienze-hero-content p {
    font-size: 16px;
  }

  .esperienze-intro,
  .esperienze-cards-section,
  .terre-creta-section,
  .esperienze-flow,
  .esperienze-cta {
    padding: 76px 0;
  }

  .esperienze-cards-grid {
    grid-template-columns: 1fr;
  }

  .esperienza-card-large {
    grid-column: auto;
  }

  .esperienza-card img,
  .esperienza-card-large img {
    height: 300px;
  }

  .terre-creta-image::before {
    display: none;
  }

  .terre-creta-image img {
    height: 360px;
  }

  .terre-creta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .terre-creta-actions .btn {
    text-align: center;
  }

  .flow-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .esperienze-cta-box {
    padding: 42px 26px;
  }

  .esperienze-cta-box .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .esperienza-card div {
    padding: 26px;
  }

  .esperienza-card h3,
  .flow-list h3 {
    font-size: 28px;
  }

  .terre-creta-image img {
    height: 310px;
  }
}

/* ===== FIX PERCORSI VERDI ===== */

.percorsi-verdi-section {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255,250,243,.96), rgba(255,250,243,.82)),
    url("https://www.casalepoggiomeone.it/img/esperienze/natura.png") center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.percorsi-verdi-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.percorsi-verdi-head p {
  max-width: 620px;
  color: var(--brown-soft);
  font-size: 17px;
}

.percorsi-verdi-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.percorsi-verdi-list .percorso-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  padding: 34px 38px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(58,42,32,.08);
}

.percorsi-verdi-list .percorso-card > span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.percorsi-verdi-list .percorso-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.percorsi-verdi-list .percorso-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.percorsi-verdi-list .percorso-card li {
  padding: 8px 12px;
  background: rgba(185,130,84,.11);
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.4;
}

.percorsi-verdi-list .percorso-card p {
  margin-top: 18px;
  color: var(--brown-soft);
  max-width: 880px;
}

@media (max-width: 900px) {
  .percorsi-verdi-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .percorsi-verdi-list .percorso-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .percorsi-verdi-list .percorso-card ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}