/*
Theme Name: Ciocca Tattoo Studio
Theme URI: https://ciocca-tattoo-studio.local
Author: Ciocca Tattoo Studio
Description: Ciocca Tattoo Studio — Elegant dark theme. Cormorant Garamond + Inter. Single-artist layout.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ciocca-tattoo-studio
*/

/* ============================================
   VARIABLES
============================================ */
:root {
  --accent: #C8302A;
  --accent-dim: #A02620;
  --accent-soft: rgba(200, 48, 42, 0.18);

  --dark: #0a0a0a;
  --dark-lighter: #141414;
  --dark-card: #181818;
  --dark-border: rgba(237, 230, 214, 0.10);

  --navbar-bg: #000000;
  --text: #EDE6D6;
  --text-dim: rgba(237, 230, 214, 0.72);
  --text-faint: rgba(237, 230, 214, 0.45);

  --navbar-h: 130px;
}

@media (max-width: 900px) { :root { --navbar-h: 110px; } }
@media (max-width: 480px) { :root { --navbar-h: 95px; } }

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  /* Silk-like layered gradient background */
  background-image:
    radial-gradient(ellipse 80% 60% at 25% 20%, rgba(40, 40, 40, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 75% 75%, rgba(35, 35, 35, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(20, 20, 20, 0.30) 0%, transparent 60%);
  background-attachment: fixed;
}

::selection { background: var(--accent-soft); color: var(--text); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; color: inherit; font-family: inherit; }

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.font-display { font-family: var(--font-title, 'Cormorant Garamond', serif); }
.font-heading { font-family: var(--font-title, 'Cormorant Garamond', serif); }
.font-body    { font-family: var(--font-body, 'Cormorant Garamond', serif); }
.font-sans    { font-family: var(--font-body, 'Cormorant Garamond', serif); }

/* ============================================
   LAYOUT
============================================ */
.container-custom { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-padding-lg { padding: 140px 0; }

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .section-padding-lg { padding: 90px 0; }
}

/* ============================================
   ACCENT ELEMENTS
============================================ */
.accent-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1.5rem auto;
}

.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  background: transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left .4s cubic-bezier(.4, 0, .2, 1);
  z-index: -1;
}

.btn-primary:hover { color: var(--text); border-color: var(--accent); }
.btn-primary:hover::before { left: 0; }

.section-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 230, 214, .15), transparent);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--dark-border);
  transition: transform .3s;
}

.navbar.hidden { transform: translateY(-100%); }

body.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding: 0 24px;
  position: relative;
  height: var(--navbar-h);
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 900px) { .navbar-inner { gap: 1.5rem; } }
@media (max-width: 480px) { .navbar-inner { gap: 0.75rem; padding: 0 12px; } }

.nav-link {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}

.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
}

.navbar-logo img { height: 80px; width: auto; object-fit: contain; }

@media (max-width: 900px) {
  .navbar-logo img { height: 65px; }
  .nav-link { font-size: 11px; letter-spacing: 3px; }
}
@media (max-width: 480px) {
  .navbar-logo img { height: 55px; }
  .nav-link { font-size: 10px; letter-spacing: 2px; }
}

.navbar-burger { display: none !important; }
.mobile-menu { display: none !important; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-h));
}

main { padding-top: var(--navbar-h); }

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg.gradient {
  background:
    radial-gradient(ellipse 90% 70% at 30% 30%, rgba(45, 45, 45, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 70% 70%, rgba(35, 35, 35, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #1a1a1a, var(--dark));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, .35) 0%,
    rgba(10, 10, 10, .15) 30%,
    rgba(10, 10, 10, .55) 60%,
    rgba(10, 10, 10, .96) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
  margin: 0 auto;
}

.hero .accent-line {
  margin-top: 2.5rem;
  animation: fadeInUp .8s ease .7s both;
}

/* ============================================
   HERO LINES — Cormorant elegant
============================================ */
.hero-line {
  margin: 0;
  padding: 0;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .95),
    0 4px 20px rgba(0, 0, 0, .85),
    0 0 40px rgba(0, 0, 0, .6);
  animation: fadeInUp .9s ease both;
}
.hero-line + .hero-line { margin-top: 0.75rem; }

.hero-line--title {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.10em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
}

.hero-line--subtitle {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.10em;
  line-height: 1.5;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.hero-line:nth-child(1) { animation-delay: .2s; }
.hero-line:nth-child(2) { animation-delay: .45s; }
.hero-line:nth-child(3) { animation-delay: .65s; }

/* ============================================
   SECTIONS
============================================ */
.bg-dark-lighter { background: var(--dark-lighter); }

.section-title {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  text-align: center;
  line-height: 1.15;
}

.section-subtitle {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  color: var(--text-faint);
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}

.text-accent { color: var(--accent); }
.text-cream { color: var(--text); }

.intro-image {
  max-width: 800px;
  margin: 4rem auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
}

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

/* ============================================
   SPECIALIZATIONS — single-artist grid
============================================ */
.specializations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .specializations-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .specializations-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    padding: .5rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .specializations-grid::-webkit-scrollbar { display: none; }
  .specializations-grid .spec-card {
    flex: 0 0 75%;
    min-width: 0;
    scroll-snap-align: center;
  }
}

.spec-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--dark-card);
}

.spec-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.spec-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  background: radial-gradient(ellipse at center,
    rgba(0, 0, 0, .80) 0%,
    rgba(0, 0, 0, .50) 55%,
    rgba(0, 0, 0, 0) 85%);
}

.spec-card-title {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: break-word;
  hyphens: auto;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 1),
    0 4px 20px rgba(0, 0, 0, .95);
}

.spec-card-title-sm {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.08em;
}

.spec-card-desc {
  margin-top: 0.85rem;
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 1);
}

a.spec-card {
  display: block;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
a.spec-card:hover { transform: translateY(-4px); }
a.spec-card:hover img { transform: scale(1.04); transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
a.spec-card img { transition: transform .6s cubic-bezier(.4, 0, .2, 1); }

.spec-card-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 8px 22px;
  border: 1px solid rgba(237, 230, 214, .55);
  color: var(--text);
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .45);
  transition: all .3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 1);
}
a.spec-card:hover .spec-card-cta {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  text-shadow: none;
}

/* ============================================
   CTA BLOCK
============================================ */
.cta-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-block h2 {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--text);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  text-wrap: balance;
}

.cta-block p {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-faint);
  margin-bottom: 2.5rem;
}

/* ============================================
   CHI SIAMO
============================================ */
.bio-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.bio-block h2 {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: .25rem;
}

.bio-subtitle {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.bio-block p {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 300;
}

/* CHI SIAMO — split layout */
.chi-siamo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .chi-siamo-bio {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .chi-siamo-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.chi-siamo-photo {
  overflow: hidden;
  border: 1px solid var(--dark-border);
  position: relative;
  min-height: 100%;
  aspect-ratio: 4 / 5;
}
@media (min-width: 901px) {
  .chi-siamo-photo {
    aspect-ratio: auto;
    height: 100%;
  }
}
.chi-siamo-photo img { width: 100%; height: 100%; object-fit: cover; }

.chi-siamo-bio h2 {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: .25rem;
  text-align: center;
  line-height: 1.15;
}

.chi-siamo-bio .bio-subtitle {
  text-align: center;
  margin-top: .35rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  font-style: italic;
}

.chi-siamo-divider {
  width: 60px;
  margin: 1.25rem auto 1.75rem !important;
}

.chi-siamo-bio p {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 0.98rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 300;
}
.chi-siamo-bio p:last-child { margin-bottom: 0; }

/* ============================================
   LO STUDIO (home intro)
============================================ */
.lo-studio-header {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.lo-studio-title {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.lo-studio-divider {
  width: 80px;
  margin: 1.75rem auto 0 !important;
}

.lo-studio-sub {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-faint);
  margin-top: 1.25rem;
}

.lo-studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .lo-studio-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.lo-studio-bottom {
  max-width: 720px;
  margin: 3rem auto 0;
  text-align: center;
}
.lo-studio-bottom p {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.lo-studio-bottom p:last-child { margin-bottom: 0; }

.lo-studio-col p {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 300;
}

.lo-studio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   GALLERY
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp .6s ease both;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

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

.gallery-empty {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
}
.gallery-empty h3 {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  color: var(--text-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1rem;
}
.gallery-empty p {
  color: var(--text-faint);
  font-style: italic;
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-size: 1.1rem;
}

/* YouTube embed */
.yt-wrapper { max-width: 900px; margin: 0 auto; }
.yt-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 2px;
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  color: var(--text-dim);
  font-size: 1.5rem;
  transition: color .3s;
}
.lightbox-close:hover { color: var(--accent); }

.lightbox-counter {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-faint);
}

.lightbox-image {
  position: relative;
  width: 85vw;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, .6);
  border: 1px solid var(--dark-border);
  color: var(--text);
  font-size: 1.25rem;
  transition: background .3s, color .3s;
}

.lightbox-nav:hover { background: var(--accent-soft); color: var(--accent); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================
   FOOTER
============================================ */
.site-footer {
  border-top: 1px solid var(--dark-border);
  position: relative;
  background: var(--dark);
}

.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 230, 214, .35), transparent);
}

.footer-inner {
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-info { flex: 1 1 320px; text-align: left; }
.footer-form { flex: 1 1 400px; scroll-margin-top: 80px; }

.footer-info .footer-nav { justify-content: flex-start; }
.footer-info .footer-socials { justify-content: flex-start; }
.footer-info .accent-line { margin-left: 0; margin-right: auto; }

@media (max-width: 768px) {
  .footer-grid { gap: 3rem; }
  .footer-info { text-align: center; }
  .footer-info .footer-nav,
  .footer-info .footer-socials { justify-content: center; }
  .footer-info .accent-line { margin-left: auto; margin-right: auto; }
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-studio-name {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: 1.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 300;
  line-height: 1.25;
}

.footer-inner p {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

/* Larger nav links in the footer (vs. compact navbar links) */
.footer-info .footer-nav .nav-link {
  font-size: 15px;
  letter-spacing: 4px;
}

.footer-inner a { transition: color .3s; }
.footer-inner a:hover { color: var(--accent); }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.footer-socials a { color: var(--text-faint); transition: color .3s; }
.footer-socials a:hover { color: var(--accent); }
.footer-socials svg { width: 26px; height: 26px; fill: currentColor; }

/* Hours block — slightly muted, multi-line */
.footer-hours {
  color: var(--text-faint) !important;
  font-size: 1.1rem !important;
  line-height: 1.75 !important;
}

/* ============================================
   SOCIAL SIDEBAR
============================================ */
.social-sidebar {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.social-sidebar a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .8);
  border: 1px solid var(--dark-border);
  color: var(--text-faint);
  transition: all .3s;
  backdrop-filter: blur(4px);
}

.social-sidebar a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.social-sidebar svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 640px) { .social-sidebar { display: none; } }

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}

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

/* ============================================
   PRENOTA / FORM
============================================ */
.fillout-box {
  position: relative;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  padding: 3rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fillout-corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: var(--accent);
}
.fillout-corner.tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.fillout-corner.tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.fillout-corner.bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.fillout-corner.br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }

.fillout-embed {
  position: relative;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.fillout-embed iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #fff;
}

@media (max-width: 640px) {
  .fillout-embed { padding: 0.5rem; }
  .fillout-embed iframe { height: 780px; }
}

/* ============================================
   RECENSIONI
============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    padding: .5rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review-card {
    flex: 0 0 85%;
    min-width: 0;
    scroll-snap-align: center;
  }
  .reviews-grid .review-card:hover { transform: none; }
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .4s, transform .4s;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.review-rating {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-style: italic;
}

.review-author {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: auto;
}
.review-author span {
  display: block;
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: .8rem;
  letter-spacing: 1px;
  color: var(--text-faint);
  text-transform: none;
  margin-top: .25rem;
  font-weight: 300;
}

/* ============================================
   GALLERIA — decorative divider around intro
============================================ */
.galleria-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.galleria-intro-title {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--text);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 1.75rem 0 1.25rem;
}
.galleria-intro-text {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}

.galleria-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 0 auto;
  max-width: 300px;
}
.galleria-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.galleria-divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-soft);
}
.galleria-divider-bottom { margin-top: 2.5rem; }

/* ============================================
   FOOTER BOTTOM BAR
============================================ */
.footer-bottom-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
}

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

.footer-bottom-logo {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-decoration: none;
  font-weight: 300;
}

@media (max-width: 600px) {
  .footer-bottom-logo { font-size: 1.2rem; letter-spacing: 0.12em; }
}

.footer-bottom-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom-nav a {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color .3s;
}
.footer-bottom-nav a:hover { color: var(--accent); }

.footer-bottom-social { display: flex; gap: .75rem; }
.footer-bottom-social a {
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--dark-border);
  transition: all .3s;
}
.footer-bottom-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-bottom-copy {
  margin: 1.5rem 0 0;
  text-align: center;
  font-family: var(--font-body, 'Cormorant Garamond', serif);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-faint);
  border-top: 1px solid var(--dark-border);
  padding-top: 1.25rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer-bottom-inner { justify-content: center; text-align: center; gap: 1.25rem; }
  .footer-bottom-logo { align-items: center; }
  .footer-bottom-nav { gap: 1.25rem; }
}

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

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.relative { position: relative; }

.hero-half { min-height: calc(50vh - var(--navbar-h) / 2); }
.hero-full { min-height: calc(100vh - var(--navbar-h)); }

/* ============================================
   SLOGAN BLOCK (chi-siamo final)
============================================ */
.slogan-block { text-align: center; max-width: 720px; margin: 0 auto; }

.slogan-title {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 .5rem;
}
.slogan-title span {
  color: var(--accent);
  display: inline-block;
  margin-top: .35rem;
  font-style: italic;
  font-weight: 400;
}

.slogan-text {
  font-family: var(--font-subtitle, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 1.75rem auto 0;
  max-width: 620px;
}

/* ============================================
   NAVBAR fallback wordmark
============================================ */
.navbar-logo-fallback {
  font-family: var(--font-title, 'Cormorant Garamond', serif);
  color: var(--text);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ============================================
   HERO SLIDESHOW (galleria) — cross-fade
============================================ */
.hero.has-slideshow .hero-bg { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; }

.hero:not(.has-slideshow) .hero-slide { position: static; opacity: 1; transition: none; }

/* ============================================
   Cormorant body — bump weight to 400 so paragraph
   text reads cleanly at full opacity (Cormorant 300
   is too thin for body copy, only good for display).
============================================ */
.bio-block p,
.chi-siamo-bio p,
.lo-studio-bottom p,
.lo-studio-col p,
.footer-inner p,
.galleria-intro-text,
.footer-bottom-copy,
.review-author span {
  font-weight: 400;
}

/* Slightly larger reading sizes for body serif */
.bio-block p,
.chi-siamo-bio p,
.lo-studio-bottom p,
.lo-studio-col p,
.galleria-intro-text {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Italic body subtitle accents — Cormorant italic shines */
.lo-studio-sub,
.cta-block p,
.slogan-text,
.section-subtitle {
  font-style: italic;
}

/* Trustindex Google reviews wrapper — give it breathing room and centre on dark bg */
.trustindex-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.trustindex-wrap .ti-widget,
.trustindex-wrap .ti-reviews-container,
.trustindex-wrap .ti-review-item {
  background: transparent !important;
}
