:root {
  --bg: #0b0b0a;
  --bg-deep: #070706;
  --border: rgba(232, 223, 211, 0.15);
  --text: #f7f4ef;
  --muted: #c7bfb4;
  --muted-strong: #e4d9cb;
  --accent: #d5c4ab;
  --accent-strong: #ede0cf;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 74rem;
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(213, 196, 171, 0.11), transparent 28%),
    radial-gradient(circle at bottom, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, #100f0e 0%, var(--bg) 42%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  min-height: calc(100vh - 4rem);
  display: grid;
  place-items: center;
  padding: 1.75rem 0 1rem;
}

.coming-soon-card {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    linear-gradient(180deg, rgba(20, 19, 18, 0.98), rgba(12, 12, 11, 0.985));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.hero-copy {
  text-align: center;
  max-width: 58rem;
  margin: 0 auto;
  padding: 0.25rem 0 0;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-image-wrap {
  margin: 0 auto 1.45rem;
  width: min(100%, 52rem);
  padding: clamp(0.35rem, 1vw, 0.65rem);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 10ch;
  margin: 0 auto;
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  line-height: 0.94;
}

.intro-text,
.panel-heading p,
.contact-value,
.site-footer p,
.form-status {
  color: var(--muted);
}

.intro-text {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted-strong);
  font-size: 1rem;
}

.content-grid {
  display: grid;
  align-items: start;
  gap: 0.95rem;
  margin-top: 2rem;
}

.form-panel,
.contact-panel {
  background: rgba(18, 18, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
}

.panel-heading {
  margin-bottom: 1.15rem;
}

.panel-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 0.98;
}

.panel-heading p {
  margin: 0.4rem 0 0;
}

.form-reassurance {
  margin: 0 0 1rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

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

.optional {
  color: var(--muted);
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 9.5rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9f968a;
}

input:focus,
textarea:focus {
  border-color: rgba(237, 224, 207, 0.3);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 4px rgba(213, 196, 171, 0.07);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(218, 158, 158, 0.7);
  background: rgba(108, 40, 40, 0.12);
  box-shadow: 0 0 0 4px rgba(164, 76, 76, 0.1);
}

.field-error {
  min-height: 1.2rem;
  margin: 0.05rem 0 0;
  color: #e6b7b2;
  font-size: 0.84rem;
  line-height: 1.4;
}

.submit-button {
  appearance: none;
  width: 100%;
  min-height: 3.35rem;
  margin-top: 0.2rem;
  border: 1px solid rgba(229, 216, 198, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #ebdfd1, #d9c7b0);
  color: #111;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 1.45rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, filter 180ms ease;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.015);
}

.submit-button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.form-status:not(:empty) {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.form-status.is-success {
  color: #dce8db;
  border-color: rgba(151, 185, 148, 0.28);
  background: rgba(93, 126, 90, 0.16);
}

.form-status.is-error {
  color: #f0c7c1;
  border-color: rgba(189, 120, 120, 0.28);
  background: rgba(117, 48, 48, 0.16);
}

.form-status.is-info {
  color: var(--muted-strong);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-item {
  padding: 1rem 1rem 0.95rem;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  color: var(--muted-strong);
}

.contact-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 199, 176, 0.3);
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--text);
  border-bottom-color: rgba(237, 224, 207, 0.7);
}

.site-footer {
  padding: 0 1rem 1.8rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .page-shell {
    width: min(100% - 3rem, var(--container));
    padding-top: 3rem;
  }

  .coming-soon-card {
    padding: 1.75rem;
  }

  .hero-copy {
    padding-top: 0.35rem;
  }

  .hero-image-wrap {
    margin-bottom: 1.75rem;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.95fr);
    gap: 1.2rem;
    margin-top: 2.45rem;
  }

  .form-panel,
  .contact-panel {
    padding: 1.5rem;
  }

  .submit-button {
    width: auto;
    min-width: 12.5rem;
    justify-self: start;
    padding-inline: 1.85rem;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .coming-soon-card {
    padding: 2rem;
  }

  .hero-image-wrap {
    width: min(100%, 54rem);
    margin-bottom: 1.95rem;
  }

  .content-grid {
    gap: 1.4rem;
    margin-top: 2.8rem;
  }

  .intro-text {
    font-size: 1.04rem;
  }
}
