:root {
  --saw-navy: #0c1f3d;
  --saw-navy-light: #152a4a;
  --saw-gold: #b8942e;
  --saw-gold-light: #d4b86a;
  --saw-cream: #faf9f7;
  --saw-paper: #ffffff;
  --saw-ink: #1c2430;
  --saw-muted: #5a6578;
  --saw-border: #e4e0d8;
  --saw-shadow: 0 4px 24px rgba(12, 31, 61, 0.06);
  --saw-shadow-lg: 0 12px 40px rgba(12, 31, 61, 0.1);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--saw-ink);
  background: var(--saw-cream);
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.bg-light-saw { background-color: var(--saw-cream) !important; }

/* Buttons */
.btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-saw-primary {
  background: var(--saw-navy);
  border-color: var(--saw-navy);
  color: #fff;
}
.btn-saw-primary:hover {
  background: var(--saw-navy-light);
  border-color: var(--saw-navy-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--saw-shadow);
}

.btn-saw-accent {
  background: var(--saw-gold);
  border-color: var(--saw-gold);
  color: #fff;
}
.btn-saw-accent:hover {
  background: #a68328;
  border-color: #a68328;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--saw-shadow);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline-saw {
  border: 1px solid var(--saw-navy);
  color: var(--saw-navy);
  background: transparent;
}
.btn-outline-saw:hover {
  background: var(--saw-navy);
  color: #fff;
}

/* Navbar */
.navbar-saw {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--saw-border);
  padding: 1rem 0;
  transition: box-shadow 0.3s ease;
}
.navbar-saw.scrolled {
  box-shadow: var(--saw-shadow);
}
.navbar-saw .navbar-brand img {
  height: 44px;
  width: auto;
}
.navbar-saw .nav-link {
  color: var(--saw-ink);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.navbar-saw .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--saw-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.navbar-saw .nav-link:hover::after,
.navbar-saw .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-saw .nav-link:hover,
.navbar-saw .nav-link.active {
  color: var(--saw-navy);
}
.navbar-saw .btn-nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem !important;
  font-size: 0.8rem;
}
.navbar-saw .nav-link.btn-nav-cta::after {
  display: none;
}

/* Hero */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--saw-navy) 0%, var(--saw-navy-light) 100%);
  color: #fff;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 148, 46, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saw-gold), transparent);
}
.hero-section .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saw-gold-light);
  margin-bottom: 1.25rem;
}
.hero-section h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-section .lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  opacity: 0.88;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions .btn { margin-right: 0.75rem; margin-bottom: 0.5rem; }

/* Page header */
.page-header {
  background: var(--saw-navy);
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(184, 148, 46, 0.1) 0%, transparent 55%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .page-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saw-gold-light);
  margin-bottom: 0.75rem;
  display: block;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.page-header p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.82;
  max-width: 480px;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-sm { padding: 3.5rem 0; }

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saw-gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--saw-navy);
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-intro {
  color: var(--saw-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--saw-gold);
  margin-bottom: 1.5rem;
}

/* Cards */
.elegant-card {
  background: var(--saw-paper);
  border: 1px solid var(--saw-border);
  border-radius: 2px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.elegant-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--saw-gold);
  transition: height 0.3s ease;
}
.elegant-card:hover {
  box-shadow: var(--saw-shadow-lg);
  transform: translateY(-3px);
}
.elegant-card:hover::before {
  height: 100%;
}
.elegant-card .card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(184, 148, 46, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.elegant-card h3,
.elegant-card h5 {
  font-size: 1.2rem;
  color: var(--saw-navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.elegant-card p {
  color: var(--saw-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.elegant-card .card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saw-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.elegant-card .card-link:hover {
  color: var(--saw-gold);
}
.elegant-card .card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.elegant-card .card-link:hover::after {
  transform: translateX(4px);
}

/* Stat strip */
.stat-strip {
  background: var(--saw-paper);
  border-top: 1px solid var(--saw-border);
  border-bottom: 1px solid var(--saw-border);
  padding: 2.5rem 0;
}
.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
}
.stat-item .stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--saw-navy);
  line-height: 1.2;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saw-muted);
  margin-top: 0.35rem;
}

/* Service block (inner pages) */
.service-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--saw-border);
}
.service-block:last-of-type { border-bottom: none; }
.service-block .service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(184, 148, 46, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-block h2 {
  font-size: 1.75rem;
  color: var(--saw-navy);
  margin-bottom: 1rem;
}
.service-block p {
  color: var(--saw-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 1.25rem;
}
.service-block ul {
  color: var(--saw-muted);
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.service-block ul li { margin-bottom: 0.4rem; }

/* About highlight */
.highlight-box {
  background: var(--saw-navy);
  color: #fff;
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(184, 148, 46, 0.2) 0%, transparent 70%);
}
.highlight-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--saw-gold-light);
}
.highlight-box dl {
  margin: 0;
}
.highlight-box dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}
.highlight-box dd {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}
.highlight-box dd:last-child { margin-bottom: 0; }

.prose p {
  color: var(--saw-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.prose p:last-child { margin-bottom: 0; }

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--saw-navy) 0%, var(--saw-navy-light) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(184, 148, 46, 0.15) 0%, transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  font-weight: 600;
}
.cta-band p {
  opacity: 0.82;
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Contact form */
.contact-panel {
  background: var(--saw-paper);
  border: 1px solid var(--saw-border);
  border-radius: 2px;
  padding: 2.5rem;
  box-shadow: var(--saw-shadow-lg);
}
.contact-form .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saw-navy);
  margin-bottom: 0.5rem;
}
.contact-form .form-control {
  border: 1px solid var(--saw-border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: var(--saw-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control:focus {
  border-color: var(--saw-navy);
  box-shadow: 0 0 0 3px rgba(12, 31, 61, 0.08);
  background: #fff;
}
.contact-form .captcha-row img {
  border: 1px solid var(--saw-border);
  border-radius: 2px;
}

/* Footer */
.site-footer {
  background: var(--saw-navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 0;
  font-size: 0.9rem;
}
.site-footer .footer-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer .footer-tagline {
  max-width: 280px;
  line-height: 1.65;
  margin-bottom: 0;
}
.site-footer h6 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saw-gold-light);
  margin-bottom: 1.25rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--saw-gold-light); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 991px) {
  .hero-section { padding: 4rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
  .navbar-saw .btn-nav-cta { margin-left: 0; margin-top: 0.75rem; }
}

@media (max-width: 767px) {
  .hero-section h1 { max-width: none; }
  .stat-item { margin-bottom: 1.5rem; }
}
