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

  :root {
    --green-deep: #2d4a35;
    --green-mid: #4a7a5a;
    --green-sage: #7a9e8a;
    --green-pale: #c8ddd0;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --gold: #b8956a;
    --gold-light: #d4b896;
    --text-dark: #1e2e23;
    --text-mid: #4a5a50;
    --text-light: #8a9e92;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: transparent;
    transition: all .4s ease;
  }
  nav.scrolled {
    background: rgba(245,240,232,.95);
    backdrop-filter: blur(12px);
    padding: 16px 60px;
    box-shadow: 0 2px 30px rgba(45,74,53,.08);
  }
  nav .nav-logo img{
    width: 200px;
  }
  nav.scrolled .nav-logo img{
    width: 150px;
  }
  .logo-scrolled{
    display: none;
  }
  nav.scrolled .nav-logo .logo-classic{
    display: none;
  }
  nav.scrolled .nav-logo .logo-scrolled{
    display: block;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500; letter-spacing: .08em;
    color: var(--warm-white);
    text-decoration: none; transition: color .3s;
  }
  nav.scrolled .nav-logo { color: var(--green-deep); }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    font-size: 12px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.85); text-decoration: none; transition: color .3s;
  }
  nav.scrolled .nav-links a { color: var(--text-mid); }
  .nav-links a:hover { color: var(--gold); }
  .nav-book {
    background: var(--gold) !important; color: white !important;
    padding: 10px 24px; border-radius: 2px; font-weight: 500 !important;
    transition: background .3s !important;
  }
  .nav-book:hover { background: var(--green-deep) !important; }

  /* ── HERO ── */
  .hero {
    height: 100vh; min-height: 700px;
    position: relative; display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(20,35,25,.35) 0%, rgba(20,35,25,.1) 40%, rgba(20,35,25,.7) 100%),
      url(img/slide-home.jpg) center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 12s ease-in-out infinite alternate;
  }
  @keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }

  .hero-content {
    position: relative; padding: 0 60px 100px;
    max-width: 780px;
    animation: fadeUp .9s ease both;
  }
  @keyframes fadeUp { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }

  .hero-eyebrow {
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-light); font-weight: 400;
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
    animation: fadeUp .9s .15s ease both;
  }
  .hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 84px); font-weight: 300; line-height: 1.1;
    color: white; margin-bottom: 24px;
    animation: fadeUp .9s .25s ease both;
  }
  .hero h1 em { font-style: italic; color: var(--green-pale); }

  .hero-sub {
    font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.8);
    max-width: 460px; margin-bottom: 44px;
    animation: fadeUp .9s .35s ease both;
  }

  .hero-actions { display: flex; gap: 16px; animation: fadeUp .9s .45s ease both; }
  .btn-primary {
    background: var(--gold); color: white;
    padding: 14px 36px; border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
    transition: all .3s; display: inline-block;
  }
  .btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,.5); color: white;
    padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: 12px;
    font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
    text-decoration: none; transition: all .3s; display: inline-block;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,.08); }

  /* ── BOOKING STRIP ── */
  .booking-strip {
    background: var(--green-deep); color: white;
    padding: 0 60px;
    scroll-margin-top: 70px;
    display: flex; align-items: stretch;
    box-shadow: 0 8px 40px rgba(45,74,53,.25);
  }
  .booking-strip-inner { display: flex; align-items: stretch; width: 100%; gap: 0; }
  .booking-field {
    flex: 1; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.12);
  }
  .booking-field label {
    display: block; font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--green-sage); margin-bottom: 8px;
  }
  .booking-field input, .booking-field select {
    background: none; border: none; outline: none;
    color: white; font-family: 'Jost', sans-serif; font-size: 15px; width: 100%; cursor: pointer;
  }
  .booking-field select option { background: var(--green-deep); color: white; }
  .booking-btn {
    background: var(--gold); border: none; color: white; cursor: pointer;
    padding: 0 44px; font-family: 'Jost', sans-serif; font-size: 12px;
    font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
    transition: background .3s; white-space: nowrap;
  }
  .booking-btn:hover { background: #9a7a54; }

  /* ── SECTION BASE ── */
  section { padding: 100px 60px; }
  .section-label {
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px); font-weight: 300; line-height: 1.2; color: var(--green-deep);
  }

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
  .about-text p { font-size: 16px; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; font-weight: 300; }
  .about-text p strong { color: var(--green-deep); font-weight: 500; }
  .about-stats { display: flex; gap: 40px; margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--green-pale); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300;
    color: var(--green-deep); line-height: 1;
  }
  .stat-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
  .about-img-wrap { position: relative; }
  .about-img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    box-shadow: 24px 24px 0 var(--green-pale);
  }
  .about-badge {
    position: absolute; bottom: -24px; left: -24px;
    background: var(--green-deep); color: white;
    padding: 24px 28px; font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic; line-height: 1.5; max-width: 200px;
    box-shadow: 0 8px 30px rgba(45,74,53,.2);
  }

  /* ── SERVICES ── */
  .services { background: var(--warm-white); }
  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px;
  }
  .service-card {
    position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  }
  .service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .service-card:hover img { transform: scale(1.06); }
  .service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,40,28,.85) 0%, rgba(20,40,28,.1) 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
    transition: background .3s;
  }
  .service-card:hover .service-overlay { background: linear-gradient(to top, rgba(20,40,28,.92) 0%, rgba(20,40,28,.3) 60%); }
  .service-icon { font-size: 28px; margin-bottom: 10px; }
  .service-name {
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400;
    color: white; margin-bottom: 8px;
  }
  .service-desc { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.6; font-weight: 300; }
  .service-link {
    margin-top: 16px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold-light); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(8px); transition: all .3s .1s;
  }
  .service-card:hover .service-link { opacity: 1; transform: translateY(0); }
  .service-link::after { content: '→'; }

  /* ── RESTAURANT ── */
  .restaurant { background: var(--green-deep); color: white; position: relative; overflow: hidden; }
  .restaurant::before {
    content: 'Ristorante'; position: absolute; top: -20px; right: -20px;
    font-family: 'Cormorant Garamond', serif; font-size: 200px; font-weight: 300;
    color: rgba(255,255,255,.03); line-height: 1; pointer-events: none; white-space: nowrap;
  }
  .restaurant .section-label { color: var(--gold-light); }
  .restaurant .section-label::before { background: var(--gold-light); }
  .restaurant h2 { color: white; }
  .restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
  .menu-items { display: flex; flex-direction: column; gap: 24px; }
  .menu-item { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .menu-item:last-child { border-bottom: none; }
  .menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
  .menu-item-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: white; }
  .menu-item-price { font-size: 14px; color: var(--gold-light); font-weight: 300; }
  .menu-item-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; font-weight: 300; }
  .restaurant-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .restaurant-imgs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .restaurant-imgs img:first-child { grid-column: 1/-1; aspect-ratio: 16/9; }

  /* ── TERRITORY ── */
  .territory { background: var(--cream); }
  .territory-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .territory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .territory-card { background: white; overflow: hidden; transition: transform .3s, box-shadow .3s; }
  .territory-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,74,53,.12); }
  .territory-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
  .territory-card-body { padding: 24px; }
  .territory-card-dist { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .territory-card-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--green-deep); margin-bottom: 8px; }
  .territory-card-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; font-weight: 300; }

  /* ── REVIEWS ── */
  .reviews { background: var(--warm-white); padding: 80px 60px; }
  .reviews-header { text-align: center; margin-bottom: 60px; }
  .reviews-header h2 { margin-bottom: 16px; }
  .stars { color: var(--gold); font-size: 20px; letter-spacing: 4px; margin-bottom: 8px; }
  .reviews-score { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--text-light); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .review-card { background: var(--cream); padding: 36px 46px; position: relative; }
  .review-card::before {
    content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 80px;
    color: var(--green-pale); position: absolute; top: 10px; left: 10px; line-height: 1;
  }
  .review-text { font-size: 15px; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-bottom: 24px; position: relative; }
  .review-author { display: flex; align-items: center; gap: 14px; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green-pale); display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green-deep);
  }
  .review-name { font-size: 14px; font-weight: 500; color: var(--green-deep); }
  .review-source { font-size: 11px; color: var(--text-light); margin-top: 2px; }

  /* ── CTA ── */
  .cta {
    background: var(--green-deep); position: relative; overflow: hidden;
    padding: 100px 60px; text-align: center;
  }
  .cta::before {
    content: ''; position: absolute; inset: 0;
    background: url(img/bg-footer.jpg) center/cover no-repeat;
    opacity: .15;
  }
  .cta-content { position: relative; }
  .cta h2 { color: white; margin-bottom: 16px; }
  .cta p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 40px; max-width: 500px; margin-inline: auto; font-weight: 300; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; }

  /* ── FOOTER ── */
  footer {
    background: #141f18; color: rgba(255,255,255,.6);
    padding: 60px 60px 32px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: white; margin-bottom: 16px; font-weight: 400; }
  .footer-brand p { font-size: 13px; line-height: 1.8; font-weight: 300; max-width: 260px; }
  .footer-col h4 { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; font-weight: 300; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; }

  /* ── SCROLL INDICATOR ── */
  .scroll-line {
    position: absolute; right: 60px; bottom: 100px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  }
  .scroll-line::after {
    content: ''; width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
  }
  @keyframes scrollLine { from { opacity:1; transform: scaleY(0); transform-origin: top; } to { opacity:0; transform: scaleY(1); transform-origin: top; } }

  /* ── RESPONSIVE basics ── */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 70px 24px; }
    .hero-content { padding: 0 24px 80px; }
    .booking-strip { padding: 0 24px; flex-direction: column; }
    .booking-strip-inner { flex-direction: column; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .booking-btn { padding: 18px; }
    .about-grid, .restaurant-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .territory-grid, .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .about-badge { display: none; }
  }
