:root {
  --dark: #152e4f;
  --dark-2: #1d3858;
  --accent: #f3a15e;
  --accent-dark: #d9884a;
  --sage: #829d79;
  --sage-light: #e8ede6;
  --sage-mid: #758d6c;
  --light: #f7f4ee;
  --white: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6577;
  --border: #ddd6c8;
  --border-light: #ece8df;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --nav-h: 68px;
  --banner-h: 42px;
  --max-w: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero[id] {
  scroll-margin-top: 110px;
}

/* Eyebrow labels */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.85rem;
}

.eyebrow.centered {
  display: block;
  text-align: center;
}

/* Section titles */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-title.centered {
  text-align: center;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 32em;
  margin: 0 auto;
  line-height: 1.55;
}

.section-sub.centered {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.8rem 1.65rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
  min-height: 44px;
}

.btn-filled {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-filled-light {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn-filled-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Navigation */
.nav-wrap {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-right: auto;
  line-height: 1.2;
}

.nav-logo:hover {
  color: var(--dark);
}

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

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.nav-cta {
  margin-left: 0.5rem;
  font-size: 0.88rem;
  padding: 0.65rem 1.3rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
  align-self: center;
}

/* Hero */
.hero {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

.hero-band {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(155deg, var(--sage) 0%, var(--sage-mid) 100%);
}

.mountain-motif {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  color: rgba(21, 46, 79, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-panel {
  background: var(--white);
  padding: 2.75rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 50px rgba(21, 46, 79, 0.12);
  position: relative;
  z-index: 3;
  margin-right: -1.5rem;
}

.hero-panel h1 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.hero-panel p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 28em;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(21, 46, 79, 0.18);
  position: relative;
  z-index: 2;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: 1;
}

/* Trust line */
.trust-line {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
}

.trust-line span {
  margin: 0 0.6rem;
  opacity: 0.35;
}

/* Services menu */
.services {
  background: var(--white);
}

.services .container {
  max-width: 860px;
}

.service-menu {
  list-style: none;
  margin-top: 2.5rem;
}

.service-menu li {
  display: flex;
  align-items: baseline;
  gap: 1.75rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-menu li:first-child {
  border-top: 1px solid var(--border-light);
}

.service-num {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  min-width: 2rem;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.service-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Proof / Gallery */
.proof {
  background: var(--sage-light);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.photo-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--border-light);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.photo-item:hover img {
  transform: scale(1.04);
}

.photo-item.span-4 {
  grid-column: span 4;
}

.photo-item.span-3 {
  grid-column: span 3;
}

.photo-item.span-2 {
  grid-column: span 2;
}

.photo-item.height-tall {
  height: 290px;
}

.photo-item.height-short {
  height: 230px;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: 0 8px 30px rgba(21, 46, 79, 0.1);
}

/* CTA band */
.cta-band {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.cta-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  color: rgba(243, 161, 94, 0.08);
}

.cta-mountain svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.cta-band p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 22em;
  line-height: 1.55;
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.55rem;
}

.footer ul a,
.footer-phone {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer ul a:hover,
.footer-phone:hover {
  color: var(--accent);
}

.footer address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: