:root {
  --soil: #3d2b1f;
  --bark: #6b4c35;
  --field: #4a5c38;
  --hay: #c8a85a;
  --stone: #9e9688;
  --cream: #f4efe6;
  --sky: #d6e4ec;
  --offwhite: #faf8f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--offwhite);
  color: var(--soil);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(61,43,31,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--hay);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--hay);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
}

.nav-logo span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Space Mono', monospace;
  color: var(--stone);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

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

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

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

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--soil);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2.5rem 5rem;
  max-width: 900px;
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hay);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 em {
  color: var(--hay);
  font-style: normal;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--sky);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--hay);
  color: var(--soil);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: all 0.25s;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.hero-cta svg { width: 16px; height: 16px; }

.strip {
  background: var(--field);
  color: var(--cream);
  padding: 1rem 2.5rem;
  display: flex;
  gap: 3rem;
  overflow: auto;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.strip span { white-space: nowrap; }
.strip span::before { content: '✦ '; color: var(--hay); }

section { padding: 5rem 2.5rem; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--soil);
  margin-bottom: 2rem;
}

.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--bark);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--soil);
  font-weight: 600;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--field);
  color: var(--cream);
  padding: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.about-badge span {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  color: var(--hay);
}

.services-section {
  background: var(--soil);
  padding: 5rem 2.5rem;
}

.services-section .section-title { color: var(--cream); }
.services-section .section-label { color: var(--stone); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bark);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: #2a1d13;
  padding: 2rem 1.75rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card:hover { background: #3a2718; }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  color: var(--hay);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.65;
  font-weight: 300;
}

.service-card .card-hint {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--hay);
  opacity: 0.6;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: opacity 0.25s;
}
.service-card:hover .card-hint { opacity: 1; }

.contact-section {
  background: var(--field);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: 'CONTACT';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-section .section-label { color: rgba(255,255,255,0.5); }
.contact-section .section-title { color: var(--cream); }

.contact-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}

.contact-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hay);
  margin-bottom: 0.75rem;
}

.contact-card a,
.contact-card p {
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 300;
  word-break: break-all;
}

.contact-card a:hover { color: var(--hay); }

.contact-cta {
  display: inline-block;
  background: var(--hay);
  color: var(--soil);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: all 0.25s;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-cta:hover { background: var(--cream); transform: translateY(-2px); }

.contact-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3);
}

footer {
  background: #1e1008;
  color: var(--stone);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--hay);
  letter-spacing: 0.1em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service detail page styles */
.service-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--soil);
  padding-top: 5rem;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2.5rem 4rem;
  max-width: 1100px;
}

.service-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.service-hero h1 em {
  color: var(--hay);
  font-style: normal;
}

.service-hero p.lede {
  font-size: 1.2rem;
  color: var(--sky);
  font-weight: 300;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hay);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--stone);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--hay); }
.breadcrumb .sep { color: var(--stone); margin: 0 0.5rem; }

.service-body {
  background: var(--cream);
  padding: 5rem 2.5rem;
}

.service-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .service-body-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.service-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--soil);
  margin: 2rem 0 1rem;
  letter-spacing: 0.02em;
}

.service-body h2:first-child { margin-top: 0; }

.service-body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--bark);
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.service-body strong { color: var(--soil); font-weight: 600; }

.service-body ul {
  margin: 0 0 1.5rem 1.2rem;
  color: var(--bark);
}

.service-body li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
  font-weight: 300;
}

.service-aside {
  background: var(--soil);
  color: var(--cream);
  padding: 2rem 1.75rem;
  align-self: start;
  position: sticky;
  top: 6rem;
}

.service-aside h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--hay);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-aside p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--stone);
  margin-bottom: 1rem;
}

.service-aside .aside-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.service-aside .aside-list li {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-aside .aside-list li::before {
  content: '✦ ';
  color: var(--hay);
}

.service-aside .aside-cta {
  display: inline-block;
  background: var(--hay);
  color: var(--soil);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  transition: all 0.25s;
}
.service-aside .aside-cta:hover { background: var(--cream); }

.service-gallery {
  background: var(--soil);
  padding: 5rem 2.5rem;
}

.service-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-gallery .section-title { color: var(--cream); }
.service-gallery .section-label { color: var(--stone); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #1e1008;
}

.related {
  background: var(--cream);
  padding: 4rem 2.5rem;
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--soil);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .related-list { grid-template-columns: 1fr; }
}

.related-list a {
  display: block;
  padding: 1.25rem 1.4rem;
  background: var(--soil);
  color: var(--cream);
  text-decoration: none;
  transition: background 0.25s;
}

.related-list a:hover { background: #3a2718; }

.related-list .name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--hay);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.related-list .desc {
  font-size: 0.9rem;
  color: var(--stone);
  font-weight: 300;
}

@media (max-width: 768px) {
  nav { padding: 1rem 1rem; }
  .nav-links { display: none; }
  .hero-content { padding: 4rem 1rem 4rem; }
  .service-hero-content { padding: 3rem 1rem 3rem; }
  section { padding: 4rem 1rem; }
  .about { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1rem; }
  .about-badge { bottom: 0; left: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .service-body { padding: 3rem 1rem; }
  .service-gallery { padding: 4rem 1rem; }
  .related { padding: 3rem 1rem; }
  .service-aside { position: static; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}
