/* ================================================================
   ADRIANA STOLZ — Landing Page Styles
   Palette: Dark gray (#1a1a1a) + White (#fff) + Warm accent (#c8a87c)
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ================================================================ */

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

:root {
  --color-bg: #ffffff;
  --color-bg-dark: #1a1a1a;
  --color-bg-light: #f7f6f4;
  --color-text: #1a1a1a;
  --color-text-light: #f7f6f4;
  --color-text-muted: #6b6b6b;
  --color-accent: #c8a87c;
  --color-accent-hover: #b8956a;
  --color-border: #e0dcd7;
  --color-border-dark: #333333;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --container-max: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --section-pad-sm: clamp(60px, 8vw, 100px);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Typography ──────────────────────────────────────────────── */
.section__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section__label--light {
  color: var(--color-accent);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.section__title--light {
  color: var(--color-text-light);
}

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

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--light {
  background: var(--color-bg-light);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn--primary {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

.section--dark .btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.section--dark .btn--primary:hover {
  background: var(--color-text-light);
  color: var(--color-bg-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

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

.nav__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--color-accent);
}

.nav__cta {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease) !important;
}

.nav__cta:hover {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.3) 0%,
    rgba(26,26,26,0.1) 40%,
    rgba(26,26,26,0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-text-light);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── About ───────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(15%);
}

.about__content p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.about__content p:first-of-type:not(.section__label) {
  color: var(--color-text);
}

/* ── Journey ─────────────────────────────────────────────────── */
.journey__intro {
  max-width: 640px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 60px;
}

.journey__countries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.journey__country {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--color-border-dark);
  transition: border-color 0.3s;
}

.journey__country:hover {
  border-color: var(--color-accent);
}

.journey__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.journey__country h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.journey__country p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

/* ── Philosophy ──────────────────────────────────────────────── */
.philosophy__intro {
  max-width: 640px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

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

.philosophy__pillar {
  padding: 40px 24px;
  border-top: 2px solid var(--color-border);
  transition: border-color 0.3s;
}

.philosophy__pillar:hover {
  border-color: var(--color-accent);
}

.philosophy__icon {
  color: var(--color-accent);
  margin-bottom: 20px;
}

.philosophy__pillar h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.philosophy__pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ── Products ────────────────────────────────────────────────── */
.products__intro {
  max-width: 640px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.products__line {
  margin-bottom: 60px;
}

.products__line:last-child {
  margin-bottom: 0;
}

.products__line-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--color-text);
}

.products__line-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 600px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  overflow: hidden;
}

.product-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-light);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__badge,
.product-card__name,
.product-card__desc,
.product-card__price,
.product-card__cta {
  padding-left: 24px;
  padding-right: 24px;
}

.product-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.product-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 3px 10px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--color-text);
}

.product-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 16px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.product-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: letter-spacing 0.3s;
}

.product-card:hover .product-card__cta {
  letter-spacing: 0.15em;
}

.product-card__cta {
  padding-bottom: 24px;
}

/* ── Education / Content ─────────────────────────────────────── */
.education__intro {
  max-width: 640px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.content-card {
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.content-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.content-card__media {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-light);
  overflow: hidden;
}

.content-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  opacity: 0.3;
}

.content-card__body {
  padding: 24px;
}

.content-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: block;
}

.content-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.25;
}

.content-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ── Events ──────────────────────────────────────────────────── */
.events__intro {
  max-width: 640px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 60px;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.event-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--color-border-dark);
  transition: border-color 0.3s;
}

.event-card:hover {
  border-color: var(--color-accent);
}

.event-card__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 64px;
  border: 1px solid var(--color-accent);
}

.event-card__month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-text-light);
}

.event-card__body h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.event-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.event-card__status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.events__cta {
  text-align: center;
}

/* ── Dall'Italia ─────────────────────────────────────────────── */
.dallitalia__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.dallitalia__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.dallitalia__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.dallitalia__values span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.3s;
}

.dallitalia__values span:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.dallitalia__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: grayscale(15%);
}

/* ── Connect / CTA ───────────────────────────────────────────── */
.connect__intro {
  max-width: 640px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 60px;
}

.connect__inner {
  text-align: center;
}

.connect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.connect__paths {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.connect__path {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-border-dark);
  transition: all 0.3s var(--ease);
}

.connect__path:hover {
  border-color: var(--color-accent);
}

.connect__path svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.connect__path h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-text-light);
}

.connect__path p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

.connect__form-wrap {
  text-align: left;
}

.connect__form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.connect__form-wrap > p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.connect__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connect__form input,
.connect__form select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-light);
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.connect__form input::placeholder,
.connect__form select {
  color: rgba(255,255,255,0.4);
}

.connect__form input:focus,
.connect__form select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.connect__form select option {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.connect__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3) !important;
  margin-top: 8px;
}

.connect__form-status {
  font-size: 14px;
  padding: 12px 16px;
  margin-top: 12px;
  border: 1px solid;
}

.connect__form-status--success {
  color: #a8d5a2;
  border-color: rgba(168,213,162,0.3);
  background: rgba(168,213,162,0.05);
}

.connect__form-status--error {
  color: #e88;
  border-color: rgba(238,136,136,0.3);
  background: rgba(238,136,136,0.05);
}

.connect__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border-dark);
}

.connect__social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.connect__social a:hover {
  color: var(--color-accent);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__partner a {
  color: var(--color-accent);
  transition: opacity 0.3s;
}

.footer__partner a:hover {
  opacity: 0.7;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .journey__countries {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .event-card {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links a {
    font-size: 18px;
    color: var(--color-text-light);
  }

  /* Hero mobile */
  .hero__title {
    font-size: clamp(40px, 12vw, 64px);
  }

  .hero__scroll {
    display: none;
  }

  /* About mobile */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image img {
    height: 350px;
  }

  .about__image {
    order: -1;
  }

  /* Journey mobile */
  .journey__countries {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .journey__country:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Philosophy mobile */
  .philosophy__pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .philosophy__pillar {
    padding: 28px 0;
  }

  /* Products mobile */
  .products__grid {
    grid-template-columns: 1fr;
  }

  /* Education mobile */
  .content-grid {
    grid-template-columns: 1fr;
  }

  /* Dall'Italia mobile */
  .dallitalia__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dallitalia__image img {
    height: 300px;
  }

  /* Connect mobile */
  .connect__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

  .journey__country:last-child {
    max-width: 100%;
  }

  .event-card {
    flex-direction: column;
    gap: 16px;
  }

  .event-card__date {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    padding: 8px 0;
    min-height: auto;
  }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .nav, .hero__scroll, .connect__form-wrap, .connect__social { display: none; }
  .section--dark { background: white; color: black; }
  .section__title--light { color: black; }
  .section__label--light { color: #666; }
}
