:root {
  color-scheme: light;
  --ink: #171615;
  --muted: #69635e;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dfd8ce;
  --olive: #58634a;
  --olive-dark: #323c2c;
  --brass: #b88945;
  --clay: #9b5f46;
  --charcoal: #20201f;
  --shadow: 0 22px 60px rgba(31, 27, 24, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 17, 16, .7), rgba(17, 17, 16, 0));
}

.site-header.solid {
  background: rgba(18, 18, 17, .96);
  box-shadow: 0 16px 38px rgba(17, 17, 16, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .1);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.header-action {
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 10px 18px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 82px) 70px;
  background: #1d1c1a;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 11, 10, .9) 0%, rgba(11, 11, 10, .78) 31%, rgba(11, 11, 10, .2) 68%, rgba(11, 11, 10, .05) 100%),
    linear-gradient(0deg, rgba(11, 11, 10, .56), rgba(11, 11, 10, .12) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 620px;
  font-size: clamp(54px, 8vw, 104px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2.1vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brass);
  color: #15110d;
}

.button.secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, .08);
  color: inherit;
}

.button.secondary.dark {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.section,
.band,
.map-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 82px);
}

.quick-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 82px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-book h2 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.intro {
  background: var(--charcoal);
  color: #fff;
}

.intro-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.intro-grid article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--charcoal);
}

.intro-grid span {
  color: var(--brass);
  font-weight: 900;
}

.intro-grid h2 {
  margin: 22px 0 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.intro-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 32px rgba(31, 27, 24, .06);
}

.package-card.featured {
  border-color: rgba(184, 137, 69, .75);
  box-shadow: var(--shadow);
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--olive);
  color: #fff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-top {
  padding-right: 82px;
}

.package-top h2 {
  margin-bottom: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.price {
  color: var(--clay);
  font-weight: 900;
}

.package-card > p {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-weight: 700;
}

.package-button {
  margin-top: auto;
  background: var(--ink);
  color: #fff;
}

.details {
  background: #e7e0d5;
}

.details-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.hours-panel,
.contact-panel {
  padding: clamp(28px, 5vw, 50px);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 45px rgba(31, 27, 24, .08);
}

.hours-list {
  margin: 28px 0 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(120px, .7fr) 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.hours-list dt {
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

address {
  color: var(--muted);
  font-size: 19px;
  font-style: normal;
}

.contact-panel .button.secondary {
  border-color: var(--ink);
  background: transparent;
}

.map-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  background: var(--olive-dark);
  color: #fff;
}

.map-copy {
  max-width: 420px;
}

.map-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.map-frame {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: #d9d3c7;
}

.map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 82px);
  background: #111;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.booking-page {
  background:
    linear-gradient(180deg, rgba(231, 224, 213, .75), rgba(251, 250, 247, 0) 420px),
    var(--paper);
}

.booking-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 150px clamp(20px, 6vw, 82px) 46px;
}

.booking-hero > div {
  max-width: 800px;
}

.booking-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
}

.booking-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
}

.booking-packages {
  padding-top: 28px;
}

.booking-packages .package-grid {
  gap: 14px;
}

.booking-packages .package-card {
  min-height: 245px;
  padding: 24px;
}

.booking-packages .package-card > p {
  margin-bottom: 22px;
}

.square-booking {
  background: var(--charcoal);
  color: #fff;
}

.square-booking-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.square-booking-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
}

.square-widget {
  margin-top: 28px;
}

.square-widget iframe,
.square-widget > div {
  max-width: 100%;
}

.stylist-page {
  background: var(--paper);
}

.stylist-hero {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 138px clamp(20px, 6vw, 82px) clamp(64px, 8vw, 100px);
  background:
    linear-gradient(120deg, rgba(231, 224, 213, .9), rgba(251, 250, 247, 0) 58%),
    var(--paper);
}

.stylist-photo-wrap {
  overflow: hidden;
  border-radius: 8px;
  background: #e5ded4;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.stylist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.stylist-intro {
  max-width: 720px;
}

.stylist-intro h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 82px);
}

.stylist-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.stylist-actions {
  color: var(--ink);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  background: #e7e0d5;
}

.visit-copy {
  position: sticky;
  top: 96px;
}

.visit-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.floor-plan-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 45px rgba(31, 27, 24, .08);
}

.floor-plan-frame {
  position: relative;
  min-height: 420px;
  overflow: auto;
}

.floor-plan-frame img {
  width: 100%;
  min-width: 960px;
  height: auto;
}

.stylist-contact {
  background: var(--paper);
}

.stylist-contact-panel {
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 780px;
    align-items: end;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 11, 10, .92) 0%, rgba(11, 11, 10, .68) 46%, rgba(11, 11, 10, .18) 100%),
      linear-gradient(90deg, rgba(11, 11, 10, .4), rgba(11, 11, 10, .08));
  }

  .intro-grid,
  .package-grid,
  .details-grid,
  .map-section {
    grid-template-columns: 1fr;
  }

  .booking-hero {
    display: block;
    padding-top: 128px;
  }

  .quick-book {
    display: grid;
  }

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

  .visit-copy {
    position: static;
  }

  .package-card {
    min-height: 0;
  }

  .map-copy {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    max-width: 230px;
    font-size: 13px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
  }

  .header-action {
    padding: 8px 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero {
    min-height: 720px;
    padding: 96px 18px 46px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-list dd {
    text-align: left;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }

  .stylist-hero {
    padding-top: 112px;
  }

  .floor-plan-frame {
    min-height: 320px;
  }
}
