/* ============================================================
   BELLA STUDIO — Landing Page Styles
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --black:      #0A0A0A;
  --gray:       #F5F3F0;
  --gray-mid:   #E5E1DC;
  --gray-muted: #C8C2BA;
  --gray-text:  #706A62;
  --gold:       #C9A96E;
  --gold-dim:   #B8936A;
  --gold-pale:  #D4BC8A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --nav-h: 68px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:  0.18s;
  --dur-base:  0.38s;
  --dur-slow:  0.72s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

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

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* ── Typography atoms ───────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--dur-base) var(--ease-out),
    color           var(--dur-base) var(--ease-out),
    border-color    var(--dur-base) var(--ease-out);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-size: 0.68rem;
  padding: 0.7rem 1.8rem;
}
.btn--light:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ── Scroll-reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity   var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entry animations ──────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp var(--dur-slow) var(--ease-out) forwards;
}
.animate-in:nth-child(1) { animation-delay: 0.15s; }
.animate-in:nth-child(2) { animation-delay: 0.32s; }
.animate-in:nth-child(3) { animation-delay: 0.50s; }
.animate-in:nth-child(4) { animation-delay: 0.68s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur-base),
    box-shadow   var(--dur-base);
}
.navbar.scrolled {
  border-bottom-color: var(--gray-mid);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.navbar__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;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--black);
  transition: color var(--dur-fast);
}
.navbar__logo:hover { color: var(--gold); }

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo-img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition:
    color        var(--dur-fast),
    border-color var(--dur-fast);
}
.navbar__link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.navbar__social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.navbar__social a {
  display: flex;
  align-items: center;
  color: var(--black);
  transition: color var(--dur-fast);
}
.navbar__social a:hover { color: var(--gold); }
.navbar__social a.wa:hover { color: #25D366; }
.navbar__social svg { width: 19px; height: 19px; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 5rem) var(--pad-x) 7rem;
  background: var(--gray);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(201,169,110,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.8rem;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 3rem;
}
.hero__subtitle em {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05em;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s var(--ease-in-out) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT / CHI SIAMO
   ════════════════════════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.about__content {
  text-align: left;
}

.about__content .heading-lg {
  margin-bottom: 1.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about__text {
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.95;
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.about__content .btn { margin-top: 1rem; }

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about__stat {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
  min-width: 80px;
}

.about__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* Placeholder image */
.about__image {
  aspect-ratio: 3 / 4;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about__image::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--gray-mid);
  pointer-events: none;
}

.about__image-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about__monogram {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  line-height: 1;
  margin-bottom: 1.2rem;
  padding-left: 0.3em;
}

.about__divider {
  width: 40px;
  height: 1px;
  background: var(--gray-muted);
  margin: 0 auto 1.2rem;
}

.about__image-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-muted);
  letter-spacing: 0.08em;
}

/* ════════════════════════════════════════════════════════════
   CATEGORIES
   ════════════════════════════════════════════════════════════ */
.categories {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--gray);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 560px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-4px); }

.card__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.card:hover .card__img { transform: scale(1.06); }

.card__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.card:hover .card__overlay { opacity: 1; }

.card__body { padding: 1.4rem 1.5rem 1.6rem; }

.card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.card__text {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   HOW TO ORDER
   ════════════════════════════════════════════════════════════ */
.howto {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (min-width: 640px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
}

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  color: var(--gold);
}
.step__icon svg { width: 20px; height: 20px; }

.step__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
}

.step__text {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.85;
  max-width: 220px;
  margin: 0 auto;
}

.step__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Separator line between steps */
.step__sep {
  display: none;
}
@media (min-width: 640px) {
  .step__sep {
    display: block;
    flex-shrink: 0;
    width: 3rem;
    height: 1px;
    background: var(--gold);
    opacity: 0.25;
    margin-top: 5.5rem;
  }
}

/* Mobile separator */
@media (max-width: 639px) {
  .step:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 1rem auto 0;
    opacity: 0.4;
  }
}

/* ════════════════════════════════════════════════════════════
   SOCIAL CTA
   ════════════════════════════════════════════════════════════ */
.social-cta {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--black);
}

.social-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.social-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.social-cta__text {
  font-size: 0.93rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.95;
  margin-bottom: 3rem;
}

.social-cta__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) {
  .social-cta__links {
    flex-direction: row;
    justify-content: center;
  }
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition:
    border-color var(--dur-base),
    color        var(--dur-base),
    background   var(--dur-base);
}
.social-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}
.social-pill svg { width: 17px; height: 17px; flex-shrink: 0; }

.social-pill--wa:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.06);
}

/* ════════════════════════════════════════════════════════════
   DOVE SIAMO
   ════════════════════════════════════════════════════════════ */
.location {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--gray);
}

.location__map {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.location__cta {
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 560px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.footer__claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.35rem;
}

.footer__piva {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}
.footer__nav a {
  display: flex;
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}
.footer__nav a:hover { color: var(--gold); }
.footer__nav svg { width: 19px; height: 19px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}
