.location {
      background: var(--color-cream);
    }

.location-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
      gap: 34px;
      align-items: stretch;
      min-width: 0;
    }

.map-placeholder {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      min-height: 440px;
      aspect-ratio: 16 / 9;
    }

.map-placeholder iframe {
      display: block;
      width: 100% !important;
      height: 100% !important;
      max-width: 100%;
      min-width: 0;
      min-height: inherit;
    }

.map-placeholder__iframe {
      border: 0;
      width: 100%;
      height: 100%;
    }

.address-card {
      padding: 42px;
      color: var(--color-white);
      background:
        linear-gradient(rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.92)),
        linear-gradient(135deg, #111, #5f432b);
      box-shadow: var(--shadow-soft);
    }

.address-card h2 {
      margin-bottom: 24px;
      font-size: 38px;
    }

.address-card h3 {
      margin: 28px 0 7px;
      color: #8f1f1f;
      font-family: "Inter", Arial, sans-serif;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

.address-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
    }
