:root {
  --brand: #317d9d;
  --brand-strong: #286883;
  --brand-soft: #eaf4f8;
  --text: #10212b;
  --text-muted: #4b6570;
  --white: #ffffff;
  --surface: #f7fafc;
  --line: rgba(16, 33, 43, 0.1);
  --shadow-soft: 0 20px 55px rgba(22, 46, 59, 0.08);
  --shadow-strong: 0 26px 65px rgba(18, 39, 50, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1260px;
  --space-1: 0.75rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.75rem;
  --space-6: 3.75rem;
  --space-7: 5rem;
  --space-8: 6.5rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(49, 125, 157, 0.035), transparent 16%),
    var(--white);
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2.25rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  transition: background-color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 33, 43, 0.08);
  box-shadow: 0 10px 26px rgba(20, 40, 52, 0.06);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
}

.site-nav a,
.header-cta,
.button,
.eyebrow,
.card-number,
.asset-index,
.festival-label,
.hero-facts dt {
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  font-size: 0.74rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(49, 125, 157, 0.12);
  background: rgba(49, 125, 157, 0.05);
}

.hero {
  position: relative;
  padding: 8.8rem 0 4.4rem;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(49, 125, 157, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(49, 125, 157, 0.08), transparent 56%);
  pointer-events: none;
}

.hero-grid,
.asset-grid,
.chef-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy,
.asset-content,
.chef-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0 0 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.hero-lead,
.section-copy,
.manifesto-card p,
.info-card p,
.asset-item p,
.development-text p,
.vision-lead,
.vision-support,
.chef-copy p,
.festival-panel li,
.objective-panel p,
.contact-panel p {
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-lead {
  max-width: 46rem;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 14px 34px rgba(49, 125, 157, 0.22);
}

.button-secondary {
  color: var(--text);
  background: var(--white);
  border-color: rgba(16, 33, 43, 0.12);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.hero-facts div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(16, 33, 43, 0.12);
}

.hero-facts dt {
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
}

.hero-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  justify-items: center;
  align-items: center;
}

.hero-frame,
.manifesto-card,
.info-card,
.asset-main-image,
.asset-secondary-image,
.development-card,
.development-text,
.gallery-card,
.chef-portrait,
.festival-image,
.festival-panel,
.objective-panel,
.contact-panel {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-frame {
  width: min(100%, 470px);
  padding: 0.8rem;
  background:
    linear-gradient(180deg, rgba(49, 125, 157, 0.22), rgba(255, 255, 255, 1));
  box-shadow: var(--shadow-strong);
}

.hero-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 22px;
  background: #dceaf0;
}

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

.section-heading {
  margin-bottom: var(--space-4);
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading-centered {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered h2,
.section-heading-centered .section-copy {
  margin-inline: auto;
}

.intro-shell {
  max-width: 1020px;
}

.manifesto-card {
  padding: 2rem;
  border: 1px solid rgba(49, 125, 157, 0.1);
  max-width: 920px;
  margin: 0 auto;
}

.manifesto-greeting,
.signature {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
}

.section-partnership {
  background: var(--surface);
}

.partnership-grid,
.festival-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.festival-panel {
  padding: 1.45rem;
  border: 1px solid rgba(16, 33, 43, 0.08);
}

.card-number,
.asset-index,
.festival-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}

.info-card h3,
.asset-item h3,
.development-text h3 {
  margin-bottom: 0.7rem;
}

.section-vision {
  position: relative;
  color: var(--white);
  overflow: clip;
}

.section-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 36, 0.7), rgba(10, 27, 36, 0.82)),
    url("assets/terrazza-tavolo-01.webp") center / cover;
}

.vision-shell {
  position: relative;
  z-index: 1;
}

.vision-block {
  max-width: 980px;
  padding: 4.25rem 0 4rem;
}

.vision-block .eyebrow,
.vision-block .vision-lead,
.vision-block .vision-support {
  color: rgba(255, 255, 255, 0.86);
}

.vision-block h2 {
  max-width: 14ch;
}

.vision-lead {
  max-width: 50rem;
  margin: 1.1rem 0 0;
  font-size: 1.16rem;
}

.vision-support {
  max-width: 46rem;
  margin-top: 1rem;
}

.asset-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.asset-main-image img,
.asset-secondary-image img,
.development-card img,
.gallery-card img,
.chef-portrait img,
.festival-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-main-image {
  grid-column: 1 / -1;
  min-height: 340px;
}

.asset-secondary-image {
  min-height: 240px;
}

.asset-list {
  display: grid;
  gap: 0.65rem;
}

.asset-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.asset-item:last-child {
  border-bottom: 1px solid var(--line);
}

.section-development {
  background: linear-gradient(180deg, rgba(49, 125, 157, 0.04), rgba(49, 125, 157, 0));
}

.development-heading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: var(--space-4);
}

.section-heading-development {
  max-width: none;
  margin-bottom: 0;
  text-align: center;
}

.section-heading-development h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.development-card-heading {
  min-height: 220px;
}

.development-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.development-card,
.development-text {
  min-height: 260px;
}

.development-card-large {
  grid-row: span 2;
  min-height: 500px;
}

.development-text {
  padding: 1.6rem;
  border: 1px solid rgba(16, 33, 43, 0.08);
}

.section-gastronomy {
  background: var(--surface);
}

.gastronomy-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 1rem;
}

.gallery-card {
  min-height: 280px;
  aspect-ratio: 4 / 3.35;
}

.gallery-card-tall {
  min-height: 420px;
  aspect-ratio: 4 / 4.4;
}

.chef-shell {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.chef-portrait {
  min-height: 420px;
  aspect-ratio: 4 / 4.7;
}

.chef-copy {
  max-width: 720px;
}

.section-festival {
  background: var(--white);
}

.section-heading-festival {
  max-width: 1060px;
}

.section-heading-festival h2 {
  max-width: 18ch;
}

.festival-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.festival-image {
  min-height: 300px;
  aspect-ratio: 16 / 10;
}

.festival-panels {
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  justify-content: center;
  align-items: stretch;
}

.festival-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.festival-panel li + li {
  margin-top: 0.7rem;
}

.section-objective {
  padding-top: var(--space-6);
}

.objective-shell {
  max-width: 1040px;
}

.objective-panel {
  padding: 2rem;
  border: 1px solid rgba(49, 125, 157, 0.12);
  background: linear-gradient(135deg, rgba(49, 125, 157, 0.08), rgba(49, 125, 157, 0.03));
}

.objective-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.objective-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(49, 125, 157, 0.14);
  background: var(--white);
  color: var(--text);
}

.section-contact {
  position: relative;
  color: var(--white);
  overflow: clip;
}

.contact-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 36, 0.72), rgba(10, 27, 36, 0.84)),
    url("assets/sala-ristorante-01.webp") center / cover;
}

.contact-shell {
  position: relative;
  z-index: 1;
}

.contact-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-panel h2 {
  max-width: none;
}

.signature {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.site-footer {
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(16, 33, 43, 0.08);
  background: var(--white);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
}

.footer-shell img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .asset-grid,
  .chef-shell,
  .development-grid,
  .gastronomy-grid,
  .festival-grid,
  .festival-panels {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-frame {
    width: 100%;
  }

  .chef-copy {
    max-width: none;
  }

  .development-heading-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading-development h2 {
    margin-inline: auto;
  }

  .asset-visuals {
    grid-template-columns: 1fr;
  }

  .asset-main-image {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .hero {
    padding-top: 8.2rem;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .section {
    padding: 4.8rem 0;
  }

  .section-heading-development h2,
  .section-heading-festival h2 {
    max-width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .objective-list {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .objective-list span {
    width: 100%;
  }

  .asset-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

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