:root {
  --orange: #ff7a00;
  --orange-light: #ffa43a;
  --red: #e6451a;
  --purple: #5a2d82;
  --purple-dark: #3e1d59;
  --white: #ffffff;
  --ink: #24162f;
  --muted: #5c4b6b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(255, 164, 58, 0.18), transparent),
              radial-gradient(900px 500px at 90% 0%, rgba(90, 45, 130, 0.18), transparent),
              linear-gradient(140deg, #fff7ee 0%, #ffffff 50%, #f7f3ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 72px;
  height: auto;
}

.brand h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--muted);
  margin-top: 6px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-dark);
  background: linear-gradient(120deg, rgba(255, 164, 58, 0.25), rgba(90, 45, 130, 0.18));
  width: fit-content;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(90, 45, 130, 0.08);
  box-shadow: 0 24px 60px rgba(36, 22, 47, 0.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

input,
textarea {
  border: 1px solid rgba(90, 45, 130, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

button {
  margin-top: 6px;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(120deg, var(--orange), var(--red));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.25);
}

.address {
  color: var(--muted);
  line-height: 1.7;
}

.accent-line {
  height: 2px;
  width: 120px;
  margin: 18px 0 10px;
  background: linear-gradient(90deg, var(--purple), var(--orange-light));
}

.note {
  color: var(--muted);
}

.webmail {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(90, 45, 130, 0.2);
  color: var(--purple-dark);
  text-decoration: none;
  font-weight: 600;
  background: rgba(90, 45, 130, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.webmail:hover {
  transform: translateY(-1px);
  border-color: rgba(90, 45, 130, 0.35);
  box-shadow: 0 10px 20px rgba(62, 29, 89, 0.18);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.4;
  z-index: 1;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 164, 58, 0.6), transparent 60%);
  top: -160px;
  left: -140px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 70% 40%, rgba(90, 45, 130, 0.5), transparent 60%);
  bottom: -120px;
  right: -120px;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.15'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 720px) {
  .page {
    padding: 48px 18px 64px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 34px;
  }
}
