*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --omro-lake: #2b6cb0;
  --omro-meadow: #4a7c59;
  --omro-sand: #e8dcc4;
  --omro-white: #fefefe;
}

body.omro-body {
  font-family: 'Cabin', sans-serif;
  background: var(--omro-sand);
  color: #2d3748;
  line-height: 1.65;
}

h1, h2, h3 { font-family: 'Merriweather', serif; }

.omro-hero {
  display: grid;
  grid-template-columns: auto 1fr 280px;
  gap: 1.5rem;
  align-items: center;
  padding: 2.5rem 5%;
  background: linear-gradient(135deg, var(--omro-lake), #1a4d7a);
  color: var(--omro-white);
}

.omro-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.omro-pin__head {
  width: 36px;
  height: 36px;
  background: var(--omro-meadow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--omro-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.omro-pin__point {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--omro-meadow);
  margin-top: -4px;
}

.omro-hero__region {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.omro-hero__title {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  margin: 0.35rem 0;
  line-height: 1.3;
}

.omro-hero__tagline {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.9;
}

.omro-photo-placeholder {
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 8px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.omro-pillars {
  padding: 3rem 5%;
  background: var(--omro-white);
}

.omro-pillars__title {
  text-align: center;
  color: var(--omro-lake);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.omro-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.omro-pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--omro-sand);
  border-radius: 8px;
  border-top: 4px solid var(--omro-meadow);
}

.omro-pillar__pin {
  width: 16px;
  height: 16px;
  background: var(--omro-lake);
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 0 var(--omro-meadow);
}

.omro-pillar h3 {
  font-size: 1.1rem;
  color: var(--omro-meadow);
  margin-bottom: 0.5rem;
}

.omro-pillar p { font-size: 0.92rem; }

.omro-brochure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.omro-brochure__photo {
  background: linear-gradient(135deg, var(--omro-meadow), #3d6b4a);
  border-radius: 8px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--omro-white);
  font-family: 'Merriweather', serif;
  font-style: italic;
  opacity: 0.9;
}

.omro-brochure__text h2 {
  color: var(--omro-lake);
  margin-bottom: 1rem;
}

.omro-brochure__list {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.omro-brochure__list li { margin-bottom: 0.35rem; }

.omro-connect {
  background: var(--omro-lake);
  color: var(--omro-white);
  padding: 2.5rem 5%;
}

.omro-connect h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.omro-connect__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.omro-connect__info {
  font-style: normal;
  line-height: 1.9;
  font-size: 1rem;
}

.omro-connect__info a { color: var(--omro-sand); }

.omro-form__field { margin-bottom: 0.85rem; }

.omro-form__field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.omro-form__field input,
.omro-form__field textarea {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  font-family: inherit;
}

.omro-form__field--check {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.45rem;
}

.omro-form__field--check input { width: auto; }
.omro-form__field--check label { flex: 1; }
.omro-form__field--check a { color: var(--omro-sand); }

.omro-form__error { display: block; color: #ffcdd2; font-size: 0.8rem; min-height: 1rem; }

.omro-form__submit {
  background: var(--omro-meadow);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.omro-form__submit:hover { background: #3d6b4a; }

.omro-form__success {
  margin-top: 0.75rem;
  padding: 0.65rem;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.omro-legal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 5%;
  font-size: 0.88rem;
}

.omro-legal h2 { font-size: 1rem; color: var(--omro-lake); margin-bottom: 0.5rem; }

.omro-footer {
  text-align: center;
  padding: 1.25rem;
  background: #1a365d;
  color: var(--omro-sand);
  font-size: 0.82rem;
}

.omro-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.omro-footer a { color: var(--omro-sand); text-decoration: none; }

@media (max-width: 768px) {
  .omro-hero { grid-template-columns: 1fr; text-align: center; }
  .omro-pin { justify-content: center; }
  .omro-pillars__grid { grid-template-columns: 1fr; }
  .omro-brochure { grid-template-columns: 1fr; }
  .omro-connect__layout { grid-template-columns: 1fr; }
  .omro-legal { grid-template-columns: 1fr; }
}
