:root {
  --bg: #b9ae50;
  --bg-soft: #d9d089;
  --bg-deep: #8d863f;
  --panel: #2c2a14;
  --panel-soft: #2c2a14;
  --text: #f9efe7;
  --accent: #d29a7d;
  --accent-soft: #e6c0a9;
  --accent-dark: #b86d52;
  --muted: #f0d9c8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(24, 16, 14, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #b9ae50;
  color: var(--text);
}

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

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-areas:
    "copy photo"
    "contact contact";
  align-items: start;
  gap: 0;
  padding: 0;
  background: transparent;
}

.hero-copy {
  grid-area: copy;
  text-align: left;
  padding-right: 24px;
  max-width: 100%;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}

h1 {
  margin: 0 0 16px;
  font-size: 96px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 0.92;
  font-family: "Syne", "Inter", "Segoe UI", Arial, sans-serif;
  text-shadow:
    0 2px 4px var(--shadow),
    0 4px 8px var(--shadow);
}

.lead {
  margin: 0 0 28px;
  max-width: 560px;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.7;
}

.button {
  display: inline-block;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}

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

.button.secondary {
  width: fit-content;
}

.hero-photo {
  grid-area: photo;
  position: relative;
  border-radius: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
  line-height: 0;
  align-self: start;
  height: 560px;
  filter: drop-shadow(18px 36px 30px rgba(24, 16, 14, 0.22));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0;
  border-radius: 0;
}

.photo-fill {
  display: none;
}

.contact-group {
  grid-area: contact;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #2c2a14;
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  align-self: stretch;
  width: 100%;
}

.contact-copy,
.contact-form {
  border-radius: 0;
  background: transparent;
  border: none;
}

.contact-copy {
  padding: 18px 20px 24px;
}

.contact-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-row span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-soft);
}

.contact-row a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.contact-form {
  padding: 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form button {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-form h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(249, 239, 231, 0.7);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

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

.footer {
  padding: 20px 20px 40px;
  text-align: center;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer p {
  margin: 6px 0;
}

@media (min-width: 901px) {
  .page-shell {
    padding-top: 72px;
  }

  .hero-copy {
    padding-top: 28px;
    align-self: center;
  }

  .hero-photo {
    display: flex;
    justify-content: flex-end;
  }

  .hero-photo img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
  }
}

@media (max-width: 900px) {
  .hero,
  .contact-group {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 32px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy,
  .hero-photo,
  .photo-fill {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-group {
    grid-column: 1 / -1;
    grid-row: 3;
    width: min(100%, 560px);
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-copy {
    display: block;
    padding-right: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
    letter-spacing: 0.04em;
    line-height: 0.96;
    max-width: 100%;
    word-break: break-word;
    margin-bottom: 12px;
  }

  .hero-copy .lead {
    max-width: 100%;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
    margin-bottom: 16px;
    padding-top: 0;
    margin-left: 0;
    position: relative;
  }

  .hero-photo {
    display: flex;
    justify-content: center;
    width: min(100%, 500px);
    max-width: 100%;
    height: 100%;
    min-height: 220px;
    margin: 0 auto;
    align-self: stretch;
    overflow: visible;
  }

  .hero-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .photo-fill {
    min-height: 0;
    display: none;
  }

  .contact-form {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 435px) {
  .hero {
    padding: 24px 16px 0;
    gap: 0 12px;
  }

  .hero-copy h1 {
    margin-bottom: 8px;
  }

  .hero-copy .lead {
    margin-bottom: 0;
  }

  .hero-photo {
    min-height: 180px;
    margin-bottom: 0;
  }

  .contact-group {
    margin-top: 0;
  }
}
