:root {
  --bg: #faf9f6;
  --bg-alt: #f5f4f0;
  --card: #fff;
  --text: #1a2332;
  --text-soft: #2d3a4f;
  --muted: #5c6b7d;
  --accent: #b8860b;
  --accent-hover: #9a7209;
  --border: #e8e6e3;
  --shadow-soft: 0 4px 24px rgba(26, 35, 50, 0.06);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  height: 100%;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 249, 246, 0.98);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 0;
}

.nav-right {
  margin-left: 0;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 480px;
}

.hero-logo {
  width: 320px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.hero p {
  color: var(--text-soft);
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  margin-top: 1.5rem;
  border-radius: 2px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: inherit;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Contact */
.contact-section {
  max-width: 480px;
  margin: 0 auto;
  padding-top: 2rem;
}

.contact-intro {
  margin-bottom: 0.5rem;
}

.contact-intro p {
  color: var(--muted);
  font-size: 1.35rem;
  margin-top: 0.25rem;
}

.contact-form {
  background: var(--card);
  border-radius: 2px;
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1.25rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--bg-alt);
  margin-top: auto;
}

.footer-inner {
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer-inner p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.85rem 0;
  }

  .nav {
    font-size: 1.2rem;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-logo {
    width: 260px;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .contact-form {
    padding: 1.4rem 1.2rem;
  }

  .contact-section {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav {
    font-size: 1.1rem;
    gap: 1rem;
  }

  .hero-logo {
    width: 220px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.4rem;
  }
}
