@font-face {
  font-family: 'Open Sans';
  src: url('https://claytonsmith.ca/assets/fonts/open-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('https://claytonsmith.ca/assets/fonts/open-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('https://claytonsmith.ca/assets/fonts/open-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-top: #1F3431;
  --bg-bottom: #748a91;
  --gold: #FFD700;
  --gold-hover: #e6c200;
  --card-bg: #ffffff;
  --text: #111111;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-bottom);
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 2rem 1.25rem 1rem;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-align: center;
}

.page-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.identity {
  width: min(100%, 400px);
  margin: 0 auto 1.75rem;
}

.brand-link {
  display: inline-block;
}

.logo {
  display: block;
  width: 250px;
  height: 107px;
  margin: 0 auto 0.8rem;
  object-fit: contain;
}

.headshot {
  display: block;
  width: 125px;
  height: 125px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.positioning {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 0.95rem;
}

.booking-intro {
  margin-bottom: 1rem;
  color: var(--gold);
}

.booking-intro h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
}

.booking-intro p {
  margin-bottom: 0;
  font-size: 1rem;
}

.scheduler-card {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  text-align: left;
}

.scheduler-frame {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
  background: var(--card-bg);
}

.site-footer {
  margin-top: 2.5rem;
  padding: 0 0 1rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

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

@media (max-width: 600px) {
  body {
    padding: 1.4rem 0.65rem 0.75rem;
  }

  .identity {
    margin-bottom: 1.4rem;
  }

  .logo {
    width: 200px;
    height: 86px;
  }

  .headshot {
    width: 112px;
    height: 112px;
  }

  .scheduler-card {
    border-radius: 10px;
  }

  .scheduler-frame {
    height: 760px;
  }

  .site-footer span {
    display: none;
  }

  .site-footer a {
    display: block;
    margin-top: 0.3rem;
  }
}
