﻿@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.woff2') format('woff2'),
         url('fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-VariableFont_wght.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
  }
  
  :root {
    
    --c-ink:        #0a1628;        
    --c-ink-soft:   #1a2e4a;        
            
    --c-steel:      #29166f;
    --c-steel-bright: #3b82f6;      
    --c-mist:       #ebf2fb;        
    --c-paper:      #eef1f6;        
    --c-line:       #d9dfe7;        
    --c-muted:      #5b6b80;        
    --c-white:      #ffffff;
    --c-steel: #29166f;

    
    --f-display: 'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
    --f-body:    'Manrope', system-ui, sans-serif;

    
    --max-w: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);

    
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--f-body);
    font-weight: 400;
    color: var(--c-ink);
    background: var(--c-paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ul { list-style: none; }

  ::selection { background: var(--c-ink); color: var(--c-white); }

  
  :focus-visible {
    outline: 2px solid var(--c-steel-bright);
    outline-offset: 3px;
    border-radius: 3px;
  }

  
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  
  .container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    scroll-margin-top: 90px;
  }

  
  .nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-w);
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
    background: rgba(247, 248, 250, 0);
    border-radius: 0 0 1rem 1rem;
  }
  .nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 0.65rem 0;
  }
  .nav::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(41, 22, 111, 0.0), rgba(41, 22, 111, 0.7), rgba(41, 22, 111, 0.0));
    pointer-events: none;
    transition: all 0.4s var(--ease);
    z-index: 1;
  }
  .nav.scrolled::after {
    bottom: -16px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(41, 22, 111, 0.8), rgba(41, 22, 111, 0.0));
    filter: blur(3px);
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .nav__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--c-ink);
  }
  .nav__logo {
    --width: 52px;
    --height: 52px;
    height: 75px;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
  }
  --.nav__brand:hover .nav__logo { transform: rotate(-3deg) scale(1.05); }
  .nav__logo:hover { transform: rotate(-3deg) scale(1.05); }
  --.nav__brand:hover .nav__brand-tag { transform: rotate(-3deg) scale(1.05); }
  .nav__brand-tag {
    display: inline-block;
    transition: transform 0.4s var(--ease), text-shadow 0.4s var(--ease), color 0.4s var(--ease);
    transform-origin: left center;
  }
  .nav__brand-tag:hover {
    transform: scale(1.12);
    color: #4a2db8;
    text-shadow: 0 0 8px rgba(41, 22, 111, 0.5), 0 0 24px rgba(74, 45, 184, 0.3);
  }
  .nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
  .nav__brand-name { font-size: 1.05rem; visibility: hidden;}
  .nav__brand-tag {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 500;
    --font-size: 0.7rem;
    font-size: 1.5rem;
    --color: var(--c-muted);
    letter-spacing: 0.04em;
    --text-transform: uppercase;
    margin-top: 2px;
    color: var(--c-steel);
    color: #29166f;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .nav__menu-brand { display: none; }
  .nav__link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--c-ink);
    padding: 0.5rem 0;
    transition: color 0.3s var(--ease);
  }
  .nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--c-steel);
    transition: width 0.4s var(--ease);
  }
  .nav__link:hover { color: var(--c-steel); }
  .nav__link:hover::after { width: 100%; }

  .nav__cta {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    background: var(--c-ink);
    color: var(--c-white);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
  }
  .nav__cta:hover { background: var(--c-steel); transform: translateY(-2px); }

  .nav__toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .nav__toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-ink);
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #e8b84b; }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #e8b84b; }

  
  .hero {
    min-height: 90vh;
    padding-top: 7rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(43, 91, 156, 0.08), transparent 60%),
      radial-gradient(ellipse at 10% 90%, rgba(26, 46, 74, 0.06), transparent 50%),
      var(--c-paper);
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(26, 46, 74, 0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(26, 46, 74, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
  }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-steel);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.1s forwards;
  }
  .hero__eyebrow::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--c-steel);
  }
  .hero__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6.5vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--c-ink);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.2s forwards;
  }
  .hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--c-steel);
  }
  .hero__title .accent {
    display: inline-block;
    position: relative;
  }
  .hero__title .accent::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0.08em;
    width: 100%; height: 0.18em;
    background: var(--c-steel);
    opacity: 0.18;
    z-index: -1;
  }
  .hero__lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--c-muted);
    max-width: 36rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.35s forwards;
  }
  .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.5s forwards;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
  }
  .btn--primary {
    background: var(--c-ink);
    color: var(--c-white);
  }
  .btn--primary:hover {
    background: var(--c-steel);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -10px rgba(26, 46, 74, 0.5);
  }
  .btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border: 1.5px solid var(--c-line);
  }
  .btn--ghost:hover {
    border-color: var(--c-ink);
    transform: translateY(-3px);
  }
  .btn__arrow { transition: transform 0.3s var(--ease); }
  .btn:hover .btn__arrow { transform: translateX(4px); }

  
  .hero__visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  
  .hero__visual {
    position: relative;
    aspect-ratio: 4/5;
    opacity: 0;
    animation: fadeIn 1.2s var(--ease) 0.6s forwards;
    border-radius: 18px;
    overflow: hidden;
  }
  .hero__visual-card {
    position: absolute;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(10, 22, 40, 0.18);
  }
  .hero__visual-card--main {
    top: 0; left: 0; right: 10%; bottom: 18%;
    background: linear-gradient(135deg, var(--c-ink-soft), var(--c-steel));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: white;
  }
  .hero__visual-card--main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(135deg,
        transparent 0,
        transparent 14px,
        rgba(255,255,255,0.04) 14px,
        rgba(255,255,255,0.04) 15px);
  }
  .hero__visual-card--main::after {
    
    content: '';
    position: absolute;
    top: 15%; right: -10%;
    width: 120%; height: 75%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><g stroke='white' stroke-width='3' fill='none' opacity='0.85'><line x1='30' y1='40' x2='30' y2='260'/><line x1='110' y1='40' x2='110' y2='260'/><line x1='190' y1='40' x2='190' y2='260'/><line x1='270' y1='40' x2='270' y2='260'/><line x1='350' y1='40' x2='350' y2='260'/><line x1='10' y1='50' x2='370' y2='50'/><line x1='10' y1='250' x2='370' y2='250'/><line x1='10' y1='100' x2='370' y2='100'/><line x1='10' y1='150' x2='370' y2='150'/><line x1='10' y1='200' x2='370' y2='200'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .hero__visual-meta {
    position: relative;
    z-index: 1;
  }
  .hero__visual-meta .num {
    font-family: var(--f-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .hero__visual-meta .label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 0.5rem;
  }
  .hero__visual-card--accent {
    bottom: 0; right: 0;
    width: 55%; height: 35%;
    background: var(--c-white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero__visual-card--accent .stat {
    font-family: var(--f-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-ink);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .hero__visual-card--accent .stat-label {
    font-size: 0.85rem;
    color: var(--c-muted);
  }
  .hero__visual-card--accent .stat-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--c-steel);
    font-weight: 600;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  .section-head__lead { max-width: 38rem; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-steel);
    margin-bottom: 1.25rem;
  }
  .section-eyebrow::before {
    content: ''; width: 32px; height: 2px;
    background: var(--c-steel);
  }
  .section-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--c-ink);
  }
  .section-title em { font-style: italic; font-weight: 500; color: var(--c-steel); }
  .section-text { font-size: 1.05rem; color: var(--c-muted); max-width: 32rem; }

  
  .about { background: var(--c-paper); }
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about__content p {
    font-size: 1.05rem;
    color: var(--c-muted);
    margin-bottom: 1.25rem;
  }
  .about__content p strong {
    color: var(--c-ink);
    font-weight: 600;
  }
  .about__signature {
    --margin-top: 2.5rem;
    --padding-top: 2rem;
    border-top: 1px solid var(--c-line);
    font-style: italic;
    color: var(--c-ink);
    font-size: 1.05rem;
  }

  .about__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--c-line);
  }

  
  .gallery { background: var(--c-white); }  

        
        .gallery__grid {
          display: grid;
          grid-template-columns: repeat(6, 1fr);
          grid-auto-rows: clamp(28px, 4vw, 44px);
          gap: 1rem;
        }

        .gallery-card--xl { grid-column: span 2; grid-row: span 9; }
        .gallery-card--l  { grid-column: span 2; grid-row: span 5; }
        .gallery-card--m  { grid-column: span 2; grid-row: span 4; }

        .gallery-card {
          position: relative;
          border-radius: 20px;
          overflow: hidden;
          cursor: pointer;
          background: var(--c-mist);
          border: 1px solid var(--c-line);
          transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s var(--ease);
        }

        .gallery-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 20px 50px -20px rgba(10, 22, 40, 0.22);
          border-color: var(--c-steel);
        }

        .gallery-card__bg {
          position: absolute;
          inset: 0;
          background-size: cover;
          background-position: center;
          transition: transform 0.7s var(--ease);
        }

        .gallery-card:hover .gallery-card__bg {
          transform: scale(1.07);
        }

        .gallery-card__overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(
            to top,
            rgba(10, 22, 40, 0.88) 0%,
            rgba(10, 22, 40, 0.3) 50%,
            rgba(10, 22, 40, 0.0) 100%
          );
          transition: opacity 0.4s var(--ease);
        }

        .gallery-card:hover .gallery-card__overlay {
          opacity: 0.95;
        }

        .gallery-card__meta {
          position: absolute;
          left: 1.5rem;
          right: 1.5rem;
          bottom: 1.5rem;
          color: var(--c-white);
          z-index: 2;
        }

        .gallery-card__label {
          font-family: var(--f-display);
          font-size: 1.35rem;
          font-weight: 700;
          line-height: 1.15;
          letter-spacing: -0.01em;
          display: block;
          margin-bottom: 0.35rem;
        }

        .gallery-card__count {
          display: none;
          font-size: 0.78rem;
          font-weight: 600;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          padding: 0.28rem 0.7rem;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-radius: 100px;
        }

        .gallery-card__desc {
          display: block;
          font-size: 0.8rem;
          color: rgba(255, 255, 255, 0.75);
          line-height: 1.45;
          margin-bottom: 0.4rem;
        }

        
        .lightbox {
          position: fixed;
          inset: 0;
          z-index: 200;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .lightbox[hidden] {
          display: none;
        }

        .lightbox__backdrop {
          position: absolute;
          inset: 0;
          background: rgba(5, 13, 26, 0.92);
          backdrop-filter: blur(6px);
          -webkit-backdrop-filter: blur(6px);
          cursor: pointer;
        }

        .lightbox__shell {
          position: relative;
          z-index: 1;
          display: flex;
          flex-direction: column;
          width: min(92vw, 1100px);
          max-height: 92vh;
          gap: 0;
        }

        .lightbox__header {
          display: flex;
          align-items: center;
          gap: 1rem;
          padding: 0 0 1rem 0;
          color: var(--c-white);
          flex-shrink: 0;
        }

        .lightbox__title {
          font-family: var(--f-display);
          font-size: 1.15rem;
          font-weight: 700;
          letter-spacing: -0.01em;
          flex: 1;
        }

        .lightbox__counter {
          font-size: 0.88rem;
          color: rgba(255, 255, 255, 0.6);
          font-weight: 500;
          white-space: nowrap;
        }

        .lightbox__close {
          width: 44px;
          height: 44px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: rgba(255, 255, 255, 0.7);
          background: rgba(255, 255, 255, 0.08);
          border-radius: 50%;
          transition: color 0.2s var(--ease), background 0.2s var(--ease);
          flex-shrink: 0;
        }

        .lightbox__close:hover {
          color: var(--c-white);
          background: rgba(255, 255, 255, 0.18);
        }

        .lightbox__stage {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          min-height: 0;
          flex: 1;
        }

        
        .lightbox__viewport {
          position: relative;
          width: 100%;
          height: calc(92vh - 80px);
          overflow: hidden;
          flex-shrink: 0;
        }

        .lightbox__img {
          display: block;
          max-width: 100%;
          max-height: 100%;
          width: auto;
          height: auto;
          border-radius: 12px;
          object-fit: contain;
          box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
          user-select: none;
          -webkit-user-select: none;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          will-change: transform;
        }

        
        #lightbox-img-b {
          transform: translate(calc(-50% + 100vw), -50%);
        }

        .lightbox__divider { display: none; }

        .lightbox__nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 48px;
          height: 48px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--c-white);
          background: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          transition: background 0.2s var(--ease), transform 0.2s var(--ease);
          z-index: 6;
          flex-shrink: 0;
        }

        .lightbox__nav:hover {
          background: rgba(255, 255, 255, 0.22);
          transform: translateY(-50%) scale(1.08);
        }

        .lightbox__nav--prev { left: 12px; }
        .lightbox__nav--next { right: 12px; }

  
  
  .contact {
    background: var(--c-paper);
    color: var(--c-ink);
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }
  .contact::before { display: none; }
  .contact::after { display: none; }
  .contact .container { position: relative; z-index: 1; }
  .contact .section-eyebrow { color: #29166f; }
  .contact .section-title { color: var(--c-ink); }
  .contact .section-text { color: var(--c-muted); max-width: calc(50% - 0.5rem); }
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .contact__info-block {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-line);
  }
  .contact__info-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .contact__info-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 0.5rem;
  }
  .contact__info-value {
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-ink);
    line-height: 1.5;
    letter-spacing: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .contact__info-value + .contact__info-value { margin-top: 0.3rem; }
  .contact__info-value svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    stroke: var(--c-ink);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contact__info-value a { transition: color 0.3s var(--ease); }
  .contact__info-value a:hover { color: #29166f; }
  .contact__info-detail {
    font-size: 0.85rem;
    color: var(--c-muted);
    margin-top: 0.25rem;
    padding-left: 1.5rem;
  }

  
  .form {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 15px;
  }
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .form__field { margin-bottom: 1rem; }
  .form__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
  }
  .form__input, .form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--f-body);
    font-size: 1rem;
    color: #1a1a2e;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s var(--ease);
  }
  .form__input:focus, .form__textarea:focus {
    outline: none;
    border-color: #29166f;
    background: #ffffff;
  }
  .form__textarea { resize: vertical; min-height: 100px; }
  .form__submit {
    width: 100%;
    padding: 1.1rem;
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: #29166f;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s var(--ease);
  }
  .form__submit:hover {
    background: var(--c-steel-bright);
    color: var(--c-white);
    transform: translateY(-2px);
  }
  .form__success {
    display: none;
    padding: 1rem 1.25rem;
    background: rgba(43, 91, 156, 0.2);
    border: 1px solid var(--c-steel-bright);
    border-radius: 12px;
    color: var(--c-white);
    font-size: 0.92rem;
    margin-top: 1rem;
  }
  .form__success.visible { display: block; }
  .form__error {
    display: none;
    padding: 1rem 1.25rem;
    background: rgba(180, 40, 40, 0.15);
    border: 1px solid rgba(180, 40, 40, 0.5);
    border-radius: 12px;
    color: #f08080;
    font-size: 0.92rem;
    margin-top: 1rem;
  }
  .form__error.visible { display: block; }

  
  .footer {
    background: #050d1a;
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }
  .footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
  }
  .footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-white);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 0.82rem;
  }
  .footer__brand img { width: auto; height: 2rem; object-fit: contain; background: #fff; border-radius: 4px; padding: 2px 4px; }
  .footer__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
  .footer__links a { transition: color 0.3s var(--ease); }
  .footer__links a:hover { color: var(--c-white); }
  .footer__copy { font-size: 0.78rem; }

  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
  .reveal[data-delay="4"] { transition-delay: 0.4s; }
  .reveal[data-delay="5"] { transition-delay: 0.5s; }

  
  @media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero__visual { max-width: 460px; aspect-ratio: 5/4; }
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .gallery__grid { grid-template-columns: repeat(4, 1fr); }
    .gallery-card--xl { grid-column: span 3; grid-row: span 5; }
    .gallery-card--l  { grid-column: span 1; grid-row: span 5; }
    .gallery-card--m  { grid-column: span 2; grid-row: span 4; }
          .lightbox__nav--prev { left: 12px; }
          .lightbox__nav--next { right: 12px; }
    .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  }

  @media (max-width: 720px) {
    .nav__menu {
      position: fixed;
      top: 0; right: -100%;
      width: 78%; max-width: 300px;
      height: 100vh;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      background: rgba(10, 22, 40, 0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 5.5rem 1.8rem 2.5rem;
      box-shadow: -30px 0 80px -10px rgba(0, 0, 0, 0.5);
      transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
      gap: 0;
    }
    .nav__menu.open { right: 0; }

    .nav__menu-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 2rem;
      color: #e8b84b;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .nav__menu-brand::before {
      content: '';
      display: block;
      width: 20px; height: 2px;
      background: #e8b84b;
      flex-shrink: 0;
    }

    .nav__menu .nav__link {
      font-size: 1.2rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      padding: 0.9rem 0;
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color 0.2s;
    }
    .nav__menu .nav__link::after {
      content: '→';
      font-size: 0.85rem;
      opacity: 0.4;
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav__menu .nav__link:hover { color: #fff; }
    .nav__menu .nav__link:hover::after { opacity: 1; transform: translateX(4px); }

    .nav__menu .nav__cta {
      width: 100%;
      justify-content: center;
      margin-top: auto;
      margin-bottom: 1.85rem;
      background: #e8b84b;
      color: #0a1628;
      border-radius: 10px;
      font-weight: 800;
      padding: 0.85rem 1rem;
    }
    .nav__menu .nav__cta:hover { background: #f5ca6a; color: #0a1628; transform: none; }

    .nav__overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: opacity 0.35s ease;
      z-index: 99;
    }
    .nav__overlay.active { opacity: 1; }

    .nav__toggle { display: flex; z-index: 110; }
    .nav__brand-tag { display: none; }
    .nav__brand-name { font-size: 0.95rem; }

    section { padding-top: 1rem; padding-bottom: 1rem; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .section-head__lead,
    .section-head > .section-text { max-width: 100%; width: 100%; }
    .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .gallery-card--xl,
    .gallery-card--l,
    .gallery-card--m { grid-column: span 1; grid-row: span 1; }
          .lightbox__nav--prev { left: 4px; }
          .lightbox__nav--next { right: 4px; }
          .lightbox__shell { width: 100vw; max-height: 100dvh; }
          .lightbox__header { padding: 1rem 1rem 0.75rem; }
          .lightbox__viewport { height: calc(100dvh - 90px); }
          .lightbox__img { border-radius: 0; }
    .form { padding: 15px; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .footer__inner { flex-direction: column; text-align: center; }
  }

  
  @media print {
    
    *,
    *::before,
    *::after {
      -webkit-print-color-adjust: exact !important;
      print-color-adjust: exact !important;
    }

    
    * { animation: none !important; transition: none !important; }

    
    .reveal,
    .hero__title,
    .hero__sub,
    .hero__body,
    .hero__cta,
    .hero__visual,
    .hero__visual-img,
    [class*="fadeUp"],
    [class*="fadeIn"] {
      opacity: 1 !important;
      transform: none !important;
    }

    
    .reveal:not(.visible) {
      opacity: 1 !important;
      transform: none !important;
    }

    
    .nav__links, .nav__toggle, .hamburger, .btn, .gallery-lightbox, .scroll-indicator { display: none !important; }

    
    .nav {
      position: static !important;
      transform: none !important;
      left: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      box-shadow: none !important;
      padding: 0.75rem 0 !important;
      background: transparent !important;
      backdrop-filter: none !important;
    }
    .nav__inner {
      justify-content: flex-start !important;
    }
    .nav__brand-tag { display: inline-block !important; }
    .nav__logo { height: 48px !important; }

    
    .hero {
      min-height: unset !important;
      padding-top: 1rem !important;
    }

    
    .hero__visual {
      height: 300px !important;
      aspect-ratio: unset !important;
    }

    
    .gallery-card { break-inside: avoid; min-height: 180px; }
    .gallery-card__bg { min-height: 180px; }
  }
