/* ==========================================================================
   INCIGNAMO — Complete Stylesheet
   Passim-inspired layout for Italian luxury cosmetics brand
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. GOOGLE FONTS IMPORT
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* --------------------------------------------------------------------------
   1. CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --gold:        #CDA434;
  --gold-dark:   #b8911f;
  --black:       #000000;
  --white:       #ffffff;
  --off-white:   #f9f7f2;
  --grey:        #626262;
  --grey-light:  #a0a0a0;
  --border:      #e8e3da;
  --dark-bg:     #0d0b06;
  --font-sans:   'Syne', sans-serif;
  --font-serif:  'EB Garamond', serif;
  --header-h:    121px;
  --max-w:       1280px;
  --pad-x:       54px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}

/* --------------------------------------------------------------------------
   3. UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.label-caps {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 32px auto;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* Dark outlined — for light backgrounds */
.btn-outline-dark {
  border: 2px solid rgba(0, 0, 0, 0.7);
  color: var(--black);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* White outlined — kept for potential inner-page use */
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-filled {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-filled:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s ease, border-bottom-color 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent state on light/white hero — logo & nav are BLACK */
#site-header.header-on-light {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

/* Scrolled / white state */
#site-header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}

/* Flush: nessun bordo inferiore (es. chi-siamo dove segue il page-title bianco) */
#site-header.header-flush {
  border-bottom-color: transparent;
  box-shadow: none;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — black on light hero, black when scrolled */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: 72px;
  width: auto;
}


/* Main Nav — dark on light hero */
.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s ease;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a:hover {
  color: var(--gold);
}
#site-header.scrolled .main-nav a {
  color: var(--grey);
}
#site-header.scrolled .main-nav a:hover {
  color: var(--black);
}
.main-nav a.active {
  color: var(--black);
}
#site-header.scrolled .main-nav a.active {
  color: var(--black);
}

/* Hamburger — dark bars on light hero */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
#site-header.scrolled .nav-toggle span {
  background: var(--black);
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--white) !important;
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--white) !important;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}
.nav-overlay a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   6. HERO SLIDER — sfondo chiaro/bianco, testo nero
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: url('../img/hero-1.jpg') center center / cover no-repeat;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  padding-top: var(--header-h);
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
  gap: 40px;
}

.hero-left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-left .label-caps {
  color: var(--gold);
  margin-bottom: 18px;
  animation: heroReveal 0.8s ease 0.2s both;
}

.hero-h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 90px);
  line-height: 1.0;
  color: var(--black);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: heroReveal 0.9s ease 0.4s both;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--grey);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 40px;
  animation: heroReveal 0.8s ease 0.6s both;
}

.hero-left .btn {
  animation: heroReveal 0.8s ease 0.8s both;
}

/* Hero right — product card WooCommerce style */
.hero-right {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qodef-hero-product {
  width: 100%;
  max-width: 320px;
  animation: heroReveal 1s ease 0.5s both;
}

/* Hero product image: uses same .qodef-woo-product-image with info-on-image overlays */
.qodef-hero-product .qodef-woo-product-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Title + price ALWAYS visible at bottom of hero product image */
.hero-prod-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.hero-prod-price {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--grey);
  white-space: nowrap;
}

/* Dots navigation */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
.hero-dot:hover {
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   7. INTRO TEXT SECTION
   -------------------------------------------------------------------------- */
.section-intro {
  background: var(--white);
  padding: 100px var(--pad-x);
  text-align: center;
}

.intro-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 820px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   8. PRODUCTS SECTION — info-on-image pattern (no text below image)
   -------------------------------------------------------------------------- */
.section-products {
  background: var(--white);
  padding: 0 0 100px;
}

.section-header {
  text-align: center;
  padding: 80px var(--pad-x) 50px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
}

/* Product grid */
.qodef-woo-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.qodef-woo-product-inner {
  background: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.qodef-woo-product-inner.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Product image area — aspect-ratio 4:5, all info inside */
.qodef-woo-product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

/* Real img inside product card */
.qodef-woo-product-image .prod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CSS bottle shapes in product cards */
.product-bottle {
  width: 54px;
  height: 140px;
  border-radius: 27px 27px 18px 18px;
  position: relative;
  box-shadow: inset -6px 0 16px rgba(0,0,0,0.1);
}
.product-bottle::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 3px 3px 0 0;
}
.product-bottle::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 7px;
  right: 7px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
}

.product-jar {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  position: relative;
  box-shadow: inset -8px 0 18px rgba(0,0,0,0.1);
}
.product-jar::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 16px;
  background: rgba(0,0,0,0.15);
  border-radius: 5px 5px 0 0;
}

/* Info-on-image: title + price ALWAYS visible at bottom */
.qodef-woo-product-image-inner-initial {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.prod-title-inner {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0;
}

.prod-price-inner {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--grey);
  white-space: nowrap;
}

/* Hover overlay — appears over the whole image including the info bar */
.qodef-woo-product-image-inner {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.61, 1, 0.88, 1);
  z-index: 3;
}

.qodef-woo-product-inner:hover .qodef-woo-product-image-inner {
  opacity: 1;
}

.qodef-woo-product-image-inner .btn-filled {
  max-width: 220px;
  width: 100%;
  font-size: 10px;
  padding: 12px 20px;
  transform: translateY(12px);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.35, 0.18, 0.07, 1.04) 0.2s;
}
.qodef-woo-product-inner:hover .qodef-woo-product-image-inner .btn-filled {
  transform: translateY(0);
}

.qodef-woo-wishlist-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(8px);
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.35, 0.18, 0.07, 1.04) 0.28s;
}
.qodef-woo-product-inner:hover .qodef-woo-wishlist-btn {
  transform: translateY(0);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   9. SECTION IMAGE + TEXT — 2 colonne 50/50 (sezioni 5 e 7)
   -------------------------------------------------------------------------- */
.section-image-text {
  background: var(--white);
}

.section-image-text-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: 100%;
}


.sit-image {
  min-height: 600px;
  overflow: hidden;
  position: relative;
}
.sit-image .sit-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sit-content {
  padding: 80px var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sit-content h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.sit-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 24px;
}

.sit-body {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   10. SECTION ICONS — 3 colonne centrate
   -------------------------------------------------------------------------- */
.section-icons {
  background: var(--white);
  padding: 100px var(--pad-x);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-wrapper {
  height: 144px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 28px;
}

.icon-img {
  display: block;
  width: 71px;
  height: 144px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(42%) saturate(620%) hue-rotate(5deg) brightness(88%) contrast(95%);
}

.icon-item h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.icon-item p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 280px;
}

/* --------------------------------------------------------------------------
   11. ACCORDION
   -------------------------------------------------------------------------- */
.accordion {
  width: 100%;
  margin-top: 32px;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s ease;
}

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

.accordion-icon {
  flex-shrink: 0;
  color: var(--black);
  transition: transform 0.4s ease, color 0.3s ease;
}

.accordion-title:hover .accordion-icon {
  color: var(--gold);
}

/* When open: hide the vertical line of the + to show — */
.accordion-item.open .accordion-icon .acc-v-line {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item .accordion-icon .acc-v-line {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.open .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--grey);
  line-height: 1.75;
  padding-bottom: 18px;
}

/* --------------------------------------------------------------------------
   12. BLOG SECTION
   -------------------------------------------------------------------------- */
.section-blog {
  background: var(--white);
  padding: 100px var(--pad-x);
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.blog-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.blog-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.blog-card-image .blog-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px 0;
}

.blog-card-date {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: block;
}
.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-author {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--grey-light);
}

/* --------------------------------------------------------------------------
   13. GIFT SECTION — 3 colonne (img + testo + img)
   -------------------------------------------------------------------------- */
.section-gift {
  background: var(--off-white);
  padding: 0;
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 400px;
}

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

.gift-image .gift-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gift-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--pad-x);
  background: var(--off-white);
}

.gift-content h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.gift-link {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.gift-link:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   14. INSTAGRAM FEED — 4 colonne quadrate
   -------------------------------------------------------------------------- */
.section-instagram {
  padding: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.instagram-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.instagram-item .insta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-item:hover {
  transform: scale(1.02);
  opacity: 0.88;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
#site-footer {
  background: var(--black);
  padding: 60px var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

.footer-col-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   16. PAGE TITLE — Passim qodef-page-title pattern (inner pages)
   Sfondo bianco, 105px, h2 centrato con bordo inferiore
   -------------------------------------------------------------------------- */
.qodef-page-title {
  background: var(--white);
  height: 105px;
  width: 100%;
  margin-top: var(--header-h);
}

.qodef-page-title .qodef-m-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.qodef-page-title .qodef-m-content {
  height: 100%;
  display: flex;
  align-items: center;
}

.qodef-page-title.qodef-alignment--center .qodef-m-content {
  justify-content: center;
}

.qodef-page-title .qodef-m-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 40px;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

/* --------------------------------------------------------------------------
   17. ABOUT PAGE STYLES (chi-siamo.html)
   Fedele a: qodef-section-title + qodef-single-image (Passim about-us)
   -------------------------------------------------------------------------- */

/* Section title widget — h4 + subtitle + text */
.qodef-section-title {
  display: flex;
  flex-direction: column;
}

.qodef-section-title .qodef-m-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.qodef-section-title .qodef-m-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 16px;
}

.qodef-section-title .qodef-m-text {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 480px;
}

/* Counters */
.section-counters {
  background: var(--black);
  padding: 80px var(--pad-x);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.counter-digit {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-suffix {
  font-size: 32px;
}

.counter-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Values section */
.section-values {
  background: #0d0b06;
  padding: 80px var(--pad-x);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: var(--max-w);
  margin: 40px auto 0;
}

.value-item {
  text-align: center;
}

.qodef-m-icon-wrapper {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
}

.qodef-m-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.value-item h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}

.value-item p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Full-width image section (chi-siamo) */
.section-full-image {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.section-full-image .full-img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* About sections — layout fedele a Passim about-us
   Riferimento: elementor/css/post-4035.css del tema originale */

.about-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.about-section .section-image-text-inner {
  min-height: unset;
  padding: 0 100px;
  align-items: center;
}

/* Sezioni --reverse (testo SINISTRA, immagine DESTRA): colonne 45% / 55% */
.about-section.section-image-text--reverse .section-image-text-inner {
  grid-template-columns: 45fr 55fr;
}
/* Sezione normale (immagine SINISTRA, testo DESTRA): colonne 55% / 45% */
.about-section:not(.section-image-text--reverse) .section-image-text-inner {
  grid-template-columns: 55fr 45fr;
}

/* Colonna testo: rimuovi padding ereditato da sit-content */
.about-section .sit-content {
  padding: 0;
}
/* Sezione 2 — immagine a sinistra: 7% breathing room a sinistra del testo */
.about-section:not(.section-image-text--reverse) .sit-content {
  padding-left: 7%;
}

/* Contenuto testuale: max-width 425px fedele al widget Passim */
.about-section .qodef-section-title {
  max-width: 425px;
}

/* Colonna immagine: dimensionamento naturale (img fluisce a 100% colonna) */
.about-section .sit-image {
  min-height: 0;
  position: static;
  overflow: visible;
}
.about-section .sit-image .sit-img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: initial;
  display: block;
}

/* Testimonials section */
.section-testimonials {
  background: var(--white);
  padding: 100px var(--pad-x);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  border: 1px solid var(--border);
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

.testimonial-item + .testimonial-item {
  border-left: 1px solid var(--border);
}

.testimonial-source {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 28px;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   Contact section — Passim contact-us pattern
   Riferimento: post-4311.css
   -------------------------------------------------------------------------- */

/* Wrapper esterno */
#contatti {
  padding: 0;
  background: var(--white);
  scroll-margin-top: var(--header-h);
}

/* Block 1 — Titolo (da elementor-element-e1e58c0: padding 41px 0 103px) */
.contact-section-title {
  padding: 41px var(--pad-x) 103px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-section-title .qodef-m-title {
  font-size: 40px;
  letter-spacing: -0.02em;
}

/* Block 2 — Info (34%) + Form (66%) — da elementor-element-1c13ae8 */
.contact-info-form-section {
  display: grid;
  grid-template-columns: 34fr 66fr;
  align-items: center;
  padding: 0 var(--pad-x) 90px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Colonna info — h4 + campi testo */
.contact-info-col .qodef-m-title {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.contact-info-line {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: #313131;
  margin-bottom: 3px;
}
.contact-info-line a {
  color: #313131;
  transition: color 0.3s ease;
}
.contact-info-line a:hover {
  color: var(--gold);
}

/* Colonna form — qodef-cf7-custom */
.qodef-cf7-custom {
  width: 100%;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.qodef-cf7-custom input[type="text"],
.qodef-cf7-custom input[type="email"],
.qodef-cf7-custom textarea {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
  display: block;
}
.contact-form-row .qodef-grid-item + .qodef-grid-item input {
  border-left: none;
}
.qodef-cf7-custom textarea {
  border-top: none;
  resize: none;
  min-height: 130px;
}
.qodef-cf7-custom input:focus,
.qodef-cf7-custom textarea:focus {
  border-color: var(--black);
}
.qodef-cf7-custom input::placeholder,
.qodef-cf7-custom textarea::placeholder {
  color: #b0a89e;
}
.contact-form-submit {
  margin-top: 20px;
}
.form-feedback {
  margin-top: 16px;
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  min-height: 1.5em;
}
.form-feedback--ok    { color: #2d7a2d; }
.form-feedback--error { color: #c0392b; }
.field-error {
  border-color: #c0392b !important;
}
.qodef-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* Bottone outlined — .qodef-button.qodef-layout--outlined */
.qodef-button.qodef-layout--outlined {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid var(--black);
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.qodef-button.qodef-layout--outlined:hover {
  background: var(--black);
  color: var(--white);
}

/* Block 3 — Location cards (3 col, 6.5% padding) — da elementor-element-5a11484 */
.contact-locations-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 94px;
  padding: 0 6.5%;
}
.contact-location-card {
  text-align: center;
}
.contact-location-card:first-child  { padding-right: 20px; }
.contact-location-card:nth-child(2) { padding: 0 10px; }
.contact-location-card:last-child   { padding-left: 20px; }

.contact-location-card .location-img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-location-card h5.qodef-m-title {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-top: 9px;
  margin-bottom: 8px;
}
.contact-location-card .location-info {
  font-family: var(--font-serif);
  font-size: 15px;
  color: #313131;
  line-height: 1.7;
  margin-bottom: 0;
}
.contact-location-card .location-info a {
  color: #313131;
  transition: color 0.3s ease;
}
.contact-location-card .location-info a:hover {
  color: var(--gold);
}

/* Block 4 — Google Maps embed */
.contact-map-section {
  width: 100%;
  line-height: 0;
}
.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 385px;
  border: 0;
}

/* --------------------------------------------------------------------------
   18. PAGINE LEGALI (termini, cookie policy)
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px var(--pad-x) 100px;
}
.legal-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 48px 0 12px;
  color: var(--black);
}
.legal-content h3:first-child {
  margin-top: 0;
}
.legal-content p {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 16px;
}
.legal-content ul {
  padding-left: 20px;
  margin: 0 0 16px;
}
.legal-content ul li {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--black);
}
.legal-last-updated {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
  display: block;
}

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  color: var(--white);
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 1 1 300px;
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-text a:hover {
  color: var(--white);
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 26px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: transparent;
  color: var(--gold);
}
.cookie-btn-necessary {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 26px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.cookie-btn-necessary:hover {
  color: var(--white);
  border-color: var(--white);
}
@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px var(--pad-x);
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn-accept,
  .cookie-btn-necessary {
    flex: 1;
    text-align: center;
  }
}

/* Footer bottom bar — link legali */
.footer-legal-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal-bar a {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  letter-spacing: .03em;
}
.footer-legal-bar a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   19. ANIMATIONS / KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE — 1100px
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root {
    --pad-x: 36px;
  }

  .hero-h1 {
    font-size: clamp(46px, 6vw, 72px);
  }

  .blog-grid {
    gap: 28px;
  }

  .icons-grid {
    gap: 28px;
  }
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE — 900px
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  :root {
    --pad-x: 28px;
  }

  .qodef-woo-product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card:last-child {
    grid-column: span 2;
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .footer-inner > *:last-child {
    grid-column: span 2;
  }

  /* Contact — tablet: stack info + form */
  .contact-info-form-section {
    grid-template-columns: 1fr;
  }
  .contact-form-col {
    padding-top: 42px;
  }
  .contact-locations-section {
    grid-template-columns: 1fr;
  }
  .contact-location-card:first-child,
  .contact-location-card:nth-child(2),
  .contact-location-card:last-child {
    padding: 54px 0 0;
  }
  .contact-location-card:first-child { padding-top: 0; }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .value-item:last-child {
    grid-column: span 2;
    max-width: 320px;
    margin: 0 auto;
  }

  .section-image-text-inner {
    grid-template-columns: 1fr;
  }

  .sit-image {
    min-height: 400px;
  }

  .section-image-text--reverse .sit-image--right {
    order: -1;
  }

  /* About sections — tablet: stack a una colonna */
  .about-section .section-image-text-inner {
    grid-template-columns: 1fr !important;
    padding: 0 54px;
    align-items: unset;
  }
  .about-section .sit-content {
    padding: 48px 0;
  }
  .about-section:not(.section-image-text--reverse) .sit-content {
    padding-left: 0;
  }
  .about-section .sit-image {
    min-height: 340px;
    position: relative;
    overflow: hidden;
  }
  .about-section .sit-image .sit-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

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

  .testimonial-item + .testimonial-item {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .testimonial-item {
    padding: 48px var(--pad-x);
  }

  .gift-grid {
    grid-template-columns: 1fr;
  }
  .gift-image {
    min-height: 260px;
    position: relative;
  }
  .gift-image-bg {
    position: absolute;
    inset: 0;
    min-height: 260px;
  }

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

  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-item:last-child {
    grid-column: span 2;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE — 768px (mobile)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --header-h: 72px;
  }

  /* Header */
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 80px;
  }
  .hero-left,
  .hero-right {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .hero-right {
    display: flex;
    justify-content: center;
  }
  .hero-h1 {
    font-size: clamp(38px, 10vw, 58px);
  }
  .qodef-hero-product {
    max-width: 280px;
  }
  .hero-dots {
    bottom: 24px;
  }

  /* Products */
  .qodef-woo-product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header {
    padding: 60px var(--pad-x) 40px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card:last-child {
    grid-column: span 1;
    max-width: 100%;
    margin: 0;
  }
  .section-blog {
    padding: 60px var(--pad-x);
  }

  /* Icons */
  .icons-grid {
    grid-template-columns: 1fr;
  }
  .icon-item:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  .section-icons {
    padding: 60px var(--pad-x);
  }

  /* Image text */
  .sit-content {
    padding: 50px var(--pad-x);
  }

  /* About sections — mobile */
  .about-section {
    margin-top: 48px;
  }
  .about-section:last-of-type {
    margin-bottom: 48px;
  }
  .about-section .section-image-text-inner {
    padding: 0;
  }
  .about-section .sit-content {
    padding: 40px var(--pad-x);
  }
  .about-section:not(.section-image-text--reverse) .sit-content {
    padding-left: var(--pad-x);
  }
  .about-section .sit-image {
    min-height: 280px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-inner > *:last-child {
    grid-column: span 1;
  }
  #site-footer {
    padding: 50px var(--pad-x);
  }

  /* Counters */
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-item:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Contact — mobile */
  .contact-section-title {
    padding-top: 84px;
    padding-bottom: 97px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-row .qodef-grid-item + .qodef-grid-item input {
    border-left: 1px solid var(--border);
    border-top: none;
  }
  .contact-locations-section {
    padding: 0 34px;
    margin-bottom: 0;
    padding-bottom: 94px;
  }

  .qodef-page-title {
    height: 80px;
  }

  .qodef-page-title .qodef-m-title {
    font-size: 28px;
  }

  .section-testimonials {
    padding: 60px var(--pad-x);
  }

  .testimonial-item {
    padding: 40px var(--pad-x);
  }
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE — 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .qodef-woo-product-list {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .intro-text {
    font-size: clamp(18px, 5vw, 26px);
  }

  .section-intro {
    padding: 60px var(--pad-x);
  }

  .counter-digit {
    font-size: 38px;
  }

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

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