:root {
  color-scheme: dark;
  --background: #111010;
  --foreground: #faf7f4;
  --muted: #ada6a1;
  --accent: #f96e43;
  --accent-hover: #ff8967;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--foreground);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

body {
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
}

::selection {
  color: var(--background);
  background: var(--accent);
}

.contact {
  width: min(100%, 1160px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.portrait {
  display: block;
  width: 100%;
  height: auto;
}

.name {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

h1 {
  margin: 0;
  font-family: "Avenir Next", "Century Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(64px, 7.4vw, 102px);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -0.065em;
}

h1 span { display: block; }

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 32px;
  min-height: 54px;
  padding: 14px 29px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--background);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.email-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.email-button:active { transform: translateY(0); }

.email-button:focus-visible {
  outline: 3px solid var(--foreground);
  outline-offset: 5px;
}

.booking {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding: 24px 56px 80px;
}

.booking h2 {
  margin: 0 0 36px;
  font-family: "Avenir Next", "Century Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.045em;
  text-align: center;
}

.calendar {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  color-scheme: light;
}

.calendar iframe {
  display: block;
  height: 850px;
}

@media (max-width: 680px) {
  .contact {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 36px;
    padding: 48px 24px;
    text-align: center;
  }

  .portrait { width: min(64vw, 280px); }
  .name { margin-bottom: 14px; font-size: 15px; }
  h1 { font-size: clamp(40px, 8.5vw, 58px); }
  h1 span { display: inline; }
  .email-button { margin-top: 24px; }
  .booking { padding: 24px 16px 48px; }
  .booking h2 { margin-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .email-button { transition: none; }
  .email-button:hover { transform: none; }
}
