﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --ink: #3d2b33;
  --muted: #8a6b77;
  --line: #f3dfe7;
  --surface: #ffffff;
  --bg: #fff7fa;
  --brand: #c97aa0;
  --accent: #f6b4d0;
  --accent-dark: #ea9bbd;
  --hero: #d89bb8;
  --hero-light: #fce6ef;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(166, 120, 144, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #fff0f6 45%, #fde2ee 100%);
  border-bottom: 1px solid #f2dbe4;
}

.topbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #c97aa0;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
}

.brand-text span {
  font-size: 0.85rem;
  color: var(--muted);
}

.top-links {
  display: flex;
  gap: 18px;
}

.top-links a {
  text-decoration: none;
  color: #8f5a72;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-links a:hover,
.top-links a[aria-current="page"] {
  color: #b36c8f;
}

.top-actions {
  display: flex;
  gap: 10px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #a76486;
}

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: #8f5a72;
  border: 1px solid #f0c9da;
}

.btn.ghost:hover {
  background: #fbe9f1;
  border-color: #e9b9cf;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 24px;
  display: grid;
  gap: 24px;
}

.contact-hero {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f3e3ea;
}

.contact-hero h1 {
  margin: 10px 0 8px;
  font-size: 2.2rem;
}

.contact-hero p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.contact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f3e3ea;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 600;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-card h2 {
  margin-top: 0;
}

.info-card p {
  margin: 8px 0;
}

.info-card a {
  color: #b36c8f;
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  color: #9b5c7f;
  text-decoration: underline;
}

.info-block {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.info-block h3 {
  margin: 0 0 6px;
}

.footer {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 24px 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #8f5a72;
}

.footer-links a:hover {
  color: #b36c8f;
}

.footer-note {
  justify-self: end;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-links {
    display: none;
  }
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-note {
    justify-self: start;
  }
}
