:root {
  --bg: #0d0b09;
  --panel: rgba(20, 17, 14, 0.82);
  --panel-solid: #17130f;
  --text: #f6efe6;
  --muted: #c9bdae;
  --gold: #c7a05a;
  --gold-soft: #ead6ac;
  --line: rgba(234, 214, 172, 0.20);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 10%, rgba(199, 160, 90, 0.16), transparent 30rem),
    linear-gradient(145deg, #0b0907 0%, #15100c 54%, #080706 100%);
  min-height: 100vh;
}

a { color: inherit; }
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #090807;
}

.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 35% 36%;
  filter: saturate(0.92) contrast(1.04) brightness(0.84);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.12), rgba(5, 4, 3, 0.30) 45%, rgba(5, 4, 3, 0.78)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.88), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(28px, 7vw, 76px);
  margin-left: auto;
  text-align: right;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 { font-size: clamp(4.25rem, 11vw, 9rem); }
h2 { font-size: clamp(2.6rem, 6vw, 5rem); }

.lead {
  margin: 24px 0 30px auto;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.contact-bar {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gold-soft);
  font-weight: 600;
}

.contact-bar a,
.instagram-link,
.form-note a { text-decoration-color: rgba(234, 214, 172, 0.35); text-underline-offset: 4px; }
.contact-card, .social {
  margin-top: 28px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.25fr);
  gap: clamp(24px, 5vw, 56px);
}

.contact-card__intro p:not(.eyebrow), .social p {
  color: var(--muted);
  line-height: 1.7;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--text);
  border: 1px solid rgba(234, 214, 172, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  outline: none;
}

textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199, 160, 90, 0.18); }
.full { grid-column: 1 / -1; }
.hidden-field { display: none; }

button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  color: #15100c;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(199, 160, 90, 0.24);
}

button:hover { transform: translateY(-1px); }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 0.92rem; }

.social { text-align: center; }
.instagram-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 700;
}

.instagram-feed {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  color: rgba(246, 239, 230, 0.62);
  text-align: center;
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .hero { min-height: 680px; align-items: end; }
  .hero__media img { object-position: 32% 36%; }
  .hero::after {
    background:
      linear-gradient(0deg, rgba(5, 4, 3, 0.95), rgba(5, 4, 3, 0.22) 70%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.25), rgba(5, 4, 3, 0.08));
  }
  .hero__content { margin: 0; text-align: left; }
  .lead { margin-left: 0; }
  .contact-bar { justify-content: flex-start; }
  .contact-card { grid-template-columns: 1fr; }
  form { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .page-shell { width: min(100% - 20px, 1120px); padding-top: 10px; }
  .hero, .contact-card, .social { border-radius: 22px; }
  .hero { min-height: 640px; }
  h1 { font-size: 4rem; }
}
