:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --text: #2d2218;
  --muted: #7b6b56;
  --accent: #b6892f;
  --accent-dark: #8d6218;
  --border: #f0e1c4;
  --shadow: 0 18px 45px rgba(47, 33, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf3 0%, #fffdf8 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(182, 137, 47, 0.18), transparent 30%),
    linear-gradient(135deg, #1f160f 0%, #4f3416 100%);
  color: white;
  padding-bottom: 3rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: white;
}

.brand strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2rem;
  padding: 4rem 0 2rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1,
.section h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin: 0.2rem 0 0.8rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
}

.hero-title strong {
  display: inline-block;
  font-weight: 800;
  text-transform: none;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.lead {
  font-size: 1.04rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 10px 20px rgba(182, 137, 47, 0.25);
}

.btn-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.info-panel,
.card,
.contact-form,
.table-wrap {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero-card {
  padding: 1.5rem;
}

.hero-image {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(246, 219, 168, 0.35);
  background: #fff7ef;
}

.hero-image img {
  width: 100%;
  display: none;
  object-fit: cover;
}

.hero-slide.active {
  display: block;
}

.slider-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.75rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.hero-card h3,
.info-panel h3,
.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.hero-card ul,
.contact-list {
  padding-left: 1rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(182, 137, 47, 0.2);
}

.social-links a:hover {
  transform: translateY(-2px);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.6);
}

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.info-panel,
.card,
.contact-form {
  padding: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.section-note {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.source-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-align: right;
}

.table-wrap {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: #fdf4e4;
  color: var(--accent-dark);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: #fffdf8;
}

.form-message {
  min-height: 1.2rem;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

@media (max-width: 820px) {
  .hero-content,
  .section-grid,
  .contact-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
}
