:root {
    --sand: #E8E0D0;
    --sand-light: #F5F1EA;
    --ink: #1A1A18;
    --ink-soft: #3D3D38;
    --ocean: #0D3B5E;
    --ocean-mid: #1A5F8A;
    --ocean-light: #C8DDE8;
    --rust: #B5471A;
    --white: #FAFAF8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    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: 0.6rem 3rem;
    background: rgba(13,59,94,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s;
  }
  nav.scrolled {
    background: rgba(13,59,94,1);
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
  }
  .nav-links a {
    color: rgba(250,250,248,0.8);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #fff; }
  .lang-toggle {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    overflow: hidden;
  }
  .lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
  }
  .lang-btn.active {
    background: rgba(255,255,255,0.2);
    color: #fff;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 5rem;
    overflow: hidden;
    margin-top: 0;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0D3B5E 0%, #1a5f2a 40%, #8B3A0F 100%);
    z-index: 0;
    display: none;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,8,0.88) 0%, rgba(10,10,8,0.35) 45%, rgba(10,10,8,0.15) 100%);
    z-index: 1;
  }
  /* Photo placeholder — replace src in img tag with your actual hero photo */
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
    opacity: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F5C842;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .hero-title em {
    font-style: italic;
    color: #F5C842;
  }
  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(250,250,248,0.75);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--rust);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: background 0.2s, transform 0.2s;
  }
  .hero-cta:hover { background: #8B3A0F; transform: translateY(-2px); }
  .hero-cta svg { width: 16px; height: 16px; }
  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 1;
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,250,248,0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-scroll::before {
    content: '';
    width: 1px;
    height: 60px;
    background: rgba(250,250,248,0.2);
  }

  /* ── MANIFESTO STRIP ── */
  .manifesto {
    background: var(--ink);
    color: var(--white);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
  }
  .manifesto-quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 700;
    flex: 1;
    line-height: 1.3;
  }
  .manifesto-divider {
    width: 1px;
    height: 60px;
    background: rgba(250,250,248,0.2);
    flex-shrink: 0;
  }
  .manifesto-text {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(250,250,248,0.7);
    line-height: 1.7;
  }

  /* ── SECTION BASE ── */
  section { padding: 6rem 3rem; }
  .section-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--ocean); }

  /* ── STORY SECTION ── */
  .story-section {
    background: var(--sand-light);
    padding: 5rem 3rem;
  }
  .story-top {
    max-width: 1100px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
  .story-img-wrap {
    overflow: hidden;
    border-radius: 2px;
  }
  .story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .story-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
  }
  .story-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
  }
  .story-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
  }
  .story-title em { font-style: italic; color: var(--ocean); }
  .story-body {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .story-body p + p { margin-top: 0.75rem; }
  .story-stats {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(26,26,24,0.1);
    padding-top: 3rem;
  }
  .story-stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 2rem;
    border-right: 1px solid rgba(26,26,24,0.1);
  }
  .story-stat-item:last-child { border-right: none; }
  .story-stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--ocean);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .story-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: block;
  }

  /* ── PHOTO GALLERY SCROLL ── */
  .strip-section {
    background: var(--ink);
    padding: 1.5rem 0 2rem;
  }
  .strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .strip-header .section-eyebrow { color: #F5C842; margin: 0; }
  .strip-scroll-hint {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
  }
  .strip-track-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 0;
  }
  .strip-track-wrap::-webkit-scrollbar { display: none; }
  .strip-track-wrap.is-dragging { cursor: grabbing; user-select: none; }
  .strip-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0 3rem;
  }
  .strip-item {
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
  }
  .strip-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: filter 0.3s;
    filter: brightness(0.88);
  }
  .strip-item:hover img { filter: brightness(1.05); }

  /* ── SERVICES ── */
  .services-section { background: var(--sand-light); }
  .services-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }
  .service-card:hover { transform: translateY(-4px); }
  .service-card.featured { background: var(--ocean); color: var(--white); }
  .service-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--sand);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    pointer-events: none;
  }
  .service-card.featured .service-num { color: rgba(255,255,255,0.08); }
  .service-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(181,71,26,0.08);
    padding: 0.3rem 0.75rem;
    width: fit-content;
  }
  .service-card.featured .service-tag { color: #F5C842; background: rgba(245,200,66,0.12); }
  .service-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0.5rem;
  }
  .service-card.featured .service-name { color: var(--white); }
  .service-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink-soft);
    flex: 1;
  }
  .service-card.featured .service-desc { color: rgba(250,250,248,0.72); }
  .service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .service-includes li {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .service-card.featured .service-includes li { color: rgba(250,250,248,0.7); }
  .service-includes li::before {
    content: '—';
    color: var(--rust);
    flex-shrink: 0;
  }
  .service-card.featured .service-includes li::before { color: #F5C842; }
  .service-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--ocean);
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand);
  }
  .service-card.featured .service-price {
    color: #F5C842;
    border-top-color: rgba(250,250,248,0.15);
  }
  .service-price small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--ink-soft);
    display: block;
    margin-top: 0.2rem;
  }
  .service-card.featured .service-price small { color: rgba(250,250,248,0.5); }
  .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ocean);
    margin-top: 0.5rem;
    transition: gap 0.2s;
  }
  .service-cta:hover { gap: 0.9rem; }
  .service-card.featured .service-cta { color: var(--white); }

  /* ── GALLERY STRIP ── */
  .gallery-strip {
    padding: 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px;
    gap: 2px;
  }
  .gallery-item {
    overflow: hidden;
    background: var(--ocean-light);
    position: relative;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(26,26,24,0.7);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    backdrop-filter: blur(4px);
  }

  /* ── PROCESS ── */
  .process-section {
    background: var(--ink);
    color: var(--white);
  }
  .process-section .section-title { color: var(--white); }
  .process-section .section-title em { color: #F5C842; }
  .process-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .process-step {
    padding: 2.5rem 2rem;
    border-left: 1px solid rgba(250,250,248,0.08);
    position: relative;
  }
  .process-step:first-child { border-left: none; }
  .process-step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(250,250,248,0.06);
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .process-step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
  }
  .process-step-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(250,250,248,0.55);
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--sand-light); }
  .testimonials-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
  }
  .testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--ocean-light);
    line-height: 0.6;
    margin-bottom: 1.5rem;
  }
  .testimonial-text {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testimonial-author {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: #F5C842;
    font-size: 0.8rem;
  }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--ocean);
    color: var(--white);
    text-align: center;
  }
  .contact-section .section-title { color: var(--white); }
  .contact-section .section-title em { color: #F5C842; }
  .contact-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(250,250,248,0.65);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }
  .contact-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-input {
    width: 100%;
    background: rgba(250,250,248,0.08);
    border: 1px solid rgba(250,250,248,0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.9rem 1.2rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-input::placeholder { color: rgba(250,250,248,0.35); }
  .form-input:focus {
    border-color: rgba(250,250,248,0.45);
    background: rgba(250,250,248,0.12);
  }
  .form-select {
    appearance: none;
    cursor: pointer;
  }
  .form-textarea { resize: none; height: 120px; }
  .form-submit {
    background: var(--rust);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: #8B3A0F; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
  }
  .footer-logo img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    color: rgba(250,250,248,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-copy {
    font-size: 0.75rem;
    color: rgba(250,250,248,0.25);
  }

  /* ── LANG CONTENT ── */
  [data-lang="en"]:not(html) { display: none !important; }
  body.lang-en [data-lang="it"] { display: none !important; }
  body.lang-en [data-lang="en"] { display: revert !important; }
  body.lang-en .lang-inline-en { display: inline; }
  body.lang-en .lang-inline-it { display: none; }
  .lang-inline-en { display: none; }

  /* ── MOBILE ── */
  /* Hamburger menu */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,59,94,0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: #fff; }
  .mobile-lang {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
  .mobile-lang button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
  }
  .mobile-lang button.active {
    background: rgba(255,255,255,0.2);
    color: #fff;
  }

  @media (max-width: 900px) {
    nav { padding: 0.5rem 1.25rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-logo img { height: 46px; }

    section { padding: 3.5rem 1.25rem; }

    .hero {
      padding: 0 1.25rem 3.5rem;
      min-height: 100svh;
    }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
    .hero-sub { font-size: 0.9rem; max-width: 100%; }
    .hero-scroll { display: none; }
    .hero-cta { padding: 0.85rem 1.5rem; font-size: 0.75rem; }

    .manifesto {
      flex-direction: column;
      gap: 1rem;
      padding: 1.75rem 1.25rem;
    }
    .manifesto-quote { font-size: 1.2rem; }
    .manifesto-divider { display: none; }

    .strip-item { height: 220px; }
    .strip-header { padding: 0 1.25rem 1rem; }
    .strip-track-wrap { padding: 0 1.25rem; }
    .story-section { padding: 3rem 1.25rem; }
    .story-top { grid-template-columns: 1fr; gap: 2rem; }
    .story-stats { gap: 0; padding-top: 2rem; }
    .story-stat-item { padding: 0 1rem; }
    .story-stat-num { font-size: 2.2rem; }

    .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .services-grid { grid-template-columns: 1fr; gap: 0; }
    .service-card { padding: 2rem 1.5rem; }

    .gallery-strip {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 200px;
    }
    .gallery-strip .gallery-item:first-child { grid-column: 1 / -1; grid-row: 1; }

    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { padding: 1.75rem 1.25rem; }

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

    .contact-section { padding: 4rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; }

    footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 2rem 1.25rem;
    }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
  }

  @media (max-width: 480px) {
    .strip-item { height: 220px; }
    .process-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: 1fr; grid-template-rows: 220px 180px 180px; }
    .gallery-strip .gallery-item:first-child { grid-column: 1; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1; }
    .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* ── BOOKING MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10,10,8,0.75);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--white);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    animation: modalIn 0.3s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .modal-close {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    background: none; border: none;
    font-size: 1.4rem; cursor: pointer;
    color: var(--ink-soft);
    line-height: 1;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--ink); }
  .modal-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.75rem;
  }
  .modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .modal-subtitle {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .modal-subtitle strong { color: var(--ocean); font-weight: 600; }
  .modal-form { display: flex; flex-direction: column; gap: 1rem; }
  .modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .modal-field { display: flex; flex-direction: column; gap: 0.35rem; }
  .modal-field label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .modal-field input,
  .modal-field select,
  .modal-field textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--sand-light);
    border: 1px solid rgba(26,26,24,0.12);
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 0;
    width: 100%;
  }
  .modal-field input:focus,
  .modal-field select:focus,
  .modal-field textarea:focus {
    border-color: var(--ocean);
    background: #fff;
  }
  .modal-field textarea { resize: none; height: 90px; }
  .modal-field select { appearance: none; cursor: pointer; }
  .modal-submit {
    background: var(--rust);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .modal-submit:hover { background: #8B3A0F; transform: translateY(-2px); }
  .modal-submit:disabled { background: var(--ink-soft); cursor: not-allowed; transform: none; }
  .modal-note {
    font-size: 0.72rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
  }
  .modal-note svg { width: 12px; height: 12px; vertical-align: middle; margin-right: 3px; }
  @media (max-width: 600px) {
    .modal-box { padding: 2rem 1.5rem; }
    .modal-form-row { grid-template-columns: 1fr; }
  }

  /* Gallery arrows */
  .strip-outer {
    position: relative;
  }
  .strip-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
    opacity: 0;
    pointer-events: none;
  }
  .strip-outer:hover .strip-arrow {
    opacity: 1;
    pointer-events: all;
  }
  .strip-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.08);
  }
  .strip-arrow-left { left: 1rem; }
  .strip-arrow-right { right: 1rem; }
/* ── SUBPAGE HERO ── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 9rem 3rem 4rem;
  text-align: center;
}
.page-hero .section-eyebrow { color: #F5C842; }
.page-hero .section-title { color: var(--white); }
.page-hero .section-title em { color: #F5C842; }
.page-hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250,250,248,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #F5C842;
}
.page-hero-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: #F5C842; }

/* ── INFOGRAPHIC STEPS ── */
.info-section { background: var(--sand-light); }
.info-flow {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.info-flow.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  border-top: 3px solid var(--ocean);
}
.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ocean-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.info-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.8;
}
.info-card-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.info-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.info-card-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ── INCLUDES GRID (checklist style) ── */
.includes-section { background: var(--white); }
.includes-grid {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 3rem;
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26,26,24,0.08);
}
.includes-item-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(181,71,26,0.08);
  display: flex; align-items: center; justify-content: center;
}
.includes-item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--rust);
  fill: none;
  stroke-width: 2;
}
.includes-item-text { font-size: 0.92rem; font-weight: 400; color: var(--ink); line-height: 1.5; }
.includes-item-text small { display: block; font-size: 0.8rem; font-weight: 300; color: var(--ink-soft); margin-top: 0.25rem; }

/* ── INSTAGRAM-STYLE GALLERY GRID ── */
.ig-gallery {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.ig-gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.ig-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ig-gallery-item:hover img { transform: scale(1.06); }
.ig-gallery-item.wide { grid-column: span 2; }

/* ── PREMIUM PHOTO ROW ── */
.premium-photos {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 360px;
  gap: 4px;
}
.premium-photos .gallery-item { background: var(--ocean-light); }

/* ── FINAL CTA ── */
.final-cta-section {
  background: var(--ocean);
  color: var(--white);
  text-align: center;
}
.final-cta-section .section-title { color: var(--white); }
.final-cta-section .section-title em { color: #F5C842; }
.final-cta-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250,250,248,0.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--rust);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  transition: background 0.2s, transform 0.2s;
}
.final-cta-btn:hover { background: #8B3A0F; transform: translateY(-2px); }
.final-cta-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(250,250,248,0.4);
}

@media (max-width: 900px) {
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .info-flow { grid-template-columns: 1fr; }
  .info-flow.cols-4 { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .ig-gallery { grid-template-columns: repeat(2, 1fr); }
  .ig-gallery-item.wide { grid-column: span 2; }
  .premium-photos { grid-template-columns: 1fr; grid-template-rows: repeat(3, 220px); }
}

/* ── BUNDLE SECTION ── */
.bundle-section { background: var(--sand-light); }
.bundle-card {
  max-width: 800px;
  margin: 3rem auto 0;
  background: var(--ocean);
  color: var(--white);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.bundle-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5C842;
  background: rgba(245,200,66,0.12);
  padding: 0.35rem 0.85rem;
  width: fit-content;
  margin-bottom: 1rem;
}
.bundle-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.bundle-title em { color: #F5C842; font-style: italic; }
.bundle-text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,250,248,0.75);
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.bundle-price-old {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(250,250,248,0.4);
  text-decoration: line-through;
}
.bundle-price-new {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: #F5C842;
}
.bundle-price-new small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
}
.bundle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--rust);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: background 0.2s, transform 0.2s;
}
.bundle-btn:hover { background: #8B3A0F; transform: translateY(-2px); }

@media (max-width: 600px) {
  .bundle-card { padding: 2rem 1.5rem; }
  .bundle-price-new { font-size: 2.2rem; }
}
