:root {
  color-scheme: light;
  --paper: #f7f3e6;
  --ink: #0d2530;
  --ink-soft: #526269;
  --line: rgba(13, 37, 48, .16);
  --white: #fffdf7;
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -20%, #31505b 0, #0d2530 48%, #071820 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
}

.card {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.artwork {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.artwork img {
  position: absolute;
  width: 100%;
  height: auto;
  inset: -8px 0 auto;
}

.identity { padding: 26px 28px 18px; }

.eyebrow {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 9vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .015em;
}

.services {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.55;
}

.services span { padding: 0 .16em; color: #9b8b61; }

.primary-actions {
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 10px;
  padding: 0 28px 24px;
}

.button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease;
}

.button:active { transform: scale(.98); }
.button-primary { color: var(--paper); background: var(--ink); }
.button-secondary { background: transparent; }
.button-icon { font-size: 1.15rem; line-height: 1; }

.enquiries {
  margin: 0 18px;
  border-top: 1px solid var(--line);
}

.enquiry {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.enquiry strong { display: block; margin-bottom: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-weight: 400; }
.enquiry small { display: block; color: var(--ink-soft); font-size: .78rem; line-height: 1.35; }
.enquiry > span:last-child { font-size: 1.4rem; }

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 24px 18px;
}

.links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 24px;
  color: var(--ink-soft);
  font-size: .73rem;
}

footer a { text-decoration: none; }

@media (hover: hover) {
  .button:hover { transform: translateY(-1px); }
  .button-primary:hover { background: #183946; }
  .button-secondary:hover, .links a:hover { background: rgba(13,37,48,.06); }
  .enquiry:hover { background: rgba(13,37,48,.035); }
}

@media (max-width: 370px) {
  .identity { padding-inline: 21px; }
  .primary-actions { padding-inline: 21px; }
  .artwork { height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
