:root{
  --bg:#f8f4ee; /* pale cream to match logo */
  --ink:#1b1b18;
  --muted:#6b655e;
  --accent:#c9b79a; /* subtle warm accent */
  --card:#fff;
  --radius:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: "Playfair Display", serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.frame{
  width:100%;
  max-width:680px;
  height:calc(100vh - 40px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  text-align:center;
  padding:28px;
  border-radius:18px;
}

/* Logo */
.logo{
  width: min(64vw, 420px);
  height:auto;
  max-height:40%;
  object-fit:contain;
  -webkit-user-drag:none;
  user-select:none;
  filter:drop-shadow(0 6px 18px rgba(27,27,24,0.12));
  transition:transform .6s cubic-bezier(.2,.9,.3,1);
}
.logo:active{transform:scale(.995)}

/* Tagline */
.tagline{
  margin:0;
  color:var(--muted);
  font-size:1rem;
  letter-spacing:.02em;
}

/* Contact card */
.contact-card{
  margin-top:4px;
  width:100%;
  max-width:520px;
  background:linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.94));
  border-radius:var(--radius);
  box-shadow:0 6px 22px rgba(17,16,14,0.06);
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:stretch;
}

.contact-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-radius:10px;
  text-decoration:none;
  color:var(--ink);
  background:transparent;
  transition:background .18s ease, transform .12s ease;
  min-height:44px; /* touch friendly */
}
.contact-line .label{
  font-size:0.85rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-right:12px;
}
.contact-line .value{
  font-weight:600;
  font-size:0.98rem;
  color:var(--ink);
}

/* Hover / active effects */
.contact-line:active{transform:translateY(1px)}
.contact-line:hover{background:rgba(201,183,154,0.06)}

/* Footer */
.foot{ color:var(--muted); margin-top:6px }

/* Mobile adjustments - ensure single screen fit */
@media (max-height:700px){
  .logo{max-height:34%}
  .contact-card{padding:8px}
  .tagline{font-size:.92rem}
}