/*
Theme Name: Pizzeria Calzone
Theme URI: https://pizzeriacalzone.com
Author: Pizzeria Calzone
Author URI: https://pizzeriacalzone.com
Description: Koyu yeşil İtalyan restoranı teması - Pizzeria Calzone için özel tasarım.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pizzeria-calzone
Tags: restaurant, food, italian, responsive, custom-colors, custom-menu
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --verde-scuro:   #1A2E1A;   /* ana koyu yeşil */
  --verde-medio:   #2D5016;   /* orta yeşil */
  --verde-oliva:   #4A7023;   /* zeytin yeşil */
  --verde-chiaro:  #7CA542;   /* açık yeşil vurgu */
  --oro:           #C8922A;   /* altın sarısı aksan */
  --oro-chiaro:    #E8B84B;   /* açık altın */
  --crema:         #F5F0E8;   /* krem arka plan */
  --bianco:        #FDFCF9;   /* neredeyse beyaz */
  --rosso:         #8B1A1A;   /* derin kırmızı */
  --testo:         #1C1C1C;   /* ana metin */
  --testo-muted:   #5A5A5A;   /* soluk metin */
  --bordo:         rgba(200,146,42,0.18); /* altın kenarlık */

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-accent:  'Dancing Script', cursive;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1200px;
  --radius:      4px;
  --radius-lg:   12px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(26,46,26,0.12);
  --shadow-hero: 0 8px 48px rgba(0,0,0,0.4);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bianco);
  color: var(--testo);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--verde-oliva); text-decoration: none; transition: color .2s; }
a:hover { color: var(--oro); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--verde-scuro);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--oro);
  display: block;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--verde-scuro);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--testo-muted);
  max-width: 56ch;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

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

.section--dark {
  background: var(--verde-scuro);
  color: var(--crema);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--crema); }
.section--dark .section-lead { color: rgba(245,240,232,.75); }

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

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); gap: 1.5rem; }

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

.text-center { text-align: center; }
.text-center .section-lead { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  line-height: 1;
  text-decoration: none;
}

.btn-primary {
  background: var(--oro);
  color: var(--verde-scuro);
  border-color: var(--oro);
}
.btn-primary:hover {
  background: var(--oro-chiaro);
  border-color: var(--oro-chiaro);
  color: var(--verde-scuro);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,.35);
}

.btn-outline {
  background: transparent;
  color: var(--crema);
  border-color: var(--crema);
}
.btn-outline:hover {
  background: var(--crema);
  color: var(--verde-scuro);
  transform: translateY(-2px);
}

.btn-verde {
  background: var(--verde-medio);
  color: var(--crema);
  border-color: var(--verde-medio);
}
.btn-verde:hover {
  background: var(--verde-oliva);
  border-color: var(--verde-oliva);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 1.4rem;
}

#site-header.scrolled {
  background: var(--verde-scuro);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  padding-block: .85rem;
}

#site-header:not(.scrolled) { background: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--oro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--verde-scuro);
  flex-shrink: 0;
  transition: transform .3s;
}
.site-logo:hover .logo-mark { transform: rotate(12deg) scale(1.05); }

.logo-text { line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crema);
  display: block;
}
.logo-tagline {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oro-chiaro);
}

/* Nav menu */
.main-nav { display: flex; align-items: center; gap: .25rem; }

.main-nav a {
  padding: .45rem .85rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(245,240,232,.85);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--oro-chiaro);
  background: rgba(200,146,42,.12);
}

.nav-cta {
  margin-left: .75rem;
  background: var(--oro) !important;
  color: var(--verde-scuro) !important;
  border-radius: var(--radius) !important;
  padding: .55rem 1.2rem !important;
}
.nav-cta:hover {
  background: var(--oro-chiaro) !important;
  color: var(--verde-scuro) !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--verde-scuro);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1050;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav a {
    font-size: 1.4rem;
    padding: .75rem 2rem;
    font-family: var(--font-display);
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 1rem;
    padding: .85rem 2.5rem !important;
    font-size: 1rem !important;
  }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,26,.92) 0%,
    rgba(26,46,26,.75) 50%,
    rgba(45,80,22,.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-script {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--oro-chiaro);
  display: block;
  margin-bottom: .5rem;
  line-height: 1;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,.85);
  margin-bottom: 2rem;
  max-width: 50ch;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(245,240,232,.5);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(245,240,232,.35);
  margin-top: .25rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STRIP / BANNER
   ============================================================ */
.strip {
  background: var(--oro);
  color: var(--verde-scuro);
  padding-block: .75rem;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.strip-item { display: flex; align-items: center; gap: .5rem; }
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--verde-scuro); opacity: .4; }

/* ============================================================
   ABOUT / STORY SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--oro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 4px solid #fff;
}

.about-badge-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde-scuro);
  line-height: 1;
}
.about-badge-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--verde-scuro);
  opacity: .8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--crema);
  border: 1px solid var(--bordo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 1rem;
  margin-bottom: .2rem;
  color: var(--verde-scuro);
}
.about-feature-text p {
  font-size: .88rem;
  color: var(--testo-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: 1rem; right: 1rem; width: 90px; height: 90px; }
  .about-badge-year { font-size: 1.5rem; }
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: .55rem 1.4rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  border: 2px solid var(--bordo);
  background: transparent;
  color: var(--testo-muted);
  transition: all .2s;
  font-family: var(--font-body);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--verde-scuro);
  color: var(--crema);
  border-color: var(--verde-scuro);
}

.menu-panel { display: none; }
.menu-panel.active { display: grid; }
.menu-panel { grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr)); gap: 1.25rem; }

.menu-item-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.menu-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,46,26,.15);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-img-placeholder {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  background: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.menu-item-body { flex: 1; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--verde-scuro);
  margin-bottom: .25rem;
}
.menu-item-desc {
  font-size: .82rem;
  color: var(--testo-muted);
  line-height: 1.5;
  margin-bottom: .6rem;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--oro);
}
.menu-item-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--verde-chiaro);
  color: #fff;
  padding: .2rem .55rem;
  border-radius: 100px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: .75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .gallery-item:nth-child(1) { grid-column: 1/3; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
}

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: background .2s, transform .2s;
}
.feature-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--oro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}

.feature-card h3 {
  color: var(--crema);
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.feature-card p {
  color: rgba(245,240,232,.65);
  font-size: .9rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
}

.testimonial-stars {
  color: var(--oro);
  font-size: 1rem;
  margin-bottom: .75rem;
  letter-spacing: .1em;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--testo);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verde-scuro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crema);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--verde-scuro);
}
.testimonial-source {
  font-size: .75rem;
  color: var(--testo-muted);
}

.quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .6;
  color: var(--crema);
  pointer-events: none;
}

/* ============================================================
   INFO CARDS (hours, location, phone)
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.5rem;
}

.info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--oro);
  margin-bottom: .75rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.info-card p {
  color: rgba(245,240,232,.8);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

.info-card a { color: var(--oro-chiaro); }
.info-card a:hover { color: #fff; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-card); }
.contact-form h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--verde-scuro);
  margin-bottom: .45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--testo);
  background: #fafafa;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--verde-oliva); background: #fff; }
.form-group textarea { height: 140px; resize: vertical; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-card);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,46,26,.15);
}

.blog-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  display: flex;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--testo-muted);
  margin-bottom: .6rem;
}

.blog-cat { color: var(--verde-oliva); }

.blog-card h3 {
  font-size: 1.1rem;
  color: var(--verde-scuro);
  margin-bottom: .6rem;
}
.blog-card p {
  font-size: .88rem;
  color: var(--testo-muted);
  flex: 1;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--verde-oliva);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.blog-read-more:hover { color: var(--oro); }
.blog-read-more::after { content: '→'; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--verde-scuro);
  color: rgba(245,240,232,.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,146,42,.2);
}

.footer-brand .logo-mark { width: 52px; height: 52px; font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand .logo-name { color: var(--crema); font-size: 1.3rem; }
.footer-brand p { font-size: .9rem; margin-top: 1rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(245,240,232,.65);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--oro-chiaro); }

.social-links { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--crema);
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--oro);
  color: var(--verde-scuro);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(245,240,232,.4);
}

.footer-bottom a { color: rgba(245,240,232,.55); }
.footer-bottom a:hover { color: var(--oro-chiaro); }

.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--verde-scuro);
  border-top: 2px solid var(--oro);
  padding: 1.25rem;
  z-index: 2000;
  display: none;
}
#cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text { color: rgba(245,240,232,.85); font-size: .88rem; flex: 1 1 300px; }
.cookie-text a { color: var(--oro-chiaro); }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-accept {
  background: var(--oro);
  color: var(--verde-scuro);
  padding: .6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: var(--oro-chiaro); }
.cookie-reject {
  background: transparent;
  border: 1px solid rgba(245,240,232,.3);
  color: rgba(245,240,232,.65);
  padding: .6rem 1.4rem;
  border-radius: var(--radius);
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.cookie-reject:hover { border-color: var(--crema); color: var(--crema); }

/* ============================================================
   UTILITY PAGES (legal, policy)
   ============================================================ */
.page-hero {
  background: var(--verde-scuro);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 { color: var(--crema); }
.page-hero .breadcrumb {
  font-size: .82rem;
  color: rgba(245,240,232,.5);
  margin-top: .75rem;
}
.page-hero .breadcrumb a { color: var(--oro-chiaro); }

.legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 4rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--crema);
}
.legal-content h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-content p { margin-bottom: 1rem; color: var(--testo); }
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.legal-content ul li { margin-bottom: .35rem; font-size: .95rem; color: var(--testo); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .88rem; }
.legal-content th, .legal-content td { padding: .75rem 1rem; border: 1px solid #ddd; text-align: left; }
.legal-content th { background: var(--crema); font-weight: 700; color: var(--verde-scuro); }
.legal-content .last-updated {
  display: inline-block;
  background: var(--crema);
  color: var(--verde-scuro);
  padding: .4rem 1rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ============================================================
   PAGE TRANSITIONS & ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeUp .7s ease both;
}
.animate-up:nth-child(2) { animation-delay: .1s; }
.animate-up:nth-child(3) { animation-delay: .2s; }
.animate-up:nth-child(4) { animation-delay: .3s; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verde-scuro);
  color: var(--oro);
  border: 2px solid var(--oro);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 900;
}
#back-to-top.show { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--oro); color: var(--verde-scuro); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE EXTRAS
   ============================================================ */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .strip-inner { gap: 1.5rem; }
  .contact-form { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--testo-muted); text-align: center; margin-top: .4rem; }

/* Gutenberg blocks */
.wp-block-image { margin-bottom: 1.5rem; }
.wp-block-quote {
  border-left: 4px solid var(--oro);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--testo-muted);
  margin-block: 2rem;
}

.entry-content h2, .entry-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content ul, .entry-content ol { margin-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content li { margin-bottom: .35rem; }
