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

    body {
      font-family: Georgia, 'Times New Roman', serif;
      background: #faf9f7;
      color: #2c2c2a;
    }

    .page {
      max-width: 680px;
      margin: 0 auto;
      padding: 0 0 5rem;
    }

    /* Hero */
    .hero {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
      background: #2c2c2a;
    }

    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.42);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem;
    }

    .site-name {
      font-family: Arial, sans-serif;
      font-size: 12px;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.65);
      text-transform: lowercase;
      margin-bottom: 0.75rem;
    }

    .hero h1 {
      font-size: 30px;
      font-weight: 400;
      line-height: 1.35;
      color: #ffffff;
    }

    /* Content */
    .content {
      padding: 2.5rem 2rem 0;
    }

    .body-text {
      font-size: 17px;
      line-height: 1.85;
      color: #4a4a46;
      margin-bottom: 1.1rem;
    }

    /* Image row */
    .image-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 2.5rem 0;
    }

    .image-row img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }

    /* Divider */
    .divider {
      border: none;
      border-top: 1px solid #e0ddd6;
      margin: 2rem 0;
    }

    /* Contact form */
    .cta {
      padding: 0 2rem;
    }

    .cta-label {
      font-size: 17px;
      color: #6b6b66;
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-family: Arial, sans-serif;
      font-size: 13px;
      color: #888780;
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      font-family: Georgia, serif;
      font-size: 16px;
      color: #2c2c2a;
      background: #ffffff;
      border: 1px solid #dddbd3;
      border-radius: 8px;
      padding: 10px 14px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #888780;
    }

    .form-group textarea {
      height: 140px;
      resize: vertical;
    }

    .submit-btn {
      margin-top: 0.5rem;
      width: 100%;
      font-family: Arial, sans-serif;
      font-size: 15px;
      color: #2c2c2a;
      background: transparent;
      border: 1px solid #b4b2a9;
      border-radius: 8px;
      padding: 12px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .submit-btn:hover {
      background: #f1efe8;
    }

    /* Footer */
    .footer {
      margin: 3rem 2rem 0;
      font-family: Arial, sans-serif;
      font-size: 12px;
      color: #b4b2a9;
      line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 520px) {
      .hero {
        height: 300px;
      }

      .hero h1 {
        font-size: 22px;
      }

      .image-row {
        grid-template-columns: 1fr;
      }

      .image-row img {
        height: 180px;
      }

      .content,
      .cta {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }

      .footer {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
      }
    }