:root {
  --bg-1: #3e3a36;
  --bg-2: #2f2c29;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.22);
  --text: #f1ece5;
  --muted: #d4cabc;
  --accent: #d8c8b1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, #5a554f 0%, var(--bg-1) 35%, var(--bg-2) 100%);
  line-height: 1.65;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #d9c4a0;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}


h1 { font-size: clamp(42px, 6vw, 68px); }
h2 { font-size: clamp(38px, 5vw, 56px); }
h3 { font-size: clamp(30px, 3.4vw, 40px); }
h4 { font-size: 30px; }

.center { text-align: center; }
.subtitle {
  margin: 2px 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.meta { margin: 0 0 22px; color: #eee5d9; }
.lead { font-size: 30px; font-family: "Cormorant Garamond", serif; color: #e8ddd0; margin: 0 0 24px; }
.italic { font-style: italic; color: #e6ddd3; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 38px;
  align-items: center;
}
.photo-frame {
  border: 1px solid var(--line);
  padding: 10px;
  background: rgba(0,0,0,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.photo-frame img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 520px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--accent);
  color: #f7efe4;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 2px;
}
.text-block p { margin: 0 0 14px; color: #efe7dd; }
.text-block ul { margin: 10px 0 10px 20px; padding: 0; }
.text-block li { margin: 8px 0; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  padding: 26px;
}
.cards-3 .card {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.cards-3 .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(216,200,177,.12) 45%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .7s ease;
  pointer-events: none;
}
.cards-3 .card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,200,177,.65);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 14px 34px rgba(0,0,0,.28), 0 0 0 1px rgba(216,200,177,.18) inset;
}
.cards-3 .card:hover::before {
  transform: translateX(130%);
}
.cards-3 .card h3 {
  transition: color .35s ease, transform .35s ease;
}
.cards-3 .card:hover h3 {
  color: #eadbc3;
  transform: translateY(-1px);
}
.card .small { margin-top: -8px; color: var(--muted); }
.card ul { margin: 12px 0 0 20px; padding: 0; }
.card li { margin: 8px 0; color: #efe8df; }

.pricing .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pricing .price {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}
.pricing p { margin: 0; color: var(--muted); }
.pricing .line { height: 1px; background: var(--line); margin: 22px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  font-weight: 600;
}
.icon{
  display:inline-flex;
  width:18px;
  opacity:.9;
}

.form { display: grid; gap: 14px; }
.form label { color: #f2ebe2; font-size: 15px; }
input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
}
.form .btn-outline{width:100%; margin-top:6px;}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #d6ccc0; }
.status { margin: 0; color: #d8eacb; min-height: 22px; }

@media (max-width: 980px) {
  .hero-grid, .contact-grid, .cards-3 { grid-template-columns: 1fr; }
  .photo-frame img { min-height: 380px; }
  .lead { font-size: 26px; }
}
