


 /* ---------- CONTACT SECTION ---------- */
   .wrap {
    width: 100%;
    padding: 0 40px;
  }

  /* ---------- CONTACT SECTION ---------- */
  .contact {
    padding: 88px 0 96px;
  }
 
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
 
  .contact-heading {
    font-family: 'Hanken Grotesk', serif;
    font-weight: 400;
    font-size: 40px; /* Fixed typo: font: size 40px */
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }
 
  .contact-copy {
    font-family: 'Hanken Grotesk', serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #605E59;
    max-width: 340px;
    margin-bottom: 46px;
  }
 
  .field {
    margin-bottom: 34px;
  }
 
  .field label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #605E59;
    margin-bottom: 14px;
  }
 
  .field input,
  .field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    padding-bottom: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink, #000);
    resize: none;
    outline: none;
    transition: border-color .25s ease;
  }
 
  .field textarea {
    height: 28px;
  }
 
  .field input:focus,
  .field textarea:focus {
    border-color: var(--ink, #000);
  }
 
  .send-btn {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 26px;
    font-size: 12px;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: opacity .2s ease;
  }
 
  .send-btn:hover { opacity: .85; }
  .send-btn svg { width: 13px; height: 13px; }
 
  /* ---------- RIGHT COLUMN ---------- */
  .info-block + .info-block { margin-top: 40px; }
 
  .info-label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9C6C0;
    font-family: 'Hanken Grotesk', serif;
    margin-bottom: 12px;
  }
 
  .info-value a {
    color: #1A1C1C;
    text-decoration: none;
    font-size: 24px;
  }
 
  .social-links {
    display: flex;
    font-family: 'Hanken Grotesk', serif;
    gap: 22px;
  }
 
  .social-links a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
  }
 
  .atelier-photo {
    margin-top: 32px;
    width: 100%;
    aspect-ratio: 4/3.6;
    position: relative;
    overflow: hidden;
  }
 
  /* ---------- LOCATION SECTION ---------- */
  .location {
    background: #E6E2DB;
    padding: 80px 0;
    width: 100%; /* Changed from 1357px for fluid scaling */
    margin: 0 auto 25px;
  }
 
  .location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
  }
 
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Hanken Grotesk', serif;
    color: #C9C6C0;
    margin-bottom: 16px;
  }
 
  .location-title {
    font-family: 'Hanken Grotesk', serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 18px;
  }
 
  .location-copy {
    font-size: 13.5px;
    line-height: 1.7;
    color: #605E59;
    max-width: 360px;
    margin-bottom: 30px;
  }
 
  .location-address {
    font-size: 16px;
    line-height: 1.7;
    color: #1A1C1C;
  }
 
  /* ---------- MAP CONTROLS ---------- */
  .map {
    position: relative;
    background: #e4ddcd;
    aspect-ratio: 16/11.2;
    overflow: hidden;
    width: 100%;
  }
 
  /* Makes the iframe fill the responsive .map container flawlessly */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* ---------- RESPONSIVE BREAKPOINTS ---------- */
  @media (max-width: 992px) {
    .contact-grid { gap: 40px; }
    .location-grid { gap: 40px; }
  }

  @media (max-width: 860px) {
    .wrap { padding: 0 24px; }
    .contact { padding: 56px 0 64px; }
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .location { padding: 56px 0; }
    .location-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-heading { font-size: 28px; }
    .location-title { font-size: 32px; }
    .location-copy { max-width: 100%; } /* Allows text to span naturally on tablets/mobile */
  }
