/* ===== CONTACT.CSS START: PREMIUM CONTACT PAGE ===== */

.contact-page {
  overflow-x: hidden;
  background: #f7f2e8;
}

.contact-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  isolation: isolate;
  background: #263326;
}

.contact-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 30, 22, 0.82), rgba(19, 30, 22, 0.5) 42%, rgba(19, 30, 22, 0.18)),
    linear-gradient(180deg, rgba(10, 16, 12, 0.04), rgba(10, 16, 12, 0.24));
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 17vh 0 82px;
  color: #fffaf1;
}

.contact-hero__content h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 8vw, 8.4rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.contact-hero__content h1 span {
  display: block;
  color: var(--brass-soft);
  font-style: italic;
  font-weight: 600;
}

.contact-hero__content p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.24;
}

/* ===== CONTACT ARRIVAL HANDOFF START ===== */
.is-contact-arriving .site-header,
.is-contact-arriving .contact-hero__content {
  opacity: 0;
}

.is-contact-arriving .site-header {
  transform: translateY(-14px);
}

.is-contact-arriving .contact-hero__content {
  transform: translate3d(0, 18px, 0);
}

.is-contact-arriving .contact-hero__image {
  transform: scale(1.075);
}

.is-contact-arriving .contact-hero__overlay {
  opacity: .82;
}

.is-contact-arriving .site-header,
.is-contact-arriving .contact-hero__content,
.is-contact-arriving .contact-hero__image,
.is-contact-arriving .contact-hero__overlay {
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform 1.05s cubic-bezier(.16, 1, .3, 1);
}

.is-contact-arrival-ready .site-header,
.is-contact-arrival-ready .contact-hero__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.is-contact-arrival-ready .contact-hero__image {
  transform: scale(1);
}

.is-contact-arrival-ready .contact-hero__overlay {
  opacity: 1;
}
/* ===== CONTACT ARRIVAL HANDOFF END ===== */

.contact-main {
  padding: 112px 20px 126px;
  background: #f7f2e8;
}

.contact-main__inner {
  display: grid;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: start;
}

.contact-intro h2,
.contact-form-card h2,
.contact-visit h2,
.contact-final h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.055em;
}

.contact-intro h2 {
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  line-height: .9;
}

.contact-intro p {
  color: #69715f;
  line-height: 1.82;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-detail {
  padding: 18px 20px;
  border: 1px solid rgba(91, 108, 87, .14);
  background: rgba(255,255,255,.58);
}

.contact-detail span {
  display: block;
  color: #a48558;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  display: block;
  margin-top: 7px;
  color: #344333;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
}

.contact-form-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(99, 114, 95, .16);
  background: #fffaf1;
  box-shadow: var(--shadow-soft);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(132, 112, 80, .12);
  pointer-events: none;
}

.contact-form-card h2,
.contact-form-card p,
.contact-form-card form {
  position: relative;
}

.contact-form-card h2 {
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: .9;
}

.contact-form-card p {
  color: #6a7465;
  line-height: 1.72;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  display: block;
  margin-bottom: 7px;
  color: #6d725f;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 14px 15px;
  color: #263125;
  border: 1px solid rgba(94, 111, 91, .18);
  border-radius: 0;
  background: rgba(255,255,255,.9);
  outline: none;
}

.contact-field textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(164, 133, 88, .76);
  box-shadow: 0 0 0 3px rgba(196, 163, 109, .12);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-note {
  margin-top: 16px;
  color: #7b8475;
  font-size: .78rem;
  line-height: 1.6;
}

.contact-visit {
  padding: 108px 20px 118px;
  background: #e7dfcf;
}

.contact-visit__inner {
  display: grid;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.contact-visit h2 {
  font-size: clamp(3.6rem, 5.6vw, 5.8rem);
  line-height: .9;
}

.contact-visit p {
  color: #68715f;
  line-height: 1.8;
}

.contact-visit__image {
  min-height: 430px;
  overflow: hidden;
  border: 12px solid rgba(255,252,245,.86);
  box-shadow: var(--shadow);
}

.contact-visit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-final {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  isolation: isolate;
}

.contact-final__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-final__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 27, 20, .8), rgba(17, 27, 20, .38) 48%, rgba(17,27,20,.14));
}

.contact-final__panel {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  margin-left: 7vw;
  padding: 102px 0 90px;
  color: #fffaf1;
}

.contact-final h2 {
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  line-height: .88;
}

.contact-final p {
  max-width: 620px;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
}

.contact-final__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .contact-main__inner,
  .contact-visit__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    min-height: 72svh;
  }

  .contact-hero__content {
    width: min(100% - 30px, var(--content-width));
    padding-top: 132px;
  }

  .contact-hero__content h1 {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .contact-main,
  .contact-visit {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-form-card {
    padding: 26px 20px;
  }

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

  .contact-field--full {
    grid-column: auto;
  }

  .contact-visit__image {
    min-height: 330px;
  }

  .contact-final__panel {
    width: min(100% - 28px, 720px);
    margin: 0 auto;
    padding: 84px 0 72px;
  }

  .contact-final__actions {
    flex-direction: column;
  }
}

/* ===== CONTACT.CSS END ===== */