:root {
  --bg: #edf0f2;
  --bg-alt: #e3e7ea;
  --card: #f8f9fa;
  --ink: #23272b;
  --muted: #667077;
  --accent: #a68e66;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .big-number {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
section, .hero { padding: 72px 0; }
h2 { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 36px; }

.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --- hero --- */
.hero { padding-top: 48px; padding-bottom: 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(44px, 7vw, 76px); margin-bottom: 16px; }
.tagline { font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); margin-bottom: 32px; }
.hero-photo img { border-radius: var(--radius); }

/* --- buttons --- */
.btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s, background .2s, color .2s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { opacity: .85; }
.btn-ghost { border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* --- services --- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { color: var(--muted); }

/* --- trust --- */
.trust { background: var(--bg-alt); }
.trust-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.trust-photo img { border-radius: var(--radius); }
.big-number { font-size: clamp(56px, 8vw, 96px); color: var(--accent); }
.big-caption { font-size: 22px; margin-bottom: 32px; }
.artists-label { color: var(--muted); margin-bottom: 6px; }
.artists { font-size: 19px; }

/* --- instagram --- */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.insta-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.insta-card:hover img { transform: scale(1.04); }
.insta-card .play {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .5));
}
.insta-more { margin-top: 32px; text-align: center; }

/* --- contacts --- */
.contact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  font-size: 19px;
}
.contact-list a { text-decoration-color: var(--accent); text-underline-offset: 4px; }

footer { padding: 32px 0 40px; color: var(--muted); }

@media (max-width: 760px) {
  section, .hero { padding: 48px 0; }
  .hero-grid, .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { order: -1; }
  .hero-photo img, .trust-photo img { max-height: 70vh; width: auto; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
