/* ============================================
   Pablo Zamora — Contact Landing Page
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

/* --- Contact Page Layout --- */
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  min-height: 100vh;
}

/* --- Header --- */
.contact-header {
  margin-bottom: 64px;
}

.title-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.title-contact {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #999;
}

/* --- Content Grid --- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* --- Left Column: Info --- */
.contact-description {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.55;
  color: #1a1a1a;
  max-width: 380px;
  margin-bottom: 56px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-block {
  padding: 24px 0;
  border-top: 1px solid #e8e8e8;
}

.info-block:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.info-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.info-value {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #1a1a1a;
}

/* --- Right Column: Form --- */
.form-heading {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #1a1a1a;
}

.form-group textarea {
  min-height: 100px;
  line-height: 1.6;
}

/* --- Send Button --- */
.btn-send {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #1a1a1a;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 8px;
}

.btn-send:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-send.sent {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .contact-page {
    padding: 48px 28px 60px;
  }

  .contact-header {
    margin-bottom: 48px;
  }

  .title-name {
    font-size: 2.0rem;
  }

  .title-contact {
    font-size: 1.1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-description {
    max-width: 100%;
    font-size: 1.35rem;
  }

  .btn-send {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 36px 20px 48px;
  }

  .title-name {
    font-size: 1.5rem;
  }

  .title-contact {
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }

  .contact-description {
    font-size: 1.2rem;
  }
}