/* ============================================================
   mivuoisposare.it — Main Stylesheet
   Proposal Experience Club · Puglia
   ============================================================ */

/* -----------------------------------------------------------
   1. CSS RESET & ROOT VARIABLES
   ----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --cream:        #FAF6F0;
  --ivory:        #F5EFE6;
  --rose:         #C9A0A0;
  --gold:         #C4954A;
  --gold-light:   #E8D5B7;
  --dark:         #2C1810;
  --text:         #3D2314;
  --text-light:   #7A5C4E;
  --white:        #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --font-script:  'Great Vibes', cursive;

  /* Spacing */
  --section-pad:  90px 0;
  --container:    1160px;
  --radius:       12px;
  --radius-sm:    6px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(44, 24, 16, 0.08);
  --shadow-md:    0 6px 28px rgba(44, 24, 16, 0.14);
  --shadow-lg:    0 16px 56px rgba(44, 24, 16, 0.20);

  /* Transitions */
  --transition:   0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* -----------------------------------------------------------
   2. TYPOGRAPHY UTILITIES
   ----------------------------------------------------------- */
.script {
  font-family: var(--font-script);
  color: var(--gold);
}

.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* -----------------------------------------------------------
   3. LAYOUT UTILITIES
   ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.section--ivory {
  background: var(--ivory);
}

.section--cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .label {
  display: block;
  margin-bottom: 10px;
}

.section-header .heading-lg {
  margin-bottom: 16px;
}

.section-header .body-lg {
  max-width: 640px;
  margin: 0 auto;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* -----------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #a87a35);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 149, 74, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 149, 74, 0.55);
  background: linear-gradient(135deg, #d4a55e, var(--gold));
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

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

.btn--rose {
  background: linear-gradient(135deg, var(--rose), #a87878);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201, 160, 160, 0.4);
}

.btn--rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 160, 160, 0.55);
}

/* -----------------------------------------------------------
   5. NAVIGATION
   ----------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-script {
  font-family: var(--font-script);
  font-size: 1.95rem;
  color: var(--dark);
  line-height: 1;
  transition: color var(--transition);
}

.nav--scrolled .nav__logo-script {
  color: var(--dark);
}

.nav:not(.nav--scrolled) .nav__logo-script {
  color: var(--white);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav--scrolled .nav__link {
  color: var(--text);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__cta {
  margin-left: 8px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav--scrolled .nav__hamburger span {
  background: var(--dark);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250, 246, 240, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 24px;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  border-top: 1px solid var(--gold-light);
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile .nav__link {
  color: var(--text);
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-light);
}

.nav__mobile .btn {
  align-self: flex-start;
}

/* -----------------------------------------------------------
   6. HERO
   ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 24, 16, 0.62) 0%,
    rgba(44, 24, 16, 0.45) 50%,
    rgba(44, 24, 16, 0.70) 100%
  );
}

.hero.loaded .hero__bg {
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 149, 74, 0.18);
  border: 1px solid rgba(196, 149, 74, 0.5);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__badge::before {
  content: '✦';
  font-size: 0.65rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* -----------------------------------------------------------
   7. STATS BAR
   ----------------------------------------------------------- */
.stats {
  background: var(--dark);
  padding: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats__item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.stats__item:last-child {
  border-right: none;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.55);
}

/* -----------------------------------------------------------
   8. ABOUT
   ----------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image-wrap:hover img {
  transform: scale(1.04);
}

.about__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(44, 24, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 149, 74, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--white);
}

.about__image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

.about__image-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.about__content .label {
  display: block;
  margin-bottom: 12px;
}

.about__content .heading-lg {
  margin-bottom: 20px;
}

.about__content .body-lg {
  margin-bottom: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.about__feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* -----------------------------------------------------------
   9. LOCATIONS
   ----------------------------------------------------------- */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.location-card:nth-child(3n+1):first-child {
  grid-column: span 1;
}

.location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.location-card:hover .location-card__img {
  transform: scale(1.08);
}

.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0) 35%,
    rgba(44, 24, 16, 0.82) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background var(--transition);
}

.location-card:hover .location-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.10) 0%,
    rgba(44, 24, 16, 0.90) 100%
  );
}

.location-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.location-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.location-card__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.location-card__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196, 149, 74, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.location-card:hover .location-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------
   10. IDEA CARDS
   ----------------------------------------------------------- */
.ideas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.idea-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 149, 74, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.idea-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.idea-card:hover::before {
  transform: scaleX(1);
}

.idea-card__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.idea-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.idea-card__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* -----------------------------------------------------------
   11. PROCESS STEPS
   ----------------------------------------------------------- */
.process {
  background: var(--dark);
  padding: var(--section-pad);
}

.process .section-header .label {
  color: var(--gold-light);
}

.process .section-header .heading-lg {
  color: var(--white);
}

.process .section-header .body-lg {
  color: rgba(250, 246, 240, 0.65);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 149, 74, 0.35), transparent);
}

.process-step {
  text-align: center;
  padding: 32px 16px;
  position: relative;
}

.process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(196, 149, 74, 0.45);
  background: rgba(196, 149, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover .process-step__number {
  background: rgba(196, 149, 74, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(196, 149, 74, 0.1);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.55);
  line-height: 1.6;
}

/* -----------------------------------------------------------
   12. FAQ ACCORDION
   ----------------------------------------------------------- */
.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 149, 74, 0.2);
}

.faq-item:first-child {
  border-top: 1px solid rgba(196, 149, 74, 0.2);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  gap: 16px;
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.active .faq-item__icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.32s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* -----------------------------------------------------------
   13. TESTIMONIALS
   ----------------------------------------------------------- */
.testimonials__badge {
  text-align: center;
  margin-bottom: 52px;
}

.testimonials__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 149, 74, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-card__text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}

.testimonial-card__author {
  border-top: 1px solid var(--gold-light);
  padding-top: 18px;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* -----------------------------------------------------------
   14. CTA SECTION
   ----------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.75) 0%,
    rgba(44, 24, 16, 0.60) 100%
  );
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__content .label {
  color: var(--gold-light);
  display: block;
  margin-bottom: 16px;
}

.cta-section__content .heading-lg {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section__content .body-lg {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------
   15. PORTFOLIO GALLERY
   ----------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item:nth-child(3n+1) {
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(4n+2) {
  aspect-ratio: 3/4;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.07);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44, 24, 16, 0.72) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* -----------------------------------------------------------
   16. REVIEW CARDS (detailed)
   ----------------------------------------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 149, 74, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-card__date {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-card__footer {
  border-top: 1px solid var(--gold-light);
  padding-top: 14px;
}

.review-card__name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
}

.review-card__location {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}

/* -----------------------------------------------------------
   17. BLOG CARDS
   ----------------------------------------------------------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(196, 149, 74, 0.08);
}

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

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__img-wrap {
  overflow: hidden;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-card__link {
  gap: 10px;
}

/* -----------------------------------------------------------
   18. WHY CHOOSE US
   ----------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 149, 74, 0.1);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 149, 74, 0.3);
}

.why-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ivory), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-item__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* -----------------------------------------------------------
   19. TOP TIPS (Accordion variant)
   ----------------------------------------------------------- */
.tips__list {
  max-width: 820px;
  margin: 0 auto;
  counter-reset: tip-counter;
}

.tip-item {
  border-bottom: 1px solid rgba(196, 149, 74, 0.2);
  counter-increment: tip-counter;
}

.tip-item:first-child {
  border-top: 1px solid rgba(196, 149, 74, 0.2);
}

.tip-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.tip-item__question::before {
  content: counter(tip-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
  flex-shrink: 0;
}

.tip-item__question:hover {
  color: var(--gold);
}

.tip-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
  margin-left: auto;
}

.tip-item.active .tip-item__icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.tip-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 60px;
}

.tip-item.active .tip-item__answer {
  max-height: 400px;
}

.tip-item__answer-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* -----------------------------------------------------------
   20. FOOTER
   ----------------------------------------------------------- */
.footer {
  background: var(--dark);
  padding: 72px 24px 36px;
  color: rgba(250, 246, 240, 0.65);
}

.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.65);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: rgba(196, 149, 74, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.footer__nav-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.6);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--gold);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.55;
}

.footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.4);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* -----------------------------------------------------------
   21. PAGE HERO (inner pages)
   ----------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 24, 16, 0.65) 0%,
    rgba(44, 24, 16, 0.50) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 60px;
}

.page-hero__content .label {
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}

.page-hero__content .heading-xl {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__content .body-lg {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
   22. STORY SECTION
   ----------------------------------------------------------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story__content .heading-lg {
  margin-bottom: 18px;
}

.story__content .body-lg {
  margin-bottom: 14px;
}

.story__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.story__image:hover img {
  transform: scale(1.04);
}

/* -----------------------------------------------------------
   23. GALLERY (proposta-puglia inner)
   ----------------------------------------------------------- */
.inner-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.inner-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.inner-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inner-gallery-item:hover img {
  transform: scale(1.06);
}

/* -----------------------------------------------------------
   24. MISC UTILITIES
   ----------------------------------------------------------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* -----------------------------------------------------------
   25. RESPONSIVE — 1024px
   ----------------------------------------------------------- */
@media (max-width: 1024px) {
  .locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process__grid::before {
    display: none;
  }

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

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

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

/* -----------------------------------------------------------
   26. RESPONSIVE — 768px
   ----------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px 0;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item:nth-child(1),
  .stats__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrap img {
    height: 340px;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  /* Locations */
  .locations__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Ideas */
  .ideas__grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-step {
    padding: 20px 16px;
    text-align: left;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 18px;
  }

  .process-step__number {
    margin: 0;
  }

  .process-step__text {
    display: none;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog__grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why__grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Story */
  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__image img {
    height: 300px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  /* CTA */
  .cta-section__bg {
    background-attachment: scroll;
  }
}

/* -----------------------------------------------------------
   27. RESPONSIVE — 600px
   ----------------------------------------------------------- */
@media (max-width: 600px) {
  .nav {
    padding: 0 16px;
  }

  .hero__content {
    padding: 100px 16px 72px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .inner-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }

  .cta-section {
    padding: 80px 16px;
  }

  .page-hero {
    min-height: 360px;
  }
}

/* ========= LANGUAGE SWITCHER ========= */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.nav__lang-active {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold);
  transition: color var(--transition);
}

.nav__lang-sep {
  font-size: 10px;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav__lang-link {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav__lang-link:hover { color: var(--gold); }

/* Over hero image: make visible on dark background */
.nav:not(.nav--scrolled) .nav__lang-active {
  color: var(--gold-light);
}
.nav:not(.nav--scrolled) .nav__lang-sep {
  color: rgba(255, 255, 255, 0.5);
}
.nav:not(.nav--scrolled) .nav__lang-link {
  color: rgba(255, 255, 255, 0.8);
}
.nav:not(.nav--scrolled) .nav__lang-link:hover {
  color: var(--gold-light);
}

.nav__lang--mobile {
  padding: 8px 0;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  margin: 4px 0;
}

/* ========= CONTACT PAGE ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-light);
}

.contact-method:last-of-type { border-bottom: none; }

.contact-method__icon {
  width: 44px;
  height: 44px;
  background: #F2E4E4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-method__text strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-method__text span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-method__text a {
  color: var(--gold);
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.contact-method__text a:hover { opacity: 0.7; }

.contact-urgency {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.contact-urgency__dot {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--gold-light);
  background: var(--cream);
  padding: 12px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

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

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========= PACKAGES / PRICING ========= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--gold-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.package-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}

.package-header {
  background: var(--dark);
  color: var(--white);
  padding: 28px 24px 20px;
  text-align: center;
}

.package-card--featured .package-header {
  background: var(--gold);
}

.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}

.package-card--featured .package-price {
  color: var(--white);
}

.package-price sup {
  font-size: 1rem;
  vertical-align: super;
}

.package-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-includes {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.package-includes li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 7px 0;
  border-bottom: 1px solid var(--ivory);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.package-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

.package-includes li:last-child {
  border-bottom: none;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.package-card--featured .package-cta {
  background: var(--dark);
}

.package-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.packages-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .packages-grid { grid-template-columns: 1fr; }
}
