:root {
  --navy: #1b2c49;
  --navy-deep: #142238;
  --cream: #f8f4ec;
  --sky: #8fb4dd;
  --sky-soft: #cfe0f0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background-color: var(--cream);
  /* subtle ironwork-inspired scrollwork, echoing the balcony railing in the photo */
  background-image:
    radial-gradient(circle at 12px 12px, rgba(27,44,73,0.05) 1.4px, transparent 1.5px),
    radial-gradient(circle at 36px 36px, rgba(27,44,73,0.05) 1.4px, transparent 1.5px),
    linear-gradient(rgba(27,44,73,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,44,73,0.035) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 48px 48px, 48px 48px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}

a { color: inherit; }

/* ---------- Showcase / frame ---------- */
.showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7vh 6vw 8vh;
}

.frame-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.framed-photo {
  margin: 0;
  background: #fff;
  padding: 16px;
  border-radius: 1px;
  box-shadow:
    0 2px 4px rgba(20,34,56,0.06),
    0 30px 60px -24px rgba(20,34,56,0.35),
    0 0 0 1px rgba(27,44,73,0.06);
}

.framed-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(27,44,73,0.12);
}

.corner {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.corner-tl {
  top: -12px;
  left: -12px;
  border-top: 1px solid var(--sky);
  border-left: 1px solid var(--sky);
}
.corner-br {
  bottom: -12px;
  right: -12px;
  border-bottom: 1px solid var(--sky);
  border-right: 1px solid var(--sky);
}

.motif {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.motif svg { width: 120px; height: 20px; }

/* ---------- Contact ---------- */
.cta-row {
  display: flex;
  gap: 22px;
  margin-top: 40px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--navy);
  padding: 12px 26px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(27,44,73,0.3);
  border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.icon-btn svg { width: 15px; height: 15px; }
.icon-btn:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ---------- Footer ---------- */
footer {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 20px 6vw 30px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(27,44,73,0.55);
}

@media (max-width: 500px) {
  .showcase { padding: 6vh 6vw 7vh; }
  .cta-row { gap: 14px; }
  .icon-btn { padding: 11px 18px; font-size: 0.76rem; }
  footer { flex-direction: column; align-items: center; gap: 4px; }
}
