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

  :root {
    --cream: #ffffff;
    --dark: #111111;
    --brown: #e66e6e;
    --gold: #ea556f;
    --gold-light: #ffffff;

    --bg: #ffffff;
    --bg-dark: #111111;
    --text: #1a1a1a;
    --muted: rgba(255, 255, 255, 0.72);
    --accent: #e66e6e;
    --accent-2: #ea556f;
    --line: #e8e8e8;
    --font: "Manrope", system-ui, -apple-system, sans-serif;
    --max: 1200px;
    --header-h: 72px;

  }

  body {
    background: var(--cream);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    /* padding: 4rem 1.5rem; */
  }

  .container {
    max-width: 720px;
    margin: 0 auto;
  }

  .header {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.7s ease both;
  }

  .header-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    margin-top: 10vw;
  }

  .header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  .header-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.25rem auto 0;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  @media (max-width: 520px) {
    .cards-grid { grid-template-columns: 1fr; }
  }

  .card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: 2px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.7s ease both;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .card:nth-child(2) { animation-delay: 0.1s; }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card:hover {
    box-shadow: 0 8px 32px rgba(107, 76, 59, 0.1);
    transform: translateY(-2px);
  }

  .card:hover::before { opacity: 1; }

  .card-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.01em;
    margin-bottom: 0.25rem;
  }

  .card-type {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .card-divider {
    width: 100%;
    height: 0.5px;
    background: var(--border);
    margin-bottom: 1.25rem;
  }

  .info-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
  }

  .info-row:last-child { margin-bottom: 0; }

  .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
  }

  .info-text {
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.55;
    font-weight: 300;
  }

  .info-text .hours-label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }

  .info-text a {
    color: var(--brown);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 0.5px solid transparent;
    transition: border-color 0.2s;
  }
  .info-text a:hover { border-color: var(--brown); }

  .delivery-banner {
    background: var(--dark);
    border-radius: 2px;
    padding: 2rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    animation: fadeUp 0.7s 0.2s ease both;
    transition: box-shadow 0.3s;
    margin-bottom: 5vw;
  }

  .delivery-banner:hover {
    box-shadow: 0 8px 32px rgba(26, 22, 18, 0.2);
  }

  .delivery-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0.5px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
  }

  .delivery-body { flex: 1; }

  .delivery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
  }

  .delivery-sub {
    font-size: 12.5px;
    color: rgba(245, 240, 232, 0.55);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .delivery-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .delivery-phone {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .delivery-phone:hover { color: var(--gold); }

  .delivery-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(201,169,110,0.4);
  }

  .tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffff;
    border: 0.5px solid rgba(201,169,110,0.35);
    color: #e66e6e;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
  }
  .tg-btn:hover { background: rgba(201,169,110,0.22); color: var(--gold); }

  @media (max-width: 520px) {
    .delivery-banner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .delivery-icon-wrap { display: none; }
  }

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