:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #5e6671;
  --line: #ded7cd;
  --accent: #b3262e;
  --accent-dark: #851b21;
  --forest: #17443b;
  --gold: #d59b35;
  --shadow: 0 20px 60px rgba(31, 35, 40, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { color: var(--accent-dark); font-weight: 800; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 0.95rem; }
nav a, .ghost-link { text-decoration: none; }
nav a:hover, .ghost-link:hover { color: var(--accent); }

.hero {
  min-height: 64vh;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 7vw, 100px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.86), rgba(18, 20, 23, 0.38)),
    url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero__content { max-width: 760px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 780px; font-size: clamp(2.4rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.hero p:not(.eyebrow), .section-copy p, .about p:not(.eyebrow) {
  max-width: 700px;
  color: inherit;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.button, .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.button { margin-top: 14px; color: #fff; background: var(--accent); text-decoration: none; }
.button:hover { background: var(--accent-dark); }
.ghost-button { color: var(--accent-dark); background: #f2ebe2; }

.media-section, .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 7vw, 100px);
}
.studio-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ddd;
}
.studio-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.about { color: #fff; background: var(--forest); padding: clamp(64px, 9vw, 120px) clamp(18px, 7vw, 100px); }
.about__inner { max-width: 900px; }
.contact { grid-template-columns: minmax(0, 0.7fr) minmax(260px, 1fr); background: #fff; }
.contact-links { display: grid; gap: 12px; font-size: 1.1rem; font-weight: 700; }
.contact-links a { overflow-wrap: anywhere; }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.admin-body { min-height: 100vh; padding: 24px; background: #efe8de; }
.admin-shell { width: min(980px, 100%); margin: 0 auto; }
.admin-panel {
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.panel-heading { margin-bottom: 24px; }
.panel-heading--row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.form-stack, .form-grid { display: grid; gap: 16px; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 7px; color: var(--muted); font-size: 0.92rem; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
textarea { resize: vertical; }
input:focus, textarea:focus { outline: 3px solid rgba(179, 38, 46, 0.18); border-color: var(--accent); }
.wide, .form-actions, .form-message { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-message { min-height: 24px; margin: 0; color: var(--accent-dark); font-weight: 700; }
.notice { padding: 12px 14px; border-radius: 6px; background: #f2ebe2; color: var(--accent-dark); font-weight: 700; }

@media (max-width: 760px) {
  .site-header, .panel-heading--row { align-items: flex-start; flex-direction: column; }
  .media-section, .contact, .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 58vh; }
}

.text-page {
  padding: 80px clamp(18px, 7vw, 100px);
  max-width: 800px;
  margin: 0 auto;
  min-height: 70vh;
}
.text-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
  color: var(--accent-dark);
  line-height: 1.15;
}
.text-page h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--forest);
  line-height: 1.2;
}
.text-page p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.text-page ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}
.text-page li {
  margin-bottom: 8px;
}
.text-page__meta {
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.8;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

