@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:  #1C2B4B;
    --gold:  #B8922A;
    --gold-light: #D4A94A;
    --cream: #F5F0E8;
    --cream-dark: #EDE6D8;
    --text:  #2A2A2A;
    --muted: #6B6B6B;
    --white: #FFFFFF;
  }

  html, body {
    height: 100%;
    background: var(--cream);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  }

  /* ── LAYOUT ── */
  .page {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }

  /* ── HEADER ── */
  .header {
    padding: 2rem 3rem;
    align-items: center;
    background: var(--white);
    border-bottom: 0.5px solid rgba(184,146,42,0.25);
	text-align: center;
  }

  .logo-mark {
    width: 52px;
    height: 52px;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--navy);
    text-transform: uppercase;
  }

  .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }

  /* ── CITY STRIP ── */
  .cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: clamp(220px, 38vw, 440px);
    overflow: hidden;
    position: relative;
  }

  .city-panel {
    position: relative;
    overflow: hidden;
  }

  .city-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,43,75,0.55) 0%, rgba(28,43,75,0.05) 55%);
    pointer-events: none;
  }

  .city-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.8s ease;
  }

  .city-panel:hover img { transform: scale(1.04); }

  .city-divider {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.35);
    z-index: 2;
  }
  .city-divider:nth-child(2) { left: 33.333%; }
  .city-divider:nth-child(3) { left: 66.666%; }

  .city-label {
    position: absolute;
    bottom: 1.2rem;
    left: 0; right: 0;
    text-align: center;
    z-index: 3;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .city-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    flex-shrink: 0;
  }

  /* ── MAIN CONTENT ── */
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--cream);
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .eyebrow::before,
  .eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 0.5px;
    background: var(--gold);
  }

  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
    max-width: 640px;
  }

  h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .subtitle {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: var(--muted);
    letter-spacing: 0.04em;
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 3rem;
  }

  /* ── SEPARATOR ── */
  .sep {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
  }

  .sep-line {
    width: 48px;
    height: 0.5px;
    background: var(--gold);
  }

  .sep-diamond {
    width: 6px; height: 6px;
    border: 0.5px solid var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  /* ── CONTACTS GRID ── */
  .contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0.5px solid rgba(184,146,42,0.3);
    max-width: 700px;
    width: 100%;
    background: var(--white);
  }

  .contact-cell {
    padding: 1.8rem 1.5rem;
    border-right: 0.5px solid rgba(184,146,42,0.3);
  }

  .contact-cell:last-child { border-right: none; }

  .contact-city {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .contact-city svg { flex-shrink: 0; }

  .contact-info {
    font-size: 0.78rem;
    color: var(--navy);
    line-height: 1.9;
    letter-spacing: 0.02em;
  }

  .contact-info a {
    color: var(--navy);
    text-decoration: none;
  }

  .contact-info a:hover { color: var(--gold); }

  /* ── EMAIL CTA ── */
  .email-bar {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.06em;
  }

  .email-bar a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 0.5px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
  }

  .email-bar a:hover { color: var(--gold); border-color: transparent; }

  /* ── FOOTER ── */
  .footer {
    background: var(--navy);
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer-logo-mark {
    width: 32px;
    height: 32px;
    opacity: 0.85;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
  }

  .footer-right {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .header {
      padding: 1.2rem 1.5rem;
    }

    .cities {
      height: clamp(180px, 50vw, 280px);
    }

    .contacts {
      grid-template-columns: 1fr;
      max-width: 300px;
    }

    .contact-cell {
      border-right: none;
      border-bottom: 0.5px solid rgba(184,146,42,0.3);
      padding: 1.4rem 1.5rem;
    }

    .contact-cell:last-child { border-bottom: none; }

    .footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.2rem 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .logo-name { font-size: 1rem; }
    .logo-tagline { font-size: 0.5rem; }
    .logo-mark { width: 40px; height: 40px; }
    .main { padding: 3rem 1.5rem; }
    h1 { font-size: 1.85rem; }
    .email-bar { flex-direction: column; gap: 0.3rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .city-panel:hover img { transform: none; }
  }