@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Nunito:wght@400;600&display=swap");

:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #6b7280;
  --brand: #1e40af;
  --brand-dark: #1e3a8a;
  --bg: #f9fafb;
  --surface: #ffffff;
  --border: #e5e7eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  width: 64px;
  height: 64px;
  background: var(--brand);
  color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-name {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--brand);
  display: block;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
}

.logo-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: #ea580c;
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 500;
  color: var(--ink);
}

.nav-cta {
  background: var(--brand);
  color: white;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(120deg, #eef2ff, #ffffff);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 2.2vw + 1.5rem, 3rem);
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--brand-dark);
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  margin-top: 0;
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
}

.muted {
  background: #f3f4f6;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.process-grid .card {
  text-align: center;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 16px rgba(30, 64, 175, 0.2);
}

.button.primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.button.ghost {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.button.full {
  width: 100%;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2.5rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.inquiry-intro p {
  color: var(--muted);
}

.info-card {
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.choice-group {
  border: none;
  padding: 0;
  margin: 1.5rem 0;
}

.choice-group label {
  margin-right: 1.5rem;
  font-weight: 500;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-message {
  min-height: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #b91c1c;
}

.error {
  color: #b91c1c;
  font-size: 0.85rem;
  min-height: 1rem;
}

.showcase-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

@media (max-width: 760px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 0.8rem;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
