*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pine: #1f4d3a;
  --pine-deep: #163628;
  --mint: #8fd6b5;
  --sand: #f4f0e6;
  --ink: #18231e;
  --muted: #5d6b64;
  --line: rgba(31, 77, 58, 0.14);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: #f7f5ef;
  line-height: 1.55;
}

h1, h2, h3, .brand strong, .phone, .foot-brand {
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pine);
  box-shadow: 0 0 0 6px rgba(31, 77, 58, 0.15);
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong { font-size: 1.25rem; }

.brand small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine);
}

.nav nav {
  display: flex;
  gap: 1.35rem;
  font-weight: 600;
}

.nav nav a:hover { color: var(--pine); }

.call {
  background: var(--pine);
  color: var(--white);
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  min-height: min(84vh, 700px);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 85% 20%, rgba(143, 214, 181, 0.35), transparent 40%),
    linear-gradient(155deg, #163628 0%, #1f4d3a 50%, #2a6a50 100%);
  color: var(--white);
}

.hero-inner {
  padding: 5rem 0 4.2rem;
  animation: up 0.85s ease both;
}

@keyframes up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.place {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.96;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--mint);
}

.lead {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  margin-bottom: 1.7rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.solid {
  background: var(--mint);
  color: var(--pine-deep);
}

.btn.solid.dark {
  background: var(--pine-deep);
  color: var(--white);
}

.btn.soft {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.legal {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  text-align: center;
  padding: 0.7rem 0;
}

.section { padding: 4.6rem 0; }

.sec-head { margin-bottom: 2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.5rem;
}

.sec-head h2,
.split h2,
.contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  min-height: 170px;
  transition: transform 0.25s ease;
}

.grid article:hover { transform: translateY(-3px); }

.grid h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
  color: var(--pine-deep);
}

.grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.band {
  background: var(--sand);
  padding: 1.6rem 0;
}

.band-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.band strong {
  display: block;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.7rem;
  color: var(--pine-deep);
}

.band span {
  color: var(--muted);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.split p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel {
  background: var(--pine-deep);
  color: var(--white);
  border-radius: 20px;
  padding: 1.55rem;
}

.panel h3 {
  color: var(--mint);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.panel dl { display: grid; gap: 0.85rem; }

.panel dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.contact {
  background:
    linear-gradient(180deg, rgba(31, 77, 58, 0.06), transparent),
    #f7f5ef;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.phone {
  display: inline-block;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--pine);
  margin: 0.85rem 0 0.5rem;
}

.mail {
  display: inline-block;
  color: var(--pine-deep);
  font-weight: 700;
  margin-bottom: 1rem;
  word-break: break-all;
}

.addr {
  color: var(--muted);
  line-height: 1.7;
}

.box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
}

.box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--pine-deep);
}

.box p {
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.foot {
  background: #101814;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.4rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.foot h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.55rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .nav nav,
  .call { display: none; }

  .grid,
  .band-row,
  .split,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
