:root {
  --green-dark: #2d3d22;
  --green-mid: #4a5c3a;
  --green-light: #6b7c5c;
  --gold: #c8a96e;
  --cream: #f5f0e8;
  --cream-dark: #ede7d9;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #777777;
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 40px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.solea-landing-body { font-family: 'Inter', sans-serif; background: var(--white); overflow-x: hidden; }

body.solea-landing-body {
  color: var(--text-dark);
  line-height: 1.5;
}

body.solea-landing-body a {
  color: inherit;
}

body.solea-landing-body img,
body.solea-landing-body svg {
  display: block;
}

body.solea-landing-body main {
  background: var(--white);
}

body.solea-landing-body.lightbox-open {
  overflow: hidden;
}

.solea-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: transparent;
  transition: var(--transition);
}

.solea-nav.scrolled {
  background: rgba(20, 28, 15, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { display: block; }
.nav-logo-main { display: block; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: white; letter-spacing: 4px; line-height: 1; }
.nav-logo-sub { display: block; font-size: 9px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; line-height: 1.2; margin-top: 4px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--green-mid); color: white; padding: 11px 26px; border-radius: var(--radius-lg); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; font-weight: 600; border: 1px solid var(--green-light); transition: var(--transition); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.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); }

.solea-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 8, 0.75) 0%,
    rgba(20, 35, 15, 0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  margin-left: 8%;
  animation: heroFadeUp 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: var(--gold);
  padding: 8px 18px; border-radius: 40px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .gold { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 480px; margin-bottom: 40px;
}

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

.btn-whatsapp {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 16px 32px; border-radius: var(--radius-lg);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

.btn-prenota {
  display: flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 16px 32px; border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-prenota:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
  text-decoration: none;
  z-index: 2;
}

.hero-scroll svg { width: 20px; opacity: 0.5; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section-cose {
  padding: 120px 8%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green-mid); font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::before {
  content: ''; width: 32px; height: 1.5px; background: var(--green-mid);
}

.section-label.centered {
  justify-content: center;
}

.section-label.centered::after {
  content: ''; width: 32px; height: 1.5px; background: currentColor;
}

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

.section-label.light::before,
.section-label.light::after {
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 24px;
}

.section-title.centered {
  text-align: center;
}

.section-title.light {
  color: var(--white);
}

.section-title.small {
  font-size: clamp(30px, 3vw, 42px);
}

.section-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.section-text.light {
  color: rgba(255,255,255,0.72);
}

.section-intro {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.cose-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.cose-highlights span {
  background: rgba(74, 92, 58, 0.1);
  color: var(--green-mid);
  border: 1px solid rgba(74, 92, 58, 0.18);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
}

.photo-grid-cose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.photo-grid-cose img:first-child {
  grid-row: span 2; border-radius: var(--radius-md); object-fit: cover; width: 100%; height: 100%;
}

.photo-grid-cose img { border-radius: var(--radius-md); object-fit: cover; width: 100%; height: 100%; transition: var(--transition); box-shadow: var(--shadow-sm); }
.photo-grid-cose img:hover { transform: scale(1.02); }

.section-storia {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.storia-content {
  background: var(--green-dark);
  padding: 100px 8% 100px 8%;
  display: flex; flex-direction: column; justify-content: center;
}

.storia-image {
  position: relative; overflow: hidden;
}

.storia-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.storia-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--green-dark) 0%, transparent 30%);
}

.dodo-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50px; padding: 12px 20px; margin-top: 48px;
  width: fit-content;
}

.dodo-badge svg { width: 28px; height: 28px; color: var(--gold); }
.dodo-badge span { display: grid; gap: 2px; }
.dodo-badge-text { font-size: 16px; font-family: 'Playfair Display', serif; color: var(--gold); letter-spacing: 2px; font-weight: 700; }
.dodo-badge-sub { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }

.section-servizi {
  padding: 120px 8%;
  background: white;
  text-align: center;
}

.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  text-align: left;
}

.servizio-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.servizio-card:hover {
  background: var(--green-dark);
  border-color: var(--green-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.servizio-card:hover .servizio-title,
.servizio-card:hover .servizio-desc { color: white; }
.servizio-card:hover .servizio-icon-wrap { background: rgba(200,169,110,0.15); }
.servizio-card:hover .servizio-icon-wrap svg { color: var(--gold); }

.servizio-icon-wrap {
  width: 56px; height: 56px; background: white;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.servizio-icon-wrap svg { width: 28px; height: 28px; color: var(--green-mid); transition: var(--transition); }
.servizio-title { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 10px; color: var(--text-dark); transition: var(--transition); }
.servizio-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; transition: var(--transition); }

.section-eventi {
  padding: 120px 8%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.eventi-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.eventi-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0;
}

.eventi-tag {
  background: var(--cream); color: var(--green-mid);
  border: 1px solid var(--cream-dark);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dark); color: white;
  padding: 16px 32px; border-radius: var(--radius-lg);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
}

.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.eventi-photo-card {
  position: relative;
  min-height: 480px;
  padding: 0;
  overflow: hidden;
}

.eventi-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.eventi-photo-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(45, 61, 34, 0.86);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.eventi-photo-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.eventi-photo-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
}

.section-gallery {
  padding: 0;
  background: var(--green-dark);
}

.gallery-header {
  padding: 80px 8% 60px;
  text-align: center;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}

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

.section-footer-cta {
  background: var(--green-dark);
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.footer-contacts {
  display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap;
}

.contact-item {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-label { display: block; font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }
.contact-value { display: block; font-size: 15px; color: white; font-weight: 500; }
.footer-info { text-align: right; min-width: 320px; }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 2; margin-bottom: 10px; }
.footer-info strong { color: var(--white); letter-spacing: 1.5px; }
.footer-info a { color: var(--gold); text-decoration: none; }

.solea-footer {
  background: var(--green-dark);
  padding: 20px 8%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.solea-footer p { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 3px; text-transform: uppercase; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .solea-nav { padding-left: 36px; padding-right: 36px; }
  .solea-nav.scrolled { padding-left: 36px; padding-right: 36px; }
  .nav-links { gap: 20px; }
  .section-cose { gap: 50px; }
  .servizi-grid { gap: 18px; }
}

@media (max-width: 1024px) {
  .solea-nav { padding: 16px 32px; }
  .solea-nav.scrolled { padding: 14px 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(20,28,15,0.98); padding: 32px;
    gap: 24px;
  }
  .section-cose, .section-storia, .section-eventi { grid-template-columns: 1fr; }
  .storia-image { height: 400px; }
  .storia-image::after { background: linear-gradient(to bottom, var(--green-dark) 0%, transparent 30%); }
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { height: 280px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 300px; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .section-footer-cta { grid-template-columns: 1fr; }
  .footer-info { text-align: left; min-width: 0; }
}

@media (max-width: 760px) {
  .solea-nav { padding: 14px 20px; }
  .solea-nav.scrolled { padding: 12px 20px; }
  .nav-logo-main { font-size: 19px; letter-spacing: 3px; }
  .nav-logo-sub { font-size: 8px; letter-spacing: 2px; }
  .solea-hero { min-height: 680px; }
  .hero-content { margin-left: 6%; margin-right: 6%; }
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; }
  .btn-whatsapp, .btn-prenota, .btn-primary { width: 100%; justify-content: center; }
  .section-cose, .section-servizi, .section-eventi, .section-footer-cta { padding: 78px 6%; }
  .storia-content { padding: 78px 6%; }
  .photo-grid-cose { grid-template-columns: 1fr; grid-template-rows: 260px 220px 220px; }
  .photo-grid-cose img:first-child { grid-row: span 1; }
  .servizi-grid { grid-template-columns: 1fr; }
  .gallery-header { padding: 70px 6% 44px; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .footer-contacts { flex-direction: column; gap: 20px; }
  .eventi-card { padding: 34px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .section-title { font-size: 31px; }
  .section-title.small { font-size: 30px; }
  .servizio-card { padding: 30px 24px; }
  .eventi-photo-card, .eventi-photo-card img { min-height: 420px; }
  .eventi-photo-copy { left: 18px; right: 18px; bottom: 18px; padding: 20px; }
}

/* Visual upgrade: clearer CTA, compact story, 3D services, balanced event block, slider gallery. */
.btn-prenota {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.btn-prenota::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(200, 169, 110, 0), rgba(200, 169, 110, 0.38), rgba(255, 255, 255, 0));
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-prenota:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-prenota:hover::before {
  transform: translateX(110%);
}

.js-lightbox {
  cursor: zoom-in;
}

.section-storia {
  min-height: clamp(460px, 48vw, 620px);
  background: var(--green-dark);
}

.storia-content {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 6vw, 82px) 8%;
}

.storia-content .section-title {
  max-width: 640px;
}

.storia-content .section-text {
  max-width: 620px;
}

.storia-image {
  min-height: clamp(420px, 48vw, 620px);
}

.storia-image img {
  object-position: center;
}

.section-servizi {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbf7 0%, #ffffff 38%, #eef3ea 100%);
}

.section-servizi::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 92, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 92, 58, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 36%, black, transparent 72%);
}

.section-servizi > * {
  position: relative;
  z-index: 1;
}

.servizi-grid {
  perspective: 1400px;
}

.servizio-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 238, 226, 0.7)),
    radial-gradient(circle at 20% 0%, rgba(200, 169, 110, 0.22), transparent 42%);
  border: 1px solid rgba(74, 92, 58, 0.12);
  box-shadow:
    0 18px 45px rgba(45, 61, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
}

.servizio-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.5), transparent 30%, rgba(107, 124, 92, 0.42) 72%, transparent);
  opacity: 0;
  transition: var(--transition);
}

.servizio-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(74, 92, 58, 0.16);
  transform: rotateX(58deg) rotateZ(45deg);
  transition: var(--transition);
}

.servizio-card > * {
  position: relative;
  z-index: 1;
}

.servizio-card:hover {
  background:
    linear-gradient(145deg, rgba(30, 43, 22, 0.98), rgba(67, 84, 50, 0.94)),
    radial-gradient(circle at 30% 0%, rgba(200, 169, 110, 0.3), transparent 45%);
  transform: translateY(-10px) rotateX(5deg) rotateY(-4deg);
}

.servizio-card:hover::before {
  opacity: 1;
}

.servizio-card:hover::after {
  border-color: rgba(200, 169, 110, 0.42);
  transform: translate3d(-18px, -18px, 30px) rotateX(58deg) rotateZ(45deg);
}

.servizio-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 231, 0.82));
  border: 1px solid rgba(74, 92, 58, 0.12);
  border-radius: 18px;
  box-shadow:
    0 18px 34px rgba(45, 61, 34, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateZ(32px);
}

.servizio-icon-wrap::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px solid rgba(200, 169, 110, 0.32);
}

.servizio-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.section-eventi {
  align-items: stretch;
  gap: clamp(28px, 4vw, 52px);
  background:
    linear-gradient(135deg, #f7f0e4 0%, #efe7d8 44%, #f9f6ef 100%);
}

.eventi-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(74, 92, 58, 0.1);
  box-shadow: 0 24px 70px rgba(45, 61, 34, 0.12);
}

.eventi-card .section-title {
  max-width: 650px;
}

.eventi-card .btn-primary {
  width: fit-content;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  box-shadow: 0 16px 32px rgba(45, 61, 34, 0.25);
}

.eventi-card .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), #e5c987);
  color: var(--green-dark);
}

.eventi-photo-card {
  min-height: 500px;
}

.eventi-photo-card img {
  min-height: 500px;
  object-position: center;
}

.eventi-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(19, 28, 13, 0.72) 100%);
}

.eventi-photo-copy {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(28, 40, 20, 0.72);
}

.gallery-mosaic {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: 260px 260px;
  grid-template-areas:
    "a a b b c c"
    "a a d e f f";
  gap: 6px;
}

.gallery-item {
  min-height: 0;
  background: #1d2b16;
}

.gallery-item:nth-child(1) { grid-area: a; }
.gallery-item:nth-child(2) { grid-area: b; }
.gallery-item:nth-child(3) { grid-area: c; }
.gallery-item:nth-child(4) { grid-area: d; }
.gallery-item:nth-child(5) { grid-area: e; }
.gallery-item:nth-child(6) { grid-area: f; }

.section-footer-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1c2815 0%, #2d3d22 46%, #445431 100%);
  border-top: 1px solid rgba(200, 169, 110, 0.18);
}

.section-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.section-footer-cta::after {
  content: "SOLEA";
  position: absolute;
  right: 5%;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.035);
  font-family: 'Playfair Display', serif;
  font-size: clamp(90px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.section-footer-cta > * {
  position: relative;
  z-index: 1;
}

.contact-icon {
  border: 1px solid rgba(200, 169, 110, 0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 28px rgba(0,0,0,0.16);
}

.footer-info {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.solea-footer {
  background: #1c2815;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.footer-legal a,
.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: #e2c77d;
}

.solea-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 13, 7, 0.88);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.solea-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-stage {
  position: relative;
  width: min(1120px, 86vw);
  height: min(760px, 82vh);
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.lightbox-stage figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 56px;
  height: 72px;
  border-radius: 999px;
  font-size: 52px;
  transform: translateY(-50%);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 1024px) {
  .section-storia {
    min-height: auto;
  }

  .storia-image {
    height: 420px;
    min-height: 420px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 260px);
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }

  .eventi-card,
  .eventi-photo-card,
  .eventi-photo-card img {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .btn-prenota {
    color: var(--green-dark);
  }

  .servizio-card:hover {
    transform: translateY(-6px);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 245px);
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
  }

  .lightbox-stage {
    width: 100%;
    height: 76vh;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 24px;
    width: 52px;
    height: 52px;
    font-size: 40px;
    transform: none;
  }

  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

/* Requested fixes: keep footer/services intact, improve header, hero, story, events and lightbox. */
.solea-nav {
  background: linear-gradient(180deg, rgba(12, 18, 9, 0.82), rgba(12, 18, 9, 0.34));
  backdrop-filter: blur(10px);
}

.nav-links a,
.nav-logo-main {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.nav-logo-sub {
  color: #e1c985;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.solea-nav.scrolled {
  background: rgba(12, 18, 9, 0.96);
}

.solea-hero {
  min-height: 760px;
}

.hero-bg {
  background-attachment: fixed;
  transform: none !important;
  transition: none;
}

.hero-bg.loaded {
  transform: none !important;
}

.section-storia {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  background: var(--green-dark);
}

.storia-content {
  position: relative;
  z-index: 2;
  width: min(720px, 58vw);
  min-height: 560px;
  padding: 72px 7%;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(45, 61, 34, 0.98) 0%, rgba(45, 61, 34, 0.9) 72%, rgba(45, 61, 34, 0) 100%);
}

.storia-image {
  position: absolute;
  inset: 0;
  min-height: 560px;
}

.storia-image img {
  object-position: 70% center;
}

.storia-image::after {
  background:
    linear-gradient(90deg, rgba(45, 61, 34, 0.96) 0%, rgba(45, 61, 34, 0.7) 34%, rgba(45, 61, 34, 0.08) 68%),
    linear-gradient(0deg, rgba(0,0,0,0.16), rgba(0,0,0,0.08));
}

.section-eventi {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
  padding: 92px 8%;
}

.section-eventi .eventi-card:first-child {
  min-height: auto;
  justify-content: center;
  padding: clamp(34px, 4.6vw, 58px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(246,240,229,0.9));
}

.section-eventi .eventi-card:first-child::before {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(74,92,58,0.13), rgba(200,169,110,0.18)),
    radial-gradient(circle at 32% 30%, #fff 0 18%, transparent 19%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 18px 38px rgba(45,61,34,0.12);
}

.eventi-tags {
  margin: 24px 0 28px;
}

.eventi-photo-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: minmax(230px, 1fr) minmax(180px, 0.78fr);
  gap: 14px;
  min-height: 520px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.eventi-photo-card::before {
  display: none;
}

.eventi-photo-card > img,
.eventi-mini-strip img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(45,61,34,0.16);
}

.eventi-main-img {
  grid-row: 1 / 3;
}

.eventi-mini-strip {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.eventi-photo-copy {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(45,61,34,0.96), rgba(74,92,58,0.9));
  box-shadow: 0 24px 60px rgba(45,61,34,0.18);
}

.lightbox-stage {
  width: min(1180px, calc(100vw - 160px));
  height: auto;
  max-height: calc(100vh - 92px);
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  margin: 0 auto;
  object-fit: contain;
}

.solea-lightbox {
  padding: 38px 80px;
}

@media (max-width: 1024px) {
  .hero-bg {
    background-attachment: scroll;
  }

  .storia-content {
    width: 100%;
    min-height: auto;
    padding: 70px 7%;
    background: rgba(45,61,34,0.9);
  }

  .storia-image {
    position: relative;
    min-height: 380px;
  }

  .section-eventi {
    grid-template-columns: 1fr;
  }

  .eventi-photo-card {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px auto;
  }

  .eventi-main-img {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .eventi-mini-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px;
  }

  .eventi-photo-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .solea-nav {
    background: rgba(12, 18, 9, 0.9);
  }

  .solea-hero {
    min-height: 720px;
  }

  .section-storia {
    min-height: auto;
  }

  .eventi-photo-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto auto;
    gap: 12px;
  }

  .eventi-mini-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px;
  }

  .eventi-photo-copy {
    padding: 22px;
  }

  .solea-lightbox {
    padding: 62px 16px 86px;
  }

  .lightbox-stage {
    width: 100%;
    max-height: calc(100vh - 150px);
  }

  .lightbox-stage img {
    max-height: calc(100vh - 210px);
    border-radius: 16px;
  }
}

/* Fix pass: menu readability, no lightbox descriptions, rebuilt event layout. */
.solea-nav,
.solea-nav.scrolled {
  background: rgba(9, 14, 7, 0.94) !important;
  backdrop-filter: blur(18px) saturate(130%) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34) !important;
}

.solea-nav .nav-links a,
.solea-nav .nav-logo-main,
.solea-nav .nav-logo-sub,
.solea-nav .nav-cta {
  opacity: 1 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85) !important;
}

.solea-nav .nav-logo-sub,
.solea-nav .nav-links a:hover {
  color: #e4c983 !important;
}

.lightbox-caption {
  display: none !important;
}

.lightbox-stage figcaption {
  justify-content: center;
  min-height: 20px;
}

.section-eventi {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: clamp(62px, 7vw, 96px) 7%;
  background:
    radial-gradient(circle at 12% 10%, rgba(200,169,110,0.18), transparent 28%),
    linear-gradient(135deg, #f4eddf 0%, #eee4d4 44%, #f8f3ea 100%);
}

.section-eventi .eventi-card:first-child {
  min-height: 0;
  justify-content: flex-start;
  align-self: stretch;
  padding: clamp(34px, 4vw, 56px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(246,240,229,0.82));
  box-shadow:
    0 24px 70px rgba(45,61,34,0.12),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

.section-eventi .eventi-card:first-child::before {
  display: none;
}

.section-eventi .eventi-card:first-child .section-label {
  margin-bottom: 18px;
}

.section-eventi .eventi-card:first-child .section-title {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.6vw, 54px);
}

.section-eventi .eventi-card:first-child .section-text {
  max-width: 680px;
  margin-bottom: 22px;
}

.eventi-tags {
  margin: 12px 0 28px;
}

.eventi-photo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: clamp(420px, 40vw, 560px);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.eventi-photo-card::before {
  display: none !important;
}

.eventi-photo-card > img.eventi-main-img {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.eventi-mini-strip {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 0;
}

.eventi-mini-strip img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 24px;
}

.eventi-photo-card > img,
.eventi-mini-strip img,
.eventi-photo-copy {
  box-shadow: 0 24px 60px rgba(45,61,34,0.16);
}

.eventi-photo-copy {
  position: static !important;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(34,48,25,0.98), rgba(75,92,57,0.94));
  color: #fff;
}

.eventi-photo-copy h3 {
  font-size: clamp(28px, 2.5vw, 40px);
}

.eventi-photo-copy p {
  max-width: 320px;
}

@media (max-width: 1180px) {
  .section-eventi {
    grid-template-columns: 1fr;
  }

  .eventi-photo-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 210px;
  }

  .eventi-photo-card > img.eventi-main-img {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .eventi-mini-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px;
  }

  .eventi-photo-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .section-eventi {
    padding: 64px 6%;
  }

  .eventi-photo-card {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto auto;
  }

  .eventi-mini-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px;
  }
}

/* Affitta section crop fix: landscape composition, no stretched vertical columns. */
.section-eventi {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.eventi-photo-card {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(310px, 1.45fr) minmax(150px, 0.7fr) auto;
  min-height: 0;
}

.eventi-photo-card > img.eventi-main-img {
  grid-row: auto;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center 58%;
}

.eventi-mini-strip {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.eventi-mini-strip img {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.eventi-photo-copy {
  min-height: 150px;
}

@media (max-width: 1180px) {
  .section-eventi {
    grid-template-columns: 1fr;
  }

  .eventi-photo-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}

@media (max-width: 760px) {
  .eventi-mini-strip {
    grid-template-columns: 1fr;
  }
}

/* Final Affitta redesign: no empty lower space, balanced editorial/media band. */
.section-eventi {
  grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  padding: clamp(54px, 6vw, 82px) 7%;
  align-items: stretch;
}

.section-eventi .eventi-card:first-child {
  min-height: 0;
  padding: clamp(34px, 4vw, 52px);
  justify-content: center;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(245,238,226,0.78)),
    radial-gradient(circle at 12% 12%, rgba(200,169,110,0.24), transparent 32%);
}

.eventi-tags {
  margin: 30px 0 28px;
}

.eventi-photo-card {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr;
  gap: 12px;
  height: min(620px, 48vw);
  min-height: 500px;
}

.eventi-photo-card > img.eventi-main-img {
  grid-row: 1 / 3;
  height: 100%;
  aspect-ratio: auto;
  object-position: center;
}

.eventi-mini-strip {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.eventi-mini-strip img {
  height: 100%;
  aspect-ratio: auto;
}

.eventi-photo-copy {
  position: absolute !important;
  left: 28px;
  right: 28px;
  bottom: 28px;
  min-height: 0;
  width: min(520px, calc(100% - 56px));
  padding: 26px 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(30,43,22,0.84);
  backdrop-filter: blur(16px);
}

@media (max-width: 1180px) {
  .section-eventi {
    grid-template-columns: 1fr;
  }

  .eventi-photo-card {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 190px;
  }

  .eventi-photo-card > img.eventi-main-img {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .eventi-mini-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 190px;
  }
}

@media (max-width: 760px) {
  .eventi-photo-card {
    grid-template-columns: 1fr;
    grid-template-rows: 270px auto;
  }

  .eventi-mini-strip {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 150px);
  }

  .eventi-photo-copy {
    position: static !important;
    width: 100%;
  }
}

/* Instagram section */
.section-instagram {
  position: relative;
  padding: clamp(58px, 7vw, 96px) 7%;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 181, 116, 0.2), transparent 36%),
    linear-gradient(180deg, #fbf7ee 0%, #f2ebdd 100%);
  overflow: hidden;
}

.instagram-header {
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
}

.instagram-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: #171714;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.instagram-mark {
  flex: 0 0 auto;
  width: clamp(28px, 3vw, 42px);
  height: clamp(28px, 3vw, 42px);
  color: #d0a85c;
  filter: drop-shadow(0 10px 18px rgba(42, 60, 32, 0.2));
}

.instagram-subtitle {
  margin: 14px auto 0;
  color: rgba(29, 34, 25, 0.72);
  font-size: 16px;
}

.instagram-subtitle a {
  color: #304a26;
  font-weight: 800;
  text-decoration: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #182414;
  box-shadow: 0 28px 70px rgba(31, 45, 22, 0.22);
}

.instagram-post {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #162111;
  isolation: isolate;
}

.instagram-post::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.24) 100%),
    radial-gradient(circle at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.instagram-post img,
.instagram-post video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.instagram-post:hover img,
.instagram-post:hover video {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.05);
}

.instagram-post:hover::after {
  opacity: 1;
}

.instagram-play {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fff8ea;
  background: rgba(21, 30, 17, 0.52);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.instagram-play svg {
  width: 62%;
  height: 62%;
  transform: translateX(2px);
}

.instagram-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  min-height: 54px;
  margin: 30px auto 0;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff8ea !important;
  background: linear-gradient(135deg, #2d4524, #50633b);
  box-shadow: 0 18px 40px rgba(42, 60, 32, 0.25);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.instagram-cta svg {
  width: 20px;
  height: 20px;
  color: #fff8ea;
}

.instagram-cta:hover {
  color: #fff8ea !important;
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(42, 60, 32, 0.32);
}

.section-video-gallery {
  position: relative;
  padding: clamp(58px, 7vw, 96px) 7%;
  background:
    linear-gradient(180deg, #1c2815 0%, #28391f 48%, #f2ebdd 48%, #f2ebdd 100%);
  overflow: hidden;
}

.section-video-gallery::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(226, 199, 125, 0.18), transparent 32%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.video-gallery-header {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-video-gallery .section-label,
.section-video-gallery .section-title,
.section-video-gallery .section-intro {
  color: #fff8ea;
}

.section-video-gallery .section-intro {
  max-width: 650px;
  margin: 12px auto 0;
  opacity: 0.78;
}

.video-gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.video-gallery-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #10170d;
  box-shadow: 0 28px 60px rgba(18, 25, 12, 0.24);
}

.video-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0) 26%, rgba(0,0,0,0.16));
}

.video-gallery-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .section-instagram {
    padding: 48px 18px 58px;
  }

  .instagram-header {
    margin-bottom: 22px;
  }

  .instagram-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .instagram-grid {
    gap: 3px;
    border-radius: 18px;
  }

  .instagram-play {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .instagram-cta {
    width: 100%;
    max-width: 320px;
  }

  .section-video-gallery {
    padding: 52px 18px 64px;
    background:
      linear-gradient(180deg, #1c2815 0%, #28391f 38%, #f2ebdd 38%, #f2ebdd 100%);
  }

  .video-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .video-gallery-card {
    border-radius: 18px;
  }
}
