/* =========================================
   vincenzopicardi.com — Main Stylesheet
   Design: Strategic Visionary
   ========================================= */

/* --- Fonts (Bunny.net — GDPR compliant) --- */
@import url('https://fonts.bunny.net/css?family=dm-sans:300,400,500,600,700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:      #0D1B2A;
  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --cream:     #F5F2EC;
  --anthracite:#3D3D3D;
  --white:     #FFFFFF;
  --gray-light:#F0EDE7;
  --gray-mid:  #8A8580;

  --font-display: 'DM Sans', -apple-system, sans-serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius:   6px;
  --shadow:   0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:0 8px 48px rgba(13,27,42,0.16);

  --transition: 0.28s ease;
  --max-width: 1260px;
  --section-pad: 100px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--anthracite);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

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

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--anthracite);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section--navy { background: var(--navy); color: var(--cream); }
.section--cream { background: var(--cream); color: var(--anthracite); }
.section--white { background: var(--white); color: var(--anthracite); }
.section--gold { background: var(--gold); color: var(--navy); }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 2px 16px rgba(13,27,42,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--anthracite);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__menu a:hover,
.nav__menu a.active {
  color: var(--navy);
}

.nav__menu a:hover::after,
.nav__menu a.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--anthracite);
  transition: color var(--transition);
}

.nav__lang a { color: var(--anthracite); transition: color var(--transition); }
.nav__lang a:hover,
.nav__lang a.active,
.nav__lang span.active { color: var(--navy); font-weight: 700; }
.nav__lang span[aria-hidden="true"] { color: var(--gray-mid); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--navy);
  color: var(--cream) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.nav__cta::after { display: none !important; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  aria-label: "Menu";
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}

.btn--outline-light:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn--ghost-gold {
  background: transparent;
  color: #8B6914;
  border-color: #8B6914;
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn--ghost-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.section--navy .btn--ghost-gold,
.section--cream .btn--ghost-gold { color: #8B6914; border-color: #8B6914; }

.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B6914;
  margin-bottom: 12px;
}

.section--navy .section-eyebrow,
.section--gold .section-eyebrow,
.page-hero .section-eyebrow { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  color: inherit;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--anthracite);
  max-width: 600px;
}

.section--navy .section-subtitle { color: rgba(245,242,236,0.82); }

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero > .container {
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--cream);
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
}

.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(245,242,236,0.75);
  margin-bottom: 40px;
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,242,236,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- Problem Section --- */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem__visual {
  position: relative;
}

.problem__visual-inner {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.problem__visual-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.problem__stat {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.problem__stat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.problem__stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.problem__stat-label {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.65);
  line-height: 1.5;
}

.problem__closing {
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  font-family: var(--font-display);
}

/* --- About Preview --- */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
}

/* --- Services Cards --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--anthracite);
  flex: 1;
  margin-bottom: 24px;
}

/* --- Method Section --- */
.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.method-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.method-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: rgba(201,168,76,0.3);
}

.method-step:last-child::after { display: none; }

.method-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 20px;
}

.method-step__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.method-step__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.method-step__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245,242,236,0.6);
}

.method__quote {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 36px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.method__quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
}

.method__quote span {
  font-size: 0.82rem;
  color: rgba(245,242,236,0.5);
}

/* --- Blog Cards --- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B6914;
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--anthracite);
  flex: 1;
  margin-bottom: 20px;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-banner__title {
  color: var(--navy);
  margin-bottom: 20px;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(13,27,42,0.75);
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  margin-top: 36px;
}

/* --- Contact Section --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info-title {
  color: var(--gold);
  margin-bottom: 20px;
}

.contact__info-text {
  color: rgba(245,242,236,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.contact__note {
  margin-top: 28px;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(245,242,236,0.65);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 24px;
}

.contact__form-title {
  color: var(--cream);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

/* --- Form --- */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(245,242,236,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: rgba(245,242,236,0.09);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(245,242,236,0.3);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form__privacy input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form__privacy label {
  font-size: 0.78rem;
  color: rgba(245,242,236,0.5);
  line-height: 1.5;
}

.form__privacy a {
  color: var(--gold);
  text-decoration: underline;
}

/* --- Footer --- */
.footer {
  background: #060E16;
  color: rgba(245,242,236,0.5);
  padding: 48px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer__brand-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245,242,236,0.65);
  margin-bottom: 20px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.5);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(245,242,236,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.85rem;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.65);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--cream); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.8);
  max-width: 640px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero__title {
  color: var(--cream);
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(245,242,236,0.65);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Normative Page --- */
.normative__block {
  margin-bottom: 64px;
}

.normative__block-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.normative__item {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.normative__item-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.normative__item-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.normative__item-link {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.normative__item-link:hover { gap: 8px; }

/* --- Servizi Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.service-detail:last-child { border-bottom: none; }

.service-detail--reverse .service-detail__visual { order: -1; }

.service-detail__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-detail__list {
  margin: 20px 0;
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--anthracite);
  padding: 6px 0;
  line-height: 1.5;
}

.service-detail__list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-detail__norms {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.service-detail__norms strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-detail__visual-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.service-detail__visual-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.service-detail__visual-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.service-detail__visual-icon svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.service-detail__visual-title {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.service-detail__visual-highlight {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.65);
  line-height: 1.7;
}

/* --- Chi Sono Page --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.timeline__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline__dot {
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}

.timeline__period {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--anthracite);
}

/* --- Utilities --- */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-cream { color: var(--cream); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }

.divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.divider--left { margin-left: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .problem__grid,
  .about-preview__grid,
  .contact__grid,
  .service-detail { grid-template-columns: 1fr; gap: 48px; }

  .service-detail--reverse .service-detail__visual { order: 0; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .method__grid { grid-template-columns: 1fr 1fr; }
  .method-step::after { display: none; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav__menu,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav__menu.open .nav__cta { display: inline-flex; }

  .services__grid,
  .method__grid,
  .blog__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-in-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* --- Focus styles (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Print --- */
@media print {
  .nav, .cookie-banner, .footer { display: none; }
  body { font-size: 12pt; }
}
