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

:root {
  --navy: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --cream: #faf8f4;
  --text: #2c2c2c;
  --text-light: #555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
}

/* ── HERO (logo + tagline merged into one navy block) ── */
.hero {
  background: var(--navy);
  text-align: center;
  padding: 64px 24px 72px;
  border-bottom: 3px solid var(--gold);
}

.logo {
  width: min(320px, 72vw);
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.tagline {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ── SHARED ── */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}

/* ── ABOUT ── */
.about {
  padding: 64px 0;
  background: var(--cream);
}

.about p {
  margin-top: 24px;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.85;
}

/* ── CONTACT ── */
.contact {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
}

.info-list {
  margin-top: 32px;
}

.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #efe8d8;
  align-items: start;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.info-value a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.info-value a:hover {
  color: var(--gold);
}

.map-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.map-btn:hover {
  background: #16304f;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 32px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.footer-addr {
  margin-top: 6px;
  font-size: 0.73rem;
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
