:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(18, 18, 18, 0.78);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f7f2ea;
  --muted: #b8aea0;
  --accent: #e7dcc9;
  --accent-deep: #8e7a64;
  --field: rgba(255, 255, 255, 0.04);
  --field-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(164, 139, 108, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #020202, #0b0b0b 45%, #13110f);
  color: var(--text);
  font-family: "Outfit", sans-serif;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 32px;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-left {
  top: 12%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: rgba(178, 139, 92, 0.18);
}

.ambient-right {
  right: -10%;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: rgba(120, 102, 82, 0.2);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  min-height: calc(100vh - 64px);
}

.brand-panel,
.contact-panel {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
}

.brand-lockup {
  display: flex;
  gap: 22px;
  align-items: center;
}

.logo-mark {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  object-fit: contain;
  padding: 10px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 45px rgba(0, 0, 0, 0.35);
}

.eyebrow,
.section-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 6.8vw, 5.1rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

h2 {
  max-width: 8ch;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.intro,
.panel-copy p,
.contact-form label {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.intro {
  max-width: 34rem;
  margin: 32px 0;
  font-size: 1.15rem;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-size: 0.92rem;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.panel-copy {
  margin-bottom: 24px;
}

.panel-copy h2 {
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-notice.is-success {
  background: rgba(116, 160, 120, 0.12);
  border-color: rgba(133, 197, 140, 0.26);
  color: #d6eed8;
}

.form-notice.is-error {
  background: rgba(157, 83, 83, 0.14);
  border-color: rgba(214, 116, 116, 0.24);
  color: #f2d0d0;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--field-border);
  border-radius: 16px;
  background: var(--field);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #877b6f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(231, 220, 201, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.contact-form button {
  margin-top: 4px;
  padding: 15px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #16120d;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(142, 122, 100, 0.22);
}

@media (max-width: 900px) {
  .page-shell {
    padding: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-panel,
  .contact-panel {
    padding: 28px;
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-mark {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.1rem;
  }

  .intro {
    font-size: 1rem;
  }

  .contact-panel,
  .brand-panel {
    border-radius: 22px;
  }
}
