@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --bark: #2C1810;
  --wood: #5C3D2E;
  --cedar: #A0522D;
  --grain: #D4A574;
  --cream: #F5F0E8;
  --sage: #6B7C5C;
  --iron: #3A3A3A;
  --offwhite: #FAF7F2;
  --accent: #8B1A1A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--offwhite);
  color: var(--iron);
  font-size: 17px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--grain);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo span { color: var(--cream); font-weight: 400; font-size: 1rem; }

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

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  transition: opacity .2s, color .2s;
}

.nav-links a:hover { opacity: 1; color: var(--grain); }

.nav-cta {
  background: var(--accent);
  color: var(--cream) !important;
  padding: .45rem 1.1rem !important;
  border-radius: 3px;
  opacity: 1 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #a02020 !important; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); transition: .3s; }
.mobile-menu { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44,24,16,.95) 0%, rgba(92,61,46,.7) 60%, rgba(44,24,16,.85) 100%),
    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='%23a0522d' fill-opacity='0.08'%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");
}

/* Wood grain lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(160,82,45,.06) 80px,
    rgba(160,82,45,.06) 82px
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  animation: fadeUp .9s ease both;
}

.hero-logo-side {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.1s ease both;
}

.hero-logo-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

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

.hero p {
  color: rgba(245,240,232,.8);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: .8rem 1.8rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--cedar);
  color: var(--cream);
}
.btn-primary:hover { background: var(--wood); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

.btn-outline {
  background: transparent;
  color: var(--grain);
  border: 2px solid var(--grain);
}
.btn-outline:hover { background: var(--grain); color: var(--bark); }

/* ── SERVICE STRIP ── */
.service-strip {
  background: var(--wood);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.service-strip-item {
  flex: 1;
  min-width: 200px;
  padding: 1.4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--cream);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.service-strip-item:last-child { border-right: none; }
.service-strip-item .icon { font-size: 1.3rem; }

/* ── SECTIONS ── */
section { padding: 5rem 2.5rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: .7rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--wood);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.service-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,24,16,.08);
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(44,24,16,.14);
}

.service-card-img {
  height: 220px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--cedar);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-body { padding: 1.6rem; }

.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--bark);
  margin-bottom: .5rem;
}

.service-card-body p { color: var(--iron); font-size: .95rem; opacity: .85; }

/* ── WHY US ── */
.why-section { background: var(--bark); }

.why-section .section-title { color: var(--grain); }
.why-section .section-label { color: var(--cedar); }
.why-section .section-subtitle { color: rgba(245,240,232,.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(212,165,116,.2);
  border-radius: 6px;
  background: rgba(255,255,255,.03);
  transition: background .2s;
}

.why-card:hover { background: rgba(255,255,255,.07); }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--grain);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.why-card p { color: rgba(245,240,232,.65); font-size: .9rem; }

/* ── LOCATIONS SECTION ── */
.locations-section { background: var(--cream); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.location-card {
  background: white;
  border: 1px solid rgba(92,61,46,.15);
  border-radius: 5px;
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 600;
  font-size: .92rem;
  transition: all .2s;
  box-shadow: 0 1px 6px rgba(44,24,16,.05);
}

.location-card:hover {
  background: var(--wood);
  color: var(--cream);
  border-color: var(--wood);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44,24,16,.15);
}

.location-card .loc-icon { font-size: 1.2rem; opacity: .7; }

/* ── CONTACT ── */
.contact-section { background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--bark);
  margin-bottom: 1rem;
}

.contact-info p { color: var(--iron); opacity: .8; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(92,61,46,.1);
  font-size: .95rem;
}

.contact-detail .ci { font-size: 1.2rem; }
.contact-detail strong { color: var(--bark); display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

form { display: flex; flex-direction: column; gap: 1rem; }

input, textarea, select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(92,61,46,.2);
  border-radius: 4px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--iron);
  background: var(--offwhite);
  transition: border-color .2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--cedar);
}

textarea { height: 130px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--bark);
  color: rgba(245,240,232,.6);
  text-align: center;
  padding: 2.5rem;
  font-size: .88rem;
}

footer a { color: var(--grain); text-decoration: none; }

/* ── LOCATION PAGE ── */
.location-hero {
  background: var(--bark);
  padding: 4rem 2.5rem 3rem;
  text-align: center;
}

.location-hero .breadcrumb {
  color: var(--grain);
  font-size: .85rem;
  margin-bottom: 1rem;
}

.location-hero .breadcrumb a { color: var(--grain); text-decoration: none; }
.location-hero .breadcrumb a:hover { text-decoration: underline; }

.location-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: .8rem;
}

.location-hero p {
  color: rgba(245,240,232,.75);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.location-img-hero {
  height: 360px;
  background: linear-gradient(135deg, #e8ddd0 0%, #d4c4b0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cedar);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  gap: .6rem;
  border-bottom: 4px solid var(--cedar);
}

.location-img-hero .big-icon { font-size: 5rem; opacity: .35; }

.local-content { background: white; padding: 4rem 2.5rem; }

.local-content .section-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.local-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--bark);
  margin: 2rem 0 .8rem;
}

.local-body h2:first-child { margin-top: 0; }
.local-body p { color: var(--iron); opacity: .85; margin-bottom: 1rem; }

.sidebar-card {
  background: var(--cream);
  border: 1px solid rgba(92,61,46,.15);
  border-radius: 6px;
  padding: 1.8rem;
  position: sticky;
  top: 88px;
}

.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--bark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.sidebar-card .btn { width: 100%; text-align: center; margin-bottom: .7rem; display: block; }

.sidebar-services { list-style: none; margin-top: 1.5rem; }
.sidebar-services li {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(92,61,46,.1);
  font-size: .9rem;
  color: var(--wood);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bark);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--cream);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
  }
  .mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
  }

  .hero-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-logo-side { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .local-content .section-inner { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  section { padding: 3.5rem 1.5rem; }
  nav { padding: 0 1.5rem; }
}
