﻿:root {
  --bg-dark: #16110d;
  --bg-mid: #2a211a;
  --brand-main: #5f4c3d;
  --brand-soft: #c8ae8a;
  --surface: rgba(32, 25, 20, 0.84);
  --line: rgba(255, 255, 255, 0.2);
  --text-main: #f5f1ec;
  --text-muted: rgba(245, 241, 236, 0.78);
  --focus: #f0d2a8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 16%, rgba(200, 174, 138, 0.24), transparent 44%),
    radial-gradient(circle at 84% 82%, rgba(124, 99, 77, 0.22), transparent 48%),
    linear-gradient(170deg, var(--bg-dark) 0%, var(--bg-mid) 66%, #120f0c 100%);
}

body.modal-open {
  overflow: hidden;
}

.fx-grid {
  position: fixed;
  inset: -18%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: skewY(-8deg);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 56%, rgba(0, 0, 0, 0) 76%);
}

.fx-speedlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(200, 174, 138, 0) 0px,
      rgba(200, 174, 138, 0) 38px,
      rgba(200, 174, 138, 0.16) 39px,
      rgba(200, 174, 138, 0.02) 56px
    );
  mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0) 82%);
  animation: drift 7s linear infinite;
}

.contact-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.form-card {
  width: min(650px, 100%);
  background: linear-gradient(165deg, rgba(38, 29, 22, 0.92), rgba(28, 22, 17, 0.86));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(200, 174, 138, 0.14) inset;
  backdrop-filter: blur(6px);
  padding: clamp(1.1rem, 3.6vw, 2.2rem);
  position: relative;
  overflow: hidden;
  animation: card-in 720ms ease-out both;
}

.form-card > .logo-wordmark,
.form-card > h1,
.form-card > .seo-lead,
.form-card > .contact-form,
.form-card > .info-stack {
  width: min(100%, 500px);
  margin-left: auto;
  margin-right: auto;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(104deg, rgba(200, 174, 138, 0.2), transparent 36%);
}

.logo-wordmark {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}

h1 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  letter-spacing: 0.01em;
  color: var(--text-main);
}


.seo-lead {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.contact-form {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 1rem;
}

label {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font: inherit;
  padding: 0.78rem 0.9rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
textarea:focus {
  border-color: rgba(240, 210, 168, 0.86);
  box-shadow: 0 0 0 3px rgba(240, 210, 168, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

button {
  margin-top: 0.28rem;
  border: 1px solid rgba(240, 210, 168, 0.58);
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(95, 76, 61, 0.9), rgba(200, 174, 138, 0.28));
  color: #fff7ed;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 174, 138, 0.24);
  filter: saturate(115%);
}

button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

button:disabled {
  opacity: 0.62;
  cursor: progress;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
}

.info-stack {
  display: grid;
  gap: 0.75rem;
}

.info-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.82rem 0.9rem;
}

h2 {
  margin: 0 0 0.48rem;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
}


.seo-copy {
  margin: 0;
  line-height: 1.55;
  color: var(--text-muted);
}
.contact-address {
  margin: 0;
  line-height: 1.55;
  font-style: normal;
  color: var(--text-muted);
}

.contact-address a {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-address a:hover {
  border-bottom-color: rgba(240, 210, 168, 0.8);
}

.field-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.field-tags li {
  border: 1px solid rgba(240, 210, 168, 0.42);
  background: rgba(200, 174, 138, 0.12);
  color: #f3ddbf;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.9rem;
}

.status-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 9, 7, 0.64);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.status-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.status-modal {
  width: min(440px, 100%);
  border: 1px solid rgba(240, 210, 168, 0.38);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(38, 29, 22, 0.95), rgba(26, 20, 16, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 1rem;
}

.status-modal.is-error {
  border-color: rgba(255, 160, 160, 0.52);
}

.status-title {
  margin: 0 0 0.45rem;
}

.status-message {
  margin: 0 0 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.status-close {
  margin-top: 0;
}

@keyframes drift {
  from {
    transform: translateX(-3%);
  }

  to {
    transform: translateX(3%);
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 620px) {
  .form-card {
    border-radius: 20px;
    padding: 1rem;
  }

  h1 {
    margin-bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
  }
}








