/* =========================================================
   CONTACT page styles
   ========================================================= */

.c-hero {
  background: var(--bg);
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.c-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(100px, 20vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  text-align: right;
}
.c-hero__tagline {
  margin-top: 30px;
}
.c-hero__tagline p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
  color: var(--white);
  margin: 0;
}

.c-hero__phone {
  display: inline-block;
  margin-top: 25px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 36px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.c-hero__phone:hover {
  opacity: 0.6;
}
.c-hero__email {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 20px);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.c-hero__email:hover {
  opacity: 0.6;
}

/* FORM */
.c-form-section {
  background: var(--bg);
  padding: 60px 40px 100px;
  max-width: 1100px;
  margin-left: auto;
}
.c-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.c-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-form__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.c-form__input {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgb(10,10,10);
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 18px 20px;
  outline: none;
  transition: box-shadow 0.2s ease;
}
.c-form__input::placeholder {
  color: rgb(160,160,160);
}
.c-form__input:focus {
  box-shadow: 0 0 0 2px var(--white);
}
.c-form__textarea {
  resize: vertical;
  min-height: 150px;
}
.c-form__submit {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: opacity 0.2s ease;
}
.c-form__submit:hover {
  opacity: 0.7;
}

/* pill nav fixed bottom center on contact */
.pill-nav--contact {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 10;
}

/* RESPONSIVE */
/* ── TABLET ── */
@media (max-width: 809px) {
  .c-hero { padding: 60px 20px 30px; align-items: flex-start; }
  .c-hero__title { font-size: clamp(80px, 20vw, 180px); text-align: left; }
  .c-hero__tagline p { font-size: 18px; }
  .c-hero__phone { font-size: 20px; }
  .c-form-section { padding: 40px 20px 120px; max-width: 100%; }
  .c-form__input { padding: 14px 16px; font-size: 15px; }
  .pill-nav--contact { bottom: 20px; }
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .c-hero__title { font-size: clamp(48px, 19vw, 80px); }
  .c-form__submit { font-size: 18px; }
}
