*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light dark;
  --background: #0d0910;
  --text: #f8f0e7;
  --muted: #bcaeac;
  --accent: #f18a78;
  --accent-strong: #ff9a87;
  --accent-contrast: #160d13;
  --border: rgba(241, 138, 120, 0.38);
  --border-soft: rgba(248, 240, 231, 0.14);
  --page-glow: rgba(104, 46, 74, 0.22);
  --page-start: #0c0810;
  --page-end: #100a11;
  --panel-start: rgba(42, 22, 36, 0.55);
  --panel-end: rgba(19, 13, 20, 0.78);
  --media-shadow: rgba(0, 0, 0, 0.38);
  --media-inner-border: rgba(255, 255, 255, 0.22);
  --link-decoration: rgba(241, 138, 120, 0.6);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1240px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 84% 14%, var(--page-glow), transparent 32rem),
    linear-gradient(180deg, var(--page-start) 0%, var(--background) 65%, var(--page-end) 100%);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--background);
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--border-soft);
}

.brand-mark {
  width: max-content;
  display: grid;
  text-decoration: none;
  line-height: 1;
}

.brand-mark span {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-mark em {
  margin-top: 5px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  justify-self: end;
}

.site-nav,
.social-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.social-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.social-links a:hover {
  color: var(--text);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--accent);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  min-height: min(calc(100vh - 96px), 900px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: clamp(64px, 8vw, 108px);
}

.studio-note,
.section-label {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.95;
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: 400;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-platform-note {
  max-width: 560px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-secondary {
  color: var(--text);
}

@media (hover: hover) {
  .button:hover,
  .header-cta:hover {
    background: var(--accent-strong);
    color: var(--accent-contrast);
    transform: translateY(-2px);
  }
}

.hero-media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 48% 48% 16px 16px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 80px var(--media-shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--media-inner-border);
  border-radius: inherit;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(64px, 10vw, 140px);
  padding-block: clamp(86px, 10vw, 140px);
  border-top: 1px solid var(--border);
}

.section-heading h2,
.visit-section h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
}

.section-heading > p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.service-number {
  color: var(--accent);
  font-family: var(--display);
  font-size: 19px;
}

.service-list h3 {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.visit-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--panel-start), var(--panel-end));
}

.hours-panel,
.contact-panel {
  padding: clamp(40px, 6vw, 76px);
}

.hours-panel {
  border-right: 1px solid var(--border);
}

.visit-section table {
  width: 100%;
  border-collapse: collapse;
}

.visit-section th,
.visit-section td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
}

.visit-section th {
  color: var(--muted);
  font-weight: 500;
  text-align: left;
}

.visit-section td {
  color: var(--text);
  text-align: right;
}

.panel-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

address {
  display: grid;
  gap: 22px;
  font-style: normal;
}

address div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

address span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

address a,
address p {
  width: fit-content;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  overflow-wrap: anywhere;
  text-decoration-color: var(--link-decoration);
  text-underline-offset: 4px;
}

.site-footer {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-block: 42px;
}

.site-footer .section-label {
  margin-bottom: 5px;
}

.site-footer p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

@media (prefers-color-scheme: light) {
  :root {
    --background: #f7f1ed;
    --text: #24151c;
    --muted: #6f5d64;
    --accent: #a83f52;
    --accent-strong: #8b2e46;
    --accent-contrast: #fffaf7;
    --border: rgba(139, 46, 70, 0.34);
    --border-soft: rgba(36, 21, 28, 0.14);
    --page-glow: rgba(204, 131, 147, 0.26);
    --page-start: #fffaf8;
    --page-end: #f1e7e3;
    --panel-start: #fffaf7;
    --panel-end: #f1e4e6;
    --media-shadow: rgba(76, 34, 52, 0.18);
    --media-inner-border: rgba(255, 255, 255, 0.62);
    --link-decoration: rgba(139, 46, 70, 0.58);
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .site-header {
    min-height: 82px;
  }

  .hero {
    min-height: calc(100vh - 82px);
    gap: clamp(36px, 5vw, 72px);
    padding-block: 38px 48px;
  }

  .studio-note {
    margin-bottom: 14px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(52px, 4.5vw, 62px);
  }

  .hero-lede {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-media {
    max-height: calc(100vh - 144px);
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-media {
    max-height: 680px;
    aspect-ratio: 4 / 3;
  }

  .services-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 24px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 82px;
  }

  .brand-mark span {
    font-size: 18px;
  }

  .brand-mark em {
    font-size: 15px;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 10px;
  }

  .hero {
    gap: 42px;
    padding-block: 60px 82px;
  }

  .studio-note {
    max-width: 290px;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-media {
    aspect-ratio: 1 / 1;
    border-radius: 44% 44% 12px 12px;
  }

  .services-section {
    padding-block: 78px;
  }

  .section-heading h2,
  .visit-section h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .hours-panel {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 440px) {
  .site-header {
    gap: 12px;
  }

  .brand-mark span {
    max-width: 146px;
    line-height: 1.1;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .hours-panel,
  .contact-panel {
    padding: 34px 24px;
  }

  .visit-section th,
  .visit-section td {
    display: block;
    text-align: left;
  }

  .visit-section th {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .visit-section td {
    padding-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
