@font-face {
  font-family: "Spectral";
  src: url("../fonts/Spectral-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../fonts/Spectral-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Spectral";
  src: url("../fonts/Spectral-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #f5f1ea;
  --paper: #f4eae0;
  --fg: #17120e;
  --gold: #ba9255;
  --text-muted: #4e433a;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.16);
  --radius-lg: 24px;
  --font-body: "Spectral", "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  background-color: var(--bg);
  background-image: radial-gradient(circle at top left, #ffffff, var(--bg));
  font-family: var(--font-body);
  color: var(--fg);
}

.page {
  width: min(1280px, 100%);
}

.page__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background-color: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.page__photo-wrapper {
  margin: 0;
}

.page__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page__content {
  padding: clamp(32px, 4vw, 48px) clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
}

.page__header {
  margin-bottom: clamp(24px, 3vh, 32px);
}

.page__logo {
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

.page__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page__services {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.page__services li {
  text-align: center;
}

.page__tagline {
  margin: 0 0 32px;
  text-align: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.page__contact-intro {
  margin: 0 0 8px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.page__contact {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
}

.page__contact a {
  color: inherit;
  text-decoration: none;
}

.page__contact a:hover,
.page__contact a:focus-visible {
  text-decoration: underline;
}

.page__contact-separator {
  margin: 0 6px;
}

.page__footer {
  margin-top: clamp(24px, 3vh, 32px);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .page__card {
    grid-template-columns: 1fr;
  }

  .page__photo-wrapper {
    max-height: 320px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 12px;
  }

  .page__content {
    padding: 24px 20px;
  }

  .page__services {
    font-size: 1rem;
  }

  .page__tagline {
    font-size: 1.05rem;
  }
}
