:root {
  --ink: #172033;
  --muted: #637083;
  --paper: #f7f2e9;
  --card: rgba(255, 255, 255, 0.86);
  --line: rgba(23, 32, 51, 0.12);
  --accent: #9b6b39;
  --accent-dark: #735026;
  --shadow: 0 28px 80px rgba(23, 32, 51, 0.18);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(155, 107, 57, 0.22), transparent 34rem),
    linear-gradient(135deg, #f7f2e9 0%, #e9ddcc 52%, #f9f6ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 32, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 32px;
  padding: 56px 0 32px;
}

.hero,
.contact-card {
  position: relative;
  z-index: 1;
}

.brand-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: 32px;
}

.brand-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  overflow: hidden;
}

.brand-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  border: 28px solid rgba(155, 107, 57, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: .86;
  letter-spacing: -.07em;
}

.subtitle {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  letter-spacing: -.04em;
}

.intro {
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

label {
  font-weight: 800;
  font-size: .92rem;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(155, 107, 57, .65);
  box-shadow: 0 0 0 5px rgba(155, 107, 57, .14);
}

textarea { resize: vertical; }

button {
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font: inherit;
  font-weight: 800;
  padding: 15px 22px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 860px) {
  .site-shell {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .brand-card {
    min-height: 300px;
  }
}
