:root {
      --black: #0A0A0A;
      --off-black: #111111;
      --dark: #1A1A1A;
      --charcoal: #2C2C2C;
      --mid: #555555;
      --light-grey: #AAAAAA;
      --silver: #CCCCCC;
      --off-white: #F5F5F0;
      --white: #FFFFFF;
      --cream: #FAFAF8;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* html styles removed */

    /* body styles removed */

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--black);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--charcoal);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 80px;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-logo img {
      height: 42px;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--silver);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--black) !important;
      background: var(--white);
      padding: 10px 24px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .nav-cta:hover {
      background: var(--off-white) !important;
      color: var(--black) !important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: var(--black);
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.8s ease;
      filter: grayscale(100%) brightness(0.35);
    }

    .hero-slide.active {
      opacity: 1;
    }

    /* Hotel hero images via Unsplash — grayscale applied via CSS */
    .hero-slide:nth-child(1) {
      background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1800&q=80');
      background-size: cover;
      background-position: center;
    }

    .hero-slide:nth-child(2) {
      background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1800&q=80');
      background-size: cover;
      background-position: center;
    }

    .hero-slide:nth-child(3) {
      background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1800&q=80');
      background-size: cover;
      background-position: center;
    }

    .hero-slide:nth-child(4) {
      background-image: url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1800&q=80');
      background-size: cover;
      background-position: center;
    }

    .hero-slide:nth-child(5) {
      background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1800&q=80');
      background-size: cover;
      background-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.7) 100%);
      z-index: 1;
    }

    /* Fine diagonal grain */
    .hero-grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 860px;
      padding: 0 32px;
    }

    .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(44px, 6.5vw, 88px);
      font-weight: 700;
      letter-spacing: 0.01em;
      text-transform: none;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.0;
      animation: fadeUp 1s ease 0.3s both;
    }

    .hero-logo-img {
      width: 340px;
      max-width: 80vw;
      margin-bottom: 32px;
      animation: fadeUp 1.2s ease 0.1s both;
    }

    .hero-divider {
      width: 48px;
      height: 1px;
      background: rgba(255, 255, 255, 0.4);
      margin: 0 auto 32px;
      animation: fadeUp 1s ease 0.5s both;
    }

    .hero-headline {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(10px, 1.1vw, 12px);
      font-weight: 500;
      line-height: 1.8;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 28px;
      animation: fadeUp 1.2s ease 0.6s both;
    }

    .hero-headline em {
      font-style: normal;
      color: rgba(255, 255, 255, 0.55);
    }

    .hero-tagline {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--light-grey);
      margin-bottom: 28px;
      margin-top: -8px;
    }

    .hero-sub {
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 0.06em;
      line-height: 1.9;
      color: var(--light-grey);
      margin-bottom: 48px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeUp 1s ease 0.9s both;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1s ease 1.1s both;
    }

    .btn-primary {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--white);
      color: var(--black);
      padding: 15px 36px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      border: 1px solid var(--white);
    }

    .btn-primary:hover {
      background: transparent;
      color: var(--white);
    }

    .btn-secondary {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      padding: 15px 36px;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.35);
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--white);
    }

    /* Slide indicators */
    .hero-indicators {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      gap: 10px;
    }

    .hero-indicators span {
      width: 24px;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
    }

    .hero-indicators span.active {
      background: var(--white);
      width: 40px;
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 36px;
      right: 48px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }

    .scroll-line {
      width: 36px;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: var(--white);
      animation: scrollLine 2s ease infinite 2s;
    }

    @keyframes scrollLine {
      0% {
        left: -100%;
      }

      100% {
        left: 100%;
      }
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--white);
      color: var(--black);
      height: 44px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .ticker-track {
      display: flex;
      gap: 0;
      animation: ticker 35s linear infinite;
      white-space: nowrap;
    }

    .ticker-item {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0 40px;
      color: var(--black);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .ticker-dot {
      width: 4px;
      height: 4px;
      background: var(--charcoal);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ── STATS BAND ── */
    .stats-band {
      background: var(--off-black);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 64px 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
    }

    .stat-item {
      text-align: center;
      padding: 0 32px;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: rgba(255, 255, 255, 0.1);
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 300;
      line-height: 1;
      color: var(--white);
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--light-grey);
    }

    /* ── SECTIONS ── */
    section {
      position: relative;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--mid);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 24px;
    }

    .section-title em {
      font-style: italic;
    }

    .section-/* body styles removed */

    /* ── PHOTO MOSAIC ── */
    .photo-mosaic {
      padding: 100px 0;
      background: var(--off-black);
    }

    .mosaic-header {
      max-width: 1200px;
      margin: 0 auto 56px;
      padding: 0 48px;
    }

    .mosaic-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 280px 280px;
      gap: 4px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .mosaic-item {
      overflow: hidden;
      position: relative;
    }

    .mosaic-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) brightness(0.8);
      transition: filter 0.6s ease, transform 0.6s ease;
    }

    .mosaic-item:hover img {
      filter: grayscale(80%) brightness(1);
      transform: scale(1.04);
    }

    .mosaic-item .photo-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .mosaic-item:hover .photo-label {
      opacity: 1;
    }

    /* Mosaic layout */
    .mosaic-item:nth-child(1) {
      grid-column: 1 / 5;
      grid-row: 1;
    }

    .mosaic-item:nth-child(2) {
      grid-column: 5 / 8;
      grid-row: 1;
    }

    .mosaic-item:nth-child(3) {
      grid-column: 8 / 13;
      grid-row: 1;
    }

    .mosaic-item:nth-child(4) {
      grid-column: 1 / 4;
      grid-row: 2;
    }

    .mosaic-item:nth-child(5) {
      grid-column: 4 / 8;
      grid-row: 2;
    }

    .mosaic-item:nth-child(6) {
      grid-column: 8 / 10;
      grid-row: 2;
    }

    .mosaic-item:nth-child(7) {
      grid-column: 10 / 13;
      grid-row: 2;
    }

    /* ── WHO WE ARE ── */
    .who-we-are {
      padding: 120px 0;
      background: var(--black);
    }

    .pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 72px;
    }

    .pillar {
      background: var(--black);
      padding: 48px 36px;
      position: relative;
      transition: background 0.3s;
    }

    .pillar:hover {
      background: var(--off-black);
    }

    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.07);
      line-height: 1;
      margin-bottom: 24px;
    }

    .pillar-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .pillar-/* body styles removed */

    /* ── SERVICES ── */
    .services {
      padding: 120px 0;
      background: var(--off-black);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 72px;
    }

    .service-card {
      background: var(--off-black);
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: default;
    }

    .service-card:hover {
      background: var(--dark);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 28px;
      opacity: 0.6;
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
    }

    .service-/* body styles removed */

    .service-link {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--silver);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: color 0.2s, gap 0.2s;
    }

    .service-link:hover {
      color: var(--white);
      gap: 18px;
    }

    .service-link::after {
      content: '→';
      font-size: 14px;
      font-weight: 300;
    }

    /* ── GLOBAL REACH ── */
    .global-reach {
      padding: 120px 0;
      background: var(--black);
    }

    .reach-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 72px;
      align-items: start;
    }

    .offices-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .office-item {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .office-city {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--white);
    }

    .office-country {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .markets-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .market-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--light-grey);
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      transition: border-color 0.2s, color 0.2s;
    }

    .market-tag:hover {
      border-color: rgba(255, 255, 255, 0.3);
      color: var(--white);
    }

    /* ── HERO PHOTO STRIP ── */
    .photo-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 320px;
      gap: 2px;
    }

    .strip-photo {
      overflow: hidden;
      position: relative;
    }

    .strip-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) brightness(0.65);
      transition: filter 0.5s, transform 0.5s;
    }

    .strip-photo:hover img {
      filter: grayscale(60%) brightness(0.85);
      transform: scale(1.05);
    }

    .strip-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 20px 16px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ── MANDATES ── */
    .mandates {
      padding: 120px 0;
      background: var(--off-black);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mandates-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 72px;
    }

    .mandate-card {
      background: var(--off-black);
      padding: 48px 40px;
      position: relative;
      transition: background 0.3s;
    }

    .mandate-card:hover {
      background: var(--dark);
    }

    .mandate-badge {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      padding: 5px 12px;
      display: inline-block;
      margin-bottom: 24px;
    }

    .mandate-origin {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 12px;
    }

    .mandate-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .mandate-details {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.9;
      color: var(--mid);
    }

    .mandate-budget {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      color: var(--white);
    }

    /* ── HOW WE WORK ── */
    .process {
      padding: 120px 0;
      background: var(--black);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 72px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(10% + 14px);
      right: calc(10% + 14px);
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 0;
    }

    .step {
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      color: var(--white);
      margin: 0 auto 24px;
      background: var(--black);
      transition: border-color 0.3s, background 0.3s;
    }

    .step:hover .step-num {
      border-color: var(--white);
      background: var(--white);
      color: var(--black);
    }

    .step-title {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 10px;
    }

    .step-/* body styles removed */

    /* ── TRANSACTIONS ── */
    .transactions {
      padding: 120px 0;
      background: var(--off-black);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .transactions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 72px;
    }

    .tx-card {
      background: var(--off-black);
      padding: 48px 48px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .tx-card:hover {
      background: var(--dark);
    }

    .tx-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      filter: grayscale(100%) brightness(0.6);
      margin-bottom: 28px;
      transition: filter 0.5s;
    }

    .tx-card:hover .tx-img {
      filter: grayscale(70%) brightness(0.75);
    }

    .tx-location {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 8px;
    }

    .tx-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
    }

    .tx-detail {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
    }

    .tx-value {
      margin-top: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--white);
    }

    /* ── WHY US ── */
    .why-us {
      padding: 120px 0;
      background: var(--black);
    }

    .differentiators {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 72px;
    }

    .diff-item {
      background: var(--black);
      padding: 40px 28px;
      transition: background 0.3s;
    }

    .diff-item:hover {
      background: var(--off-black);
    }

    .diff-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .diff-/* body styles removed */

    .why-statement {
      margin-top: 1px;
      background: var(--white);
      padding: 56px 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: var(--black);
      text-align: center;
      max-width: 760px;
    }

    /* ── CONTACT ── */
    .contact {
      padding: 120px 0;
      background: var(--off-black);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 72px;
      align-items: start;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 300;
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: rgba(255, 255, 255, 0.35);
    }

    .form-field select option {
      background: var(--dark);
    }

    .form-field textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-submit {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--white);
      color: var(--black);
      border: none;
      padding: 16px 40px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      align-self: flex-start;
      border: 1px solid var(--white);
    }

    .form-submit:hover {
      background: transparent;
      color: var(--white);
    }

    .offices-contact {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-office {
      padding: 24px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .co-city {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 6px;
    }

    .co-detail {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--mid);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 56px 48px 36px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo img {
      height: 36px;
      filter: invert(1) brightness(1);
      margin-bottom: 16px;
    }

    .footer-tagline {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--mid);
    }

    .footer-col h4 {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--silver);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-col ul a {
      font-size: 12px;
      font-weight: 300;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 11px;
      font-weight: 300;
      color: var(--mid);
    }

    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav {
        padding: 0 24px;
      }

      .nav-links {
        display: none;
      }

      .mosaic-grid {
        grid-template-rows: 200px 200px;
      }

      .pillars,
      .differentiators {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps {
        grid-template-columns: repeat(3, 1fr);
      }

      .services-grid,
      .transactions-grid {
        grid-template-columns: 1fr;
      }

      .reach-layout,
      .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .mandates-grid {
        grid-template-columns: 1fr;
      }

      .stats-band {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .photo-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 480px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .section-inner {
        padding: 0 24px;
      }
    }
body.elementor-editor-active .reveal { opacity: 1 !important; transform: none !important; }
