/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --walnut: #5D3A1A;
  --oak: #8B5E3C;
  --amber: #D4A053;
  --cream: #FFFBF5;
  --espresso: #2C1810;
  --text: #2C1810;
  --text-light: #F5F0E8;
  --border: #E0D5C0;
  --card: #FFFFFF;
  --muted: #6B5E4F;
  --rust: #A0522D;
  --sage: #7D8B6F;
  --gold: #C8963E;
  --text-hero: #D4C8B4;
  --text-dark-muted: #A69888;
  --text-dark-dim: #8E8070;
  --text-dark-faint: #7A6E60;
  --text-dark-subtle: #B0A090;
  --shadow: 0 4px 24px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 12px 48px rgba(44, 24, 16, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

a { color: var(--rust); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber); }

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Navigation ── */
.navbar {
  background: var(--espresso);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--amber);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--espresso);
  font-weight: bold;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--amber); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-light);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--espresso) 0%, #3D2415 40%, var(--walnut) 100%);
  color: var(--text-light);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 160, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--gold), var(--amber));
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 83, 0.15);
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 span { color: var(--amber); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-hero);
  margin-bottom: 2rem;
  max-width: 540px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--espresso);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 83, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(245, 240, 232, 0.3);
  margin-left: 0.75rem;
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

/* ── Section Styles ── */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--espresso);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.section-dark .section-header h2 { color: var(--text-light); }

.section-header .subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header .subtitle { color: var(--text-dark-muted); }

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--espresso);
}

.service-card h3 {
  color: var(--espresso);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Features Strip ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

.feature-item .feature-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-item .feature-label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about-image {
  background: linear-gradient(135deg, var(--walnut), var(--espresso));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-image .about-stamp {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.about-image .about-stamp span {
  display: block;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  background: var(--espresso);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 160, 83, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--amber);
}

.contact-item-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  color: var(--text-hero);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--espresso);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
}

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

/* ── Footer ── */
.footer {
  background: var(--espresso);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-col h4 {
  color: var(--amber);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--amber); }

.footer-col p {
  color: var(--text-dark-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dark-faint);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-dark-faint); }
.footer-bottom-links a:hover { color: var(--amber); }

/* ── Page Header (for subpages) ── */
.page-header {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--walnut) 100%);
  color: var(--text-light);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 3px solid var(--amber);
}

.page-header h1 { margin-bottom: 0.75rem; }
.page-header p {
  color: var(--text-dark-subtle);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Policy Content ── */
.policy-section {
  padding: 4rem 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.policy-content h2 {
  color: var(--espresso);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content h3 {
  color: var(--walnut);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p, .policy-content li {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.policy-content ul, .policy-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.policy-content li { margin-bottom: 0.5rem; }

.policy-content .effective-date {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.policy-content .highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.policy-content .highlight-box p { margin-bottom: 0; }
.policy-content .highlight-box p:last-child { margin-bottom: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--walnut), var(--espresso));
  color: var(--text-light);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}

.cta-banner h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-dark-subtle);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--espresso);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    gap: 1rem;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  .hero-content { text-align: center; }
  .hero p { max-width: 100%; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .policy-content { padding: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .policy-content { padding: 1.5rem; border-radius: var(--radius); }
}
