:root {
  --ink: #121210;
  --ink-soft: #1d1c19;
  --cream: #f3ecdd;
  --cream-2: #e8ddc7;
  --gold: #c8932c;
  --gold-light: #e0b552;
  --red: #d81f18;
  --green: #148447;
  --white: #fffdf8;
  --muted: #777267;
  --line: rgba(18,18,16,.14);
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0,0,0,.18);
  --content: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--gold); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 12px 18px; background: white; color: black; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20;
  padding: 18px clamp(20px, 4vw, 64px);
}
.nav-shell {
  width: min(100%, var(--content)); margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand img { width: clamp(122px, 11vw, 175px); height: auto; }
nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); color: white; }
nav a { font-size: .83rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .86; transition: .2s ease; }
nav a:hover, nav a:focus-visible { opacity: 1; color: var(--gold-light); }
nav .nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; opacity: 1; }

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; padding: clamp(150px, 18vh, 210px) clamp(20px, 4vw, 64px) 70px;
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr); gap: clamp(50px, 7vw, 120px); align-items: center;
  background:
    linear-gradient(115deg, rgba(255,255,255,.02), transparent 35%),
    radial-gradient(circle at 52% 10%, rgba(200,147,44,.13), transparent 28%),
    var(--ink);
  color: white;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--green) 0 33.333%, #f6f4ec 33.333% 66.666%, var(--red) 66.666%);
}
.hero-content { width: min(100%, 760px); justify-self: end; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  display: flex; align-items: center; gap: 12px; margin: 0 0 24px;
  font-size: .76rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light);
}
.eyebrow span { width: 44px; height: 2px; background: var(--red); }
.hero h1, h2, h3 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3.45rem, 6.4vw, 7.5rem); line-height: .9; max-width: 900px; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.04rem, 1.4vw, 1.25rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .83rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { color: white; border-color: rgba(255,255,255,.35); }
.button-ghost:hover { border-color: white; }
.hero-status { display: flex; gap: clamp(22px, 3.4vw, 50px); margin-top: clamp(48px, 8vh, 86px); }
.hero-status div { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.hero-status strong { color: var(--gold-light); font-size: .78rem; letter-spacing: .12em; }
.hero-status span { padding-left: 10px; border-left: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.58); font-size: .77rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { width: min(100%, 650px); position: relative; justify-self: start; }
.image-frame { position: relative; z-index: 1; overflow: hidden; aspect-ratio: .83; border-radius: 300px 300px 28px 28px; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow); background: #25231f; }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 38%); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transform: scale(1.035); }
.image-caption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.image-caption span { font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }
.image-caption strong { font-family: Georgia, serif; font-size: clamp(2rem, 3vw, 3.4rem); }
.italy-mark { position: absolute; z-index: 3; top: 15%; left: -22px; width: 66px; height: 130px; display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border-radius: 999px; transform: rotate(-7deg); box-shadow: 0 15px 30px rgba(0,0,0,.25); }
.italy-mark i:nth-child(1){background:var(--green)}.italy-mark i:nth-child(2){background:#f7f3e9}.italy-mark i:nth-child(3){background:var(--red)}
.hand-note { position: absolute; z-index: 3; right: -25px; bottom: 11%; margin: 0; color: var(--gold-light); font-family: "Segoe Script", "Brush Script MT", cursive; font-size: clamp(1.5rem, 2.5vw, 2.7rem); transform: rotate(-8deg); text-shadow: 0 4px 14px #000; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); opacity: .15; }
.hero-glow-one { width: 420px; height: 420px; background: var(--red); left: -220px; top: 30%; }
.hero-glow-two { width: 340px; height: 340px; background: var(--gold); right: -160px; bottom: -100px; }

.ticker { overflow: hidden; background: var(--gold); border-bottom: 1px solid rgba(0,0,0,.14); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 16px 0; animation: ticker 24s linear infinite; }
.ticker span { font-size: .75rem; font-weight: 900; letter-spacing: .18em; }
.ticker b { color: var(--red); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(76px, 10vw, 150px) clamp(20px, 5vw, 80px); }
.intro { width: min(100%, 1600px); margin: auto; display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(50px, 10vw, 170px); align-items: start; }
.section-kicker { color: var(--red); }
.intro h2, .section-heading h2, .notify h2 { font-size: clamp(2.65rem, 4.5vw, 5rem); line-height: .98; }
.intro-text { padding-top: 42px; font-size: clamp(1.1rem, 1.45vw, 1.35rem); line-height: 1.75; }
.intro-text p { margin: 0; }
.intro-text .muted { margin-top: 24px; color: var(--muted); font-size: .9em; }

.flavours { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flavours > * { width: min(100%, var(--content)); margin-left: auto; margin-right: auto; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(250px, .38fr); gap: 50px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 900px; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); line-height: 1.7; }
.flavour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.flavour-card { position: relative; overflow: hidden; min-height: 530px; background: var(--ink); color: white; border-radius: var(--radius); box-shadow: 0 10px 35px rgba(0,0,0,.08); }
.flavour-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.flavour-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,12,10,.96) 0, rgba(12,12,10,.42) 38%, transparent 65%); }
.flavour-card:hover img { transform: scale(1.045); }
.card-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.card-copy span { display: block; margin-bottom: 12px; color: var(--gold-light); font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.card-copy h3 { font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1; }
.card-copy p { margin: 12px 0 0; color: rgba(255,255,255,.68); line-height: 1.55; font-size: .9rem; }

.notify { background: var(--cream); }
.notify-card { width: min(100%, var(--content)); margin: auto; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 34px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.notify-copy { position: relative; overflow: hidden; padding: clamp(42px, 6vw, 86px); background: radial-gradient(circle at 10% 90%, rgba(200,147,44,.24), transparent 42%); }
.notify-copy::after { content:"CIAO!"; position:absolute; left:-10px; bottom:-40px; color:rgba(255,255,255,.025); font-family:Georgia,serif; font-size:clamp(8rem,18vw,18rem); font-weight:900; line-height:.8; }
.section-kicker.light { color: var(--gold-light); }
.notify h2 { max-width: 690px; }
.notify-copy > p:not(.section-kicker) { max-width: 600px; margin: 28px 0 0; color: rgba(255,255,255,.68); line-height: 1.75; font-size: 1.05rem; }
.contact-direct { position: relative; z-index: 2; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); display: grid; gap: 7px; }
.contact-direct span { color: rgba(255,255,255,.45); font-size: .78rem; }
.contact-direct a { width: fit-content; font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 700; color: var(--gold-light); }
.notify-form { padding: clamp(36px, 5vw, 72px); background: #1b1a17; }
.form-row { display: grid; gap: 10px; }
.form-row + .form-row, .form-split { margin-top: 20px; }
.form-row label { font-size: .73rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.form-row label small { font-size: .72rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.35); }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-split .form-row { margin-top: 0; }
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%; height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  outline: none; background: rgba(255,255,255,.055); color: white; transition: border-color .2s, background .2s, box-shadow .2s;
}
input::placeholder { color: rgba(255,255,255,.27); }
input:focus { border-color: var(--gold); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(200,147,44,.13); }
input.is-error { border-color: #ff635c; }
.form-hint { margin: 10px 0 24px; color: rgba(255,255,255,.4); font-size: .78rem; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.55; cursor: pointer; }
.check-row input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--gold); }
.button-submit { width: 100%; margin-top: 28px; border: 0; background: var(--gold); color: var(--ink); }
.button-submit:hover { background: var(--gold-light); }
.button-submit svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin-top: 16px; font-size: .86rem; font-weight: 650; line-height: 1.5; }
.form-status.success { color: #81dda9; }
.form-status.error { color: #ff8e88; }
.data-note { margin: 22px 0 0; color: rgba(255,255,255,.3); font-size: .68rem; line-height: 1.55; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }

.site-footer { width: min(100%, var(--content)); margin: auto; padding: 42px clamp(20px, 4vw, 40px) 55px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.footer-logo img { width: 130px; height: auto; filter: invert(1); mix-blend-mode: multiply; opacity: .85; }
.footer-meta { display: flex; gap: clamp(30px, 6vw, 90px); text-align: right; }
.footer-meta p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.footer-meta strong, .footer-meta a { color: var(--ink); }
.footer-meta a:hover { color: var(--red); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0,1fr) minmax(360px,.75fr); gap: 45px; }
  .hero-status div:nth-child(3) { display: none; }
  .flavour-grid { grid-template-columns: repeat(2,1fr); }
  .notify-card { grid-template-columns: 1fr; }
  .notify-copy { min-height: 460px; }
}

@media (max-width: 780px) {
  nav > a:not(.nav-cta) { display: none; }
  nav .nav-cta { padding: 11px 15px; font-size: .72rem; }
  .site-header { padding: 14px 18px; }
  .brand img { width: 112px; }
  .hero { min-height: auto; padding: 135px 20px 70px; grid-template-columns: 1fr; gap: 52px; }
  .hero-content { justify-self: stretch; }
  .hero h1 { font-size: clamp(3.35rem,15vw,5.8rem); }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-status { justify-content: space-between; gap: 16px; margin-top: 46px; }
  .hero-status div:nth-child(3) { display: none; }
  .hero-status span { font-size: .67rem; }
  .hero-visual { width: min(92%, 540px); justify-self: center; }
  .hand-note { right: -5px; }
  .italy-mark { left: -14px; width: 54px; height: 110px; }
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .intro, .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .intro-text { padding-top: 0; }
  .flavour-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; margin-right: -20px; scrollbar-width: thin; }
  .flavour-card { flex: 0 0 min(84vw, 420px); min-height: 500px; scroll-snap-align: start; }
  .notify-card { border-radius: 24px; }
  .notify-copy { min-height: 420px; padding: 44px 26px; }
  .notify-form { padding: 34px 22px; }
  .form-split { grid-template-columns: 1fr; }
  .site-footer { align-items: start; }
  .footer-meta { display: grid; gap: 16px; }
}

@media (max-width: 520px) {
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-status { display: grid; grid-template-columns: 1fr 1fr; }
  .image-frame { border-radius: 220px 220px 22px 22px; }
  .image-caption { left: 22px; right: 22px; bottom: 20px; }
  .site-footer { display: grid; }
  .footer-meta { text-align: left; }
  .footer-logo img { width: 105px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Komunikat po wysłaniu formularza */
body.banner-open { overflow: hidden; }
.form-banner[hidden] { display: none !important; }
.form-banner {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(12, 12, 10, .76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: bannerFade .22s ease both;
}
.form-banner__panel {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(211,168,74,.19), transparent 38%),
    #1b1a17;
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
  animation: bannerRise .28s cubic-bezier(.2,.8,.2,1) both;
}
.form-banner__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.75);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.form-banner__close:hover { background: rgba(255,255,255,.13); color: #fff; }
.form-banner__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 15px 36px rgba(200,147,44,.22);
}
.form-banner__icon svg { width: 38px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-banner__eyebrow { margin: 0 0 9px; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .2em; }
.form-banner h2 { margin: 0; font-size: clamp(2.1rem, 6vw, 3.6rem); }
.form-banner__panel > p:not(.form-banner__eyebrow) { margin: 18px auto 0; max-width: 380px; color: rgba(255,255,255,.68); line-height: 1.65; }
.form-banner__button { width: 100%; margin-top: 30px; border: 0; background: var(--gold); color: var(--ink); }
.form-banner__button:hover { background: var(--gold-light); }
.form-banner.is-error .form-banner__icon { background: #e7655f; color: #fff; box-shadow: 0 15px 36px rgba(231,101,95,.2); }
.form-banner.is-error .form-banner__eyebrow { color: #ff9d98; }
@keyframes bannerFade { from { opacity: 0; } }
@keyframes bannerRise { from { opacity: 0; transform: translateY(18px) scale(.98); } }
@media (prefers-reduced-motion: reduce) {
  .form-banner, .form-banner__panel { animation: none; }
}
