:root {
  --bg: #122126;
  --text: #f3f1eb;
  --muted: #d9d6cf;
  --accent: #d7b45a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at top right, #1b2e34 0%, #122126 45%, #0f1b1f 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  max-width: 1300px;
  margin: auto;
  padding: 40px 40px 20px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */

h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem,4vw,4.6rem);
  font-weight: 800;
  letter-spacing: 2px;
}

.subtitle {
  margin-bottom: 30px;
  font-size: 1.35rem;
  color: #d8d5ce;
  font-weight: 500;
}

.lead {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.hours,
.address {
  margin: 25px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

/* CONTACT */

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 25px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.contact-label {
  font-size: 1rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 30px;
  background: linear-gradient(145deg,#d7b45a,#c9a24d);
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: all .25s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.icon {
  background: rgba(255,255,255,0.25);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT */

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.circle-frame {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 2px solid #d7b45a;
  padding: 10px;
  box-shadow: 0 0 0 2px rgba(215,180,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner,
.photo-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
}

.logo-inner img,
.photo-inner img {
  width: 85%;
  height: auto;
}

/* FOOTER */

.site-footer {
  text-align: center;
  padding: 14px 10px 18px;
  font-size: 0.85rem;
  color: #cfcac2;
  border-top: 1px solid rgba(215,180,90,0.18);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.heart {
  color: #e25555;
}

/* MOBILE */

@media (max-width: 900px) {

  .page {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .right {
    order: -1;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

}