:root {
  color-scheme: light;
  --ink: #050505;
  --muted: #585858;
  --paper: #ffffff;
  --line: #d8d8d8;
  --accent: #ff1493;
  --accent-dark: #d90078;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

button,
input,
textarea,
select {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand-link,
nav a {
  font-size: 14px;
  text-decoration: none;
}

.brand-link {
  font-weight: 600;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

nav a:hover {
  color: var(--accent);
}

.section {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 88px 28px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-grid,
.two-column,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  max-width: 760px;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  font-size: clamp(46px, 6vw, 76px);
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.intro-copy {
  max-width: 660px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
}

.intro-copy p,
.areas p {
  margin: 0 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.secondary-button {
  margin-top: 30px;
}

.portrait-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border: 1px solid var(--accent);
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 45% 50%;
  filter: saturate(0.96) contrast(1.02);
}

.landscape-frame img {
  aspect-ratio: 3 / 2;
  object-position: center;
}

.work-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.areas {
  align-self: stretch;
  padding-top: 8px;
  color: var(--muted);
  font-size: 18px;
}

.areas ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.areas li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.book-section {
  min-height: 74vh;
}

.calendly-embed {
  min-height: 700px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.calendly-inline-widget {
  width: 100%;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 92px;
    padding: 16px 20px;
  }

  .section {
    min-height: auto;
    padding: 70px 20px;
  }

  .hero-grid,
  .two-column,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 38px;
  }

  .portrait-frame img {
    min-height: 360px;
  }

  .calendly-embed {
    min-height: 720px;
  }

  .portrait-frame::after {
    inset: 10px -10px -10px 10px;
  }
}
