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

:root {
  --bg: #faf6ef;
  --bg-alt: #f2ead9;
  --surface: #ffffff;
  --border: rgba(43, 33, 24, 0.12);
  --text: #2b2118;
  --text-muted: #6e6154;
  --accent: #a9762f;
  --accent-dark: #7c5522;
  --accent-2: #7a3b2e;
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --ink-dark: #23180f;
  --font-head: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 14px;
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 600; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; }

.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-title.center { text-align: center; }
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--gradient);
  color: #fdf8f1;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(122, 59, 46, 0.45); }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost {
  background: transparent;
  color: var(--ink-dark);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); background: rgba(169, 118, 47, 0.06); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--ink-dark);
}
.logo span { color: var(--accent); font-style: italic; }

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--ink-dark); }

.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 190px 0 110px;
  background:
    radial-gradient(700px 360px at 12% -10%, rgba(169,118,47,0.10), transparent 60%),
    radial-gradient(600px 320px at 88% 10%, rgba(122,59,46,0.08), transparent 60%);
}
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--ink-dark);
}
.hero h1 .accent {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 68px; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink-dark);
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- About ---------- */
.about { padding: 110px 0; background: var(--bg-alt); }
.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.photo-frame {
  aspect-ratio: 1;
  border-radius: var(--radius);
  padding: 4px;
  background: var(--gradient);
}
.photo-img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  display: block;
}
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; color: var(--ink-dark); }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.about-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-dark);
  font-weight: 500;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gradient);
}

/* ---------- Biography ---------- */
.biography { padding: 110px 0; }
.biography-body {
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--text-muted);
}
.biography-body p { margin-bottom: 16px; }
.biography-body p:last-child { margin-bottom: 0; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.credential-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 10px -4px rgba(43, 33, 24, 0.06);
}
.credential-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.credential-card h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--ink-dark); }
.credential-card p { color: var(--text-muted); font-size: 0.9rem; }
/* ---------- Industries ---------- */
.industries { padding: 110px 0; background: var(--bg-alt); }

/* ---------- Services ---------- */
.services { padding: 110px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 2px 10px -4px rgba(43, 33, 24, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(169,118,47,0.4); box-shadow: 0 16px 30px -12px rgba(43, 33, 24, 0.15); }
.service-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--gradient);
  color: #fdf8f1;
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--ink-dark); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Process ---------- */
.process { padding: 110px 0; background: var(--bg-alt); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step { position: relative; padding-top: 8px; }
.step-num {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 2.3rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.08rem; color: var(--ink-dark); }
.process-step p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 110px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 2px 10px -4px rgba(43, 33, 24, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card p {
  color: var(--ink-dark);
  font-size: 0.98rem;
  margin-bottom: 26px;
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.5;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fdf8f1;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; font-size: 0.85rem; }
.testimonial-author strong { color: var(--ink-dark); }
.testimonial-author span { color: var(--text-muted); }
.testimonial-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 32px;
  font-style: italic;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 100px 0;
  background: var(--ink-dark);
  text-align: center;
}
.cta-inner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; color: #fdf8f1; }
.cta-inner p { color: #cbbca8; margin-bottom: 32px; }

/* ---------- Contact ---------- */
.contact { padding: 110px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; color: var(--ink-dark); }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-details { list-style: none; display: grid; gap: 14px; }
.contact-details strong { color: var(--ink-dark); }
.contact-details a { color: var(--accent-dark); font-weight: 500; }
.contact-details a:hover { text-decoration: underline; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 14px -6px rgba(43, 33, 24, 0.08);
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-submit { margin-top: 6px; }
.form-note { font-size: 0.85rem; color: var(--accent-dark); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-inner .logo { font-size: 1.1rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--accent-dark); }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  max-width: 360px;
  background: var(--ink-dark);
  color: #fdf8f1;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 16px 34px -10px rgba(35, 24, 15, 0.45);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  z-index: 1000;
  transform: translateX(24px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.toast.visible { transform: translateX(0); opacity: 1; }
.toast-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fdf8f1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}
.toast-error .toast-icon { background: #b3372c; }
.toast-body { flex: 1; }
.toast-body strong { display: block; margin-bottom: 3px; font-family: var(--font-head); font-size: 0.98rem; }
.toast-body p { font-size: 0.85rem; color: #cbbca8; margin: 0; line-height: 1.4; }
.toast-close {
  background: none;
  border: none;
  color: #cbbca8;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  margin-left: 4px;
}
.toast-close:hover { color: #fdf8f1; }

@media (max-width: 500px) {
  .toast { top: 16px; right: 16px; left: 16px; max-width: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .photo-frame { max-width: 260px; }
}

@media (max-width: 760px) {
  .nav-wrapper {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .nav-wrapper .nav { flex-direction: column; gap: 18px; }
  .nav-wrapper .nav-cta { display: inline-flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 140px 0 70px; }
  .hero-stats { gap: 32px; }

  .site-header.menu-open .nav-wrapper { display: flex; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
