/* ============================================================
   CONTACT.CSS — Contact / Let's Build page
   ============================================================ */

.contact-page {
  --contact-black: #0a0a0a;
  --contact-charcoal: #161210;
  --contact-brown: #2a1f18;
  --contact-brown-mid: #3d2e24;
  --contact-cream: #ebe4d8;
  --contact-cream-deep: #e0d6c6;
  --contact-ink: #1c1510;
  --contact-muted: #5c534a;
  --contact-gold: #c9a24a;
  --contact-gold-light: #e0b85c;
  --contact-gold-deep: #a8893a;
  --contact-orange: #d68945;
  --contact-rose: #c9a08e;
  --contact-rose-light: #d7b1a1;
  --contact-font: Arial, Helvetica, sans-serif;
  --contact-script: "Great Vibes", cursive;

  color: var(--contact-ink);
  font-family: var(--contact-font);
  background-color: var(--contact-black);
  overflow: visible;
}

.contact-main {
  padding-top: 64px;
  overflow: visible;
}

.contact-page .site-header.is-stuck {
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid rgba(201, 162, 74, 0.22);
}

.contact-page section {
  min-height: 0;
  scroll-snap-align: none;
}

/* Reveal */
[data-contact-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-contact-anim].contact-anim--visible {
  opacity: 1;
  transform: none;
}

/* Shared */
.contact-section-title {
  font-family: var(--contact-font);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--contact-ink);
  margin: 0 0 1.25rem;
}

.contact-section-title--light {
  color: #fff;
  text-align: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--contact-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a120c;
  background: linear-gradient(135deg, #e0b85c 0%, #c9a24a 48%, #a8893a 100%);
  border: 1.5px solid var(--contact-gold-deep);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(168, 137, 58, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.contact-btn:hover,
.contact-btn:focus {
  color: #1a120c;
  background: linear-gradient(135deg, #ebc66a 0%, #d4ad55 48%, #b89642 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 137, 58, 0.36);
}

.contact-btn--hero {
  color: #fff;
  background: linear-gradient(90deg, #6b4a28 0%, #a8893a 28%, #d4af55 58%, #c9a24a 78%, #8a6e32 100%);
  border: 1px solid rgba(224, 184, 92, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  padding: 1.05rem 2.1rem;
  gap: 0.75rem;
}

.contact-btn--hero:hover,
.contact-btn--hero:focus {
  color: #fff;
  background: linear-gradient(90deg, #7a5630 0%, #b89642 28%, #e0b85c 58%, #d4af55 78%, #9b7b43 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.contact-btn__play {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.15rem;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.45));
}

/* ============================================================
   1. Hero
   ============================================================ */

.contact-hero {
  position: relative;
  min-height: calc(100vh - 64px) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #000;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.82) 34%,
    rgba(0, 0, 0, 0.35) 58%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

/* Vertical padding only — this element is also the .container, so its own
   side gutters keep the copy off the screen edge */
.contact-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-hero__copy {
  max-width: 36rem;
  color: #fff;
  margin-bottom: auto;
  padding-top: clamp(2rem, 6vh, 4rem);
}

.contact-hero__title {
  font-family: var(--contact-font);
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.contact-hero__title-accent,
.contact-hero__title-main {
  display: block;
}

.contact-hero__title-accent {
  color: var(--contact-rose-light);
}

.contact-hero__title-main {
  color: #fff;
}

.contact-hero__eyebrow {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--contact-rose);
  margin: 0 0 1.15rem;
  letter-spacing: 0.01em;
}

.contact-hero__lead {
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.2rem;
  max-width: 32rem;
}

.contact-hero__script {
  font-family: var(--contact-script);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--contact-rose-light);
  margin: 0.45rem 0 0;
  line-height: 1.2;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vh, 3.5rem);
  width: 100%;
}

.contact-hero__actions .contact-btn--hero {
  flex-shrink: 0;
}

.contact-hero__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.contact-hero__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem clamp(0.85rem, 2.2vw, 1.75rem);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-hero__logo-item:first-child {
  padding-left: 0;
}

.contact-hero__logo-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.contact-hero__logo-item img {
  height: clamp(44px, 5.5vw, 64px);
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

/* ============================================================
   2. Quote
   ============================================================ */

.contact-quote {
  background-color: #f2d8c7;
  background-image:
    linear-gradient(90deg, rgba(242, 216, 199, 0.08) 0%, rgba(242, 216, 199, 0.76) 66%, rgba(242, 216, 199, 0.92) 100%),
    url("../images/contact-bg-05.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.contact-quote__inner {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.contact-quote__text {
  position: relative;
  display: inline-block;
  font-family: var(--contact-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  line-height: 1.15;
  color: #111;
  margin: 0 0 1.9rem;
  padding: 0 2.25rem;
}

.contact-quote__line {
  display: block;
}

.contact-quote__line--accent {
  color: #b06f5a;
}

.contact-quote__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.75;
  color: #b06f5a;
  position: absolute;
}

.contact-quote__mark--open {
  left: -0.5rem;
  top: -0.25rem;
}

.contact-quote__mark--close {
  right: -0.9rem;
  bottom: -0.45rem;
}

.contact-quote__body {
  font-size: clamp(1rem, 1.45vw, 2rem);
  line-height: 1.3;
  color: #121212;
  margin: 0 auto 1.7rem;
  max-width: 46rem;
}

.contact-quote__script {
  font-family: var(--contact-script);
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: #694236;
  margin: 0;
}

/* ============================================================
   3. Featured say
   ============================================================ */

.contact-say {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  overflow: hidden;
  background: #000;
}

.contact-say__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-say__header {
  text-align: center;
  max-width: 68rem;
  margin: 0 auto 2.35rem;
}

.contact-say__title {
  font-family: var(--contact-font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3.05rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--contact-rose-light);
  margin: 0 0 1.05rem;
}

.contact-say__intro {
  font-size: clamp(1rem, 1.4vw, 1.05rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}

.contact-say__grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: clamp(0.65rem, 1.4vw, 0.9rem);
}

.contact-say__card {
  display: grid;
  grid-template-columns: clamp(160px, 17vw, 220px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  background: #343230;
  border: 1px solid rgba(173, 140, 110, 0.3);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-say__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--contact-orange), transparent);
  border-radius: 2px;
  z-index: 2;
}

.contact-say__photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #35322f 0%, #2b2927 100%);
  padding: 1rem 0 0;
  min-height: 100%;
}

.contact-say__photo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.contact-say__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.15rem, 2.2vw, 1.65rem) clamp(1.35rem, 2.5vw, 1.85rem) clamp(0.85rem, 1.8vw, 1.25rem);
  color: #fff;
}

.contact-say__mark {
  display: block;
  width: clamp(88px, 9.2vw, 122px);
  height: auto;
  margin-bottom: 0.55rem;
  opacity: 0.72;
  mix-blend-mode: screen;
  filter: grayscale(100%) brightness(1.08) contrast(0.9) saturate(0.35);
}

.contact-say__quote {
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.35;
  color: rgba(235, 235, 235, 0.82);
  margin: 0 0 1.25rem;
  flex: 1;
}

.contact-say__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.95rem;
  margin-top: auto;
}

.contact-say__meta h3 {
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--contact-orange);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.contact-say__meta p {
  font-size: 0.82rem;
  color: rgba(228, 210, 178, 0.78);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   4. Voice that travels
   ============================================================ */

.contact-voice {
  background: var(--contact-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact-voice__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-voice__sub {
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: #a75d48;
  margin: 0;
  font-weight: 700;
}

.contact-voice__swiper {
  padding: 0.15rem 0 2.35rem;
}

.contact-voice__swiper .swiper-wrapper {
  align-items: stretch;
}

.contact-voice__swiper .swiper-slide {
  height: auto;
}

.contact-voice__pagination.swiper-pagination {
  bottom: 0;
}

.contact-voice__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1.5px solid #8a5a22;
  background-color: transparent;
  opacity: 1;
}

.contact-voice__pagination .swiper-pagination-bullet-active {
  background-color: #8a5a22;
}

.contact-voice__nav {
  width: 2.4rem;
  height: 2.4rem;
  margin-top: -1.2rem;
  color: #fff;
  background: rgba(138, 90, 34, 0.85);
  border-radius: 999px;
}

.contact-voice__nav::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-voice__nav.swiper-button-disabled {
  opacity: 0.28;
}

.contact-voice__card {
  background: #f8f4ef;
  border: 1px solid #d6cabc;
  border-radius: 10px;
  padding: 7rem 2rem 1rem;
  text-align: left;
  position: relative;
  height: 100%;
  min-height: 610px;
  margin-top: 40px;
}

.contact-voice__card img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  display: block;
  border: 4px solid #ab9a75;
  position: absolute;
  top: -40px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) !important;
}

.contact-voice__card p {
  font-size: clamp(0.96rem, 1.2vw, 1.18rem);
  line-height: 1.25;
  color: #1f1f1f;
  margin: 0 0 0.95rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 14;
  overflow: hidden;
}

.contact-voice__card h3 {
  margin: 0 0 0.15rem;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.15;
  color: #8a4f1f;
  font-weight: 700;
}

.contact-voice__card h4 {
  margin: 0;
  font-size: clamp(0.95rem, 1.12vw, 1.15rem);
  line-height: 1.2;
  color: #8a4f1f;
  font-weight: 500;
}

.contact-voice__more {
  text-align: center;
  margin: 1rem 0 0;
}

.contact-voice__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--contact-brown-mid);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(61, 46, 36, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-voice__more a:hover {
  color: var(--contact-orange);
  border-color: var(--contact-orange);
}

/* ============================================================
   5. Bridge
   ============================================================ */

.contact-bridge {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
  background: var(--contact-black);
}

.contact-bridge__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
}

.contact-bridge__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.55);
}

.contact-bridge__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  color: #fff;
}

.contact-bridge__titles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: 1.9rem;
}

.contact-bridge__titles h2 {
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.12;
  margin: 0;
  color: #f1d0c2;
}

.contact-bridge__copy {
  font-size: clamp(1rem, 1.6vw, 2rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  max-width: 58rem;
}

.contact-bridge__copy span {
  display: block;
}

.contact-bridge__copy-accent {
  color: #bc7a67;
}

/* ============================================================
   6. Work together
   ============================================================ */

.contact-work {
  background: var(--contact-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact-work__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-work__header .contact-section-title {
  margin-bottom: 0.65rem;
}

.contact-work__sub {
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.45;
  font-weight: 500;
  color: #a75d48;
  margin: 0 auto;
  max-width: 42rem;
}

.contact-work__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: 0;
}

.contact-work__card {
  background: linear-gradient(160deg, #3d1409 0%, #7f3900 100%);
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2rem) 1.35rem 1.75rem;
  text-align: center;
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-work__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 74, 0.55);
  box-shadow: 0 14px 32px rgba(26, 18, 12, 0.28);
}

.contact-work__card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1.1rem;
  display: block;
}

.contact-work__card h3 {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--contact-gold-light);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.contact-work__card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ============================================================
   7. Spectrum + choices
   ============================================================ */

.contact-spectrum {
  --spectrum-copper: #d18a52;
  --spectrum-white: #ffffff;
  --spectrum-black: #000000;
  --spectrum-bg: #0e0e0e;

  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
  background: var(--spectrum-bg);
}

.contact-spectrum__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  opacity: 0.45;
  z-index: 0;
}

.contact-spectrum__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.55) 0%, rgba(14, 14, 14, 0.92) 100%);
}

.contact-spectrum__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.contact-spectrum__header {
  max-width: 720px;
}

.contact-spectrum__title {
  font-family: var(--contact-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--spectrum-white);
  margin: 0 0 14px;
}

.contact-spectrum__sub {
  font-family: var(--contact-font);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--spectrum-copper);
  margin: 0;
}

.contact-spectrum__visual {
  width: 100%;
  max-width: 520px;
}

.contact-spectrum__visual img {
  width: min(100%, 480px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(209, 138, 82, 0.28));
}

.contact-spectrum__prompt {
  width: 100%;
  max-width: 920px;
}

.contact-spectrum__banner {
  display: inline-block;
  background: var(--spectrum-copper);
  color: var(--spectrum-black);
  font-family: var(--contact-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  margin: 0 auto 28px;
  border-radius: 999px;
}

.contact-spectrum__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-spectrum__choice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  font-family: var(--contact-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--spectrum-copper);
  background: transparent;
  border: 1px solid var(--spectrum-copper);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-spectrum__choice:hover {
  border-color: var(--spectrum-copper);
  color: var(--spectrum-copper);
  background: rgba(209, 138, 82, 0.08);
  box-shadow: 0 0 16px rgba(209, 138, 82, 0.16);
}

.contact-spectrum__choice.is-active {
  background: rgba(209, 138, 82, 0.14);
  border-color: var(--spectrum-copper);
  color: var(--spectrum-white);
  box-shadow: 0 0 20px rgba(209, 138, 82, 0.22);
}

.contact-spectrum__note {
  margin: 22px auto 0;
  max-width: 560px;
  font-family: var(--contact-font);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--spectrum-copper);
}

/* ============================================================
   8. Form
   ============================================================ */

.contact-form-section {
  --form-copper: #c48b4f;
  --form-label: #e9b878;
  --form-border: #8d6f4f;
  --form-placeholder: #cbb9a4;
  --form-field-bg: rgba(255, 255, 255, 0.07);

  background: #000;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.contact-form-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.contact-form-section__intro {
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-form-section__title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--form-copper);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.contact-form-section__intro > p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #fff;
  margin: 0 0 0.9rem;
  max-width: 28rem;
}

.contact-form-section__visual {
  margin-top: auto;
  position: relative;
  min-height: 240px;
  padding-top: 1.5rem;
}

.contact-form-section__portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 280px);
  pointer-events: none;
}

.contact-form-section__portrait img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.85;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 55%, transparent 100%);
}

.contact-form-section__sign {
  font-family: var(--contact-script);
  font-size: clamp(2rem, 3.2vw, 2.75rem) !important;
  color: var(--form-copper) !important;
  margin: 0.5rem 0 0;
  line-height: 1;
}

.contact-form {
  background: transparent;
}

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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0;
}

.contact-form__field--full {
  margin-bottom: 1rem;
}

.contact-form__field--select span,
.contact-form__reach legend {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--form-label);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: var(--contact-font);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--form-field-bg);
  border: 1px solid var(--form-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--form-placeholder);
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form__field input:hover,
.contact-form__field select:hover,
.contact-form__field textarea:hover {
  border-color: var(--form-label);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--form-label);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 2px rgba(233, 184, 120, 0.3);
}

.contact-form__field select {
  appearance: none;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--form-placeholder);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e9b878' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__field select:valid,
.contact-form__field select.has-value {
  color: #fff;
}

.contact-form__field select option {
  background: #111;
  color: #fff;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-form__reach {
  border: 0;
  margin: 0.35rem 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.75rem;
}

.contact-form__reach legend {
  width: 100%;
  margin-bottom: 0.75rem;
  float: none;
  padding: 0;
}

.contact-form__reach label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--form-label);
  cursor: pointer;
}

.contact-form__reach input[type="radio"] {
  appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  border: 1.5px solid var(--form-label);
  border-radius: 50%;
  background: var(--form-field-bg);
  position: relative;
  margin: 0;
}

.contact-form__reach input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--form-label);
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.contact-form__note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.contact-btn--submit {
  margin-top: 0;
  width: auto;
  min-width: 220px;
  max-width: none;
}

/* ============================================================
   9. Footer
   ============================================================ */

.contact-footer {
  background: #000;
  padding: 0;
}

.contact-footer__bar {
  background: #f2eae1;
  padding: 1.75rem 0;
}

.contact-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 2rem);
  min-width: 0;
}

.contact-footer__bar-brand {
  height: clamp(52px, 5.5vw, 78px);
  width: auto;
  max-width: 160px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-footer__bar-tag {
  font-family: var(--contact-font);
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #111;
  margin: 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.contact-footer__bar-logo {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: clamp(42px, 5vw, 62px);
  object-fit: contain;
  object-position: right center;
}

.contact-footer__closing-wrap {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  margin-bottom: 0;
  overflow: hidden;
}

.contact-footer__closing-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
  z-index: 0;
}

.contact-footer__closing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 42%,
    rgba(0, 0, 0, 0.08) 62%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.contact-footer__closing-wrap .container {
  position: relative;
  z-index: 1;
}

.contact-footer__closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.contact-footer__headline {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.18;
  color: #d5b8af;
  margin: 0;
}

.contact-footer__headline--end {
  font-size: 22px;
  line-height: 1.2;
}

.contact-footer__body {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: #fff;
  margin: 0;
  max-width: 22rem;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 991px) {
  .contact-hero__bg {
    background-position: 70% center;
  }

  .contact-hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(8, 6, 4, 0.55) 0%,
      rgba(8, 6, 4, 0.78) 45%,
      rgba(8, 6, 4, 0.94) 100%
    );
  }

  .contact-hero__inner {
    justify-content: flex-end;
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-hero__copy {
    margin-bottom: 0;
    padding-top: 0;
  }

  .contact-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-say__grid,
  .contact-work__grid {
    grid-template-columns: 1fr;
  }

  .contact-say__card {
    grid-template-columns: clamp(150px, 28vw, 210px) minmax(0, 1fr);
    min-height: 220px;
  }

  .contact-voice__swiper {
    max-width: 31rem;
    margin: 0 auto;
  }

  .contact-voice__card {
    min-height: 0;
  }

  .contact-voice__card p {
    font-size: 1rem;
    line-height: 1.35;
  }

  .contact-voice__card h3 {
    font-size: 1.2rem;
  }

  .contact-voice__card h4 {
    font-size: 1.02rem;
  }

  .contact-bridge__titles,
  .contact-form-section__inner,
  .contact-form__row,
  .contact-footer__closing {
    grid-template-columns: 1fr;
  }

  .contact-footer__headline {
    font-size: 24px;
  }

  .contact-footer__headline--end {
    font-size: 20px;
  }

  .contact-footer__body {
    font-size: 14px;
    max-width: none;
  }

  .contact-footer__closing-bg {
    background-position: center center;
  }

  .contact-footer__bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
  }

  .contact-footer__bar-brand {
    height: 58px;
    max-width: 140px;
  }

  .contact-footer__bar-tag {
    font-size: 16px;
    white-space: normal;
  }

  .contact-footer__bar-logo {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 72px;
    object-position: center;
  }

  .contact-form-section__visual {
    min-height: 220px;
  }

  .contact-form-section__portrait {
    width: min(48%, 220px);
  }

  .contact-spectrum__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-section__portrait {
    max-width: 220px;
  }

  .contact-btn--submit {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    height: auto;
    min-height: 100vh;
  }

  .contact-hero__logo-item {
    padding: 0.25rem 0.7rem;
  }

  .contact-hero__logo-item img {
    height: 38px;
    max-width: 110px;
  }

  .contact-say {
    min-height: 0;
  }

  .contact-say__card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-say__photo {
    padding-top: 1.25rem;
    max-height: 220px;
  }

  .contact-say__photo img {
    max-width: 180px;
  }

  .contact-say__card::before {
    top: 0;
    bottom: auto;
    left: 12%;
    right: 12%;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--contact-orange), transparent);
  }

  .contact-voice__nav {
    display: none;
  }

  .contact-voice__card {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .contact-work__grid {
    grid-template-columns: 1fr;
  }

  .contact-spectrum__choices {
    grid-template-columns: 1fr;
  }

  .contact-btn--submit {
    max-width: none;
  }

  .contact-footer__bar {
    padding: 1.35rem 0;
  }

  .contact-footer__bar-brand {
    height: 52px;
    max-width: 120px;
  }

  .contact-footer__bar-tag {
    font-size: 14px;
  }

  .contact-footer__bar-logo {
    max-height: 64px;
  }

  .contact-quote__text {
    padding: 0;
  }

  .contact-quote__mark--open {
    left: -0.2rem;
    top: -0.1rem;
  }

  .contact-quote__mark--close {
    right: -0.3rem;
    bottom: -0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-contact-anim] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .contact-btn:hover,
  .contact-work__card:hover,
  .contact-spectrum__choice:hover {
    transform: none;
  }
}
