@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --paper: #fbf7f1;
  --paper-strong: #ffffff;
  --ink: #1b1f24;
  --muted: #5b6471;
  --accent: #e36a3d;
  --accent-soft: #f7d2c3;
  --stroke: rgba(27, 31, 36, 0.12);
  --shadow: 0 16px 32px rgba(27, 31, 36, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
    sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background-color: #2c2e30;
  background-image:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(0, 0, 0, 0.1) 100%
    );
  background-size:
    cover,
    4px 4px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CONTACT STUDIO LAYOUT */
.contact-studio {
  background: var(--paper-strong);
  width: min(1120px, 100% - 10vw);
  margin: 38px auto 0;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
}

.studio-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 40px;
}

.serif-title {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 20px;
  letter-spacing: -0.03em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.studio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding: 0 8vw 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.channels-info h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.channels-info p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.direct-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FORM STYLE (Sync with Works/Services) */
.brief-card {
  background: var(--paper);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 40px;
}

.brief-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  background: #fff;
  color: #000;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* FINAL FOOTER CTA (DARK) */
.privacy-note {
  background: var(--ink);
  color: #fff;
  padding: 60px 40px;
  border-radius: 30px 30px 0 0;
  text-align: center;
}

.privacy-note p {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227, 106, 61, 0.2);
}
.button.ghost {
  background: transparent;
  color: var(--accent);
}
.button.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .studio-header {
    padding: 0 20px;
  }
}
