:root {
  --tone-royal: #2f4b8f;
  --tone-sand: #c9c7b7;
  --tone-deep: #001b3f;
  --tone-mist: #b1b5c9;
  --tone-midnight: #001332;
  --tone-ink: #10203f;
  --tone-paper: #f2f4f9;
}

body {
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(150deg, var(--tone-sand) 0%, var(--tone-royal) 36%, var(--tone-mist) 68%, var(--tone-sand) 100%);
}

main {
  position: relative;
  z-index: 0;
}

main > section {
  margin-top: 0;
}

.hero-view {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  margin-top: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 19, 50, 0.62) 0%, rgba(0, 27, 63, 0.36) 48%, rgba(0, 19, 50, 0.48) 100%);
}

.hero-nav-shell {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 4;
  background: rgba(0, 27, 63, 0.88);
  border: 1px solid rgba(177, 181, 201, 0.55);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  backdrop-filter: blur(5px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-icon::before {
  top: -0.42rem;
}

.nav-toggle-icon::after {
  top: 0.42rem;
}

.hero-nav-menu {
  display: contents;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.nav-left {
  justify-self: start;
  grid-column: 1;
}

.nav-brand {
  display: block;
  grid-column: 2;
  justify-self: center;
}

.nav-right {
  justify-content: flex-end;
  justify-self: end;
  grid-column: 3;
}

.nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(177, 181, 201, 0.16);
  border: 1px solid rgba(177, 181, 201, 0.8);
  box-shadow: 0 10px 20px rgba(0, 19, 50, 0.16);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-book:hover {
  transform: translateY(-1px);
  background: rgba(177, 181, 201, 0.24);
  box-shadow: 0 12px 24px rgba(0, 19, 50, 0.2);
}

.nav-book-label {
  display: inline;
}

.nav-book-icon {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 3px;
  position: relative;
  flex: 0 0 auto;
}

.nav-book-icon::before,
.nav-book-icon::after {
  content: "";
  position: absolute;
  top: -0.22rem;
  width: 2px;
  height: 0.45rem;
  background: currentColor;
  border-radius: 999px;
}

.nav-book-icon::before {
  left: 0.2rem;
}

.nav-book-icon::after {
  right: 0.2rem;
}

.hero-nav-shell a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  justify-self: center;
  grid-column: 2;
}

.nav-brand-mobile {
  display: none;
}

.link-muted {
  opacity: 0.95;
}

/* Removed unused .cart-dot styles. */

/* Removed unused .book-pill styles. */

.hero-copy-left,
.hero-copy-right {
  position: absolute;
  z-index: 3;
  color: #f6efe6;
}

.hero-copy-left {
  left: 22px;
  bottom: 56px;
  max-width: 700px;
}

.hero-copy-left h1 {
  font-size: clamp(3.1rem, 8.8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-copy-right {
  right: 48px;
  bottom: 72px;
  width: min(520px, calc(100% - 2.5rem));
}

.hero-copy-right p {
  font-size: clamp(1.15rem, 2vw, 2rem);
  line-height: 1.28;
  margin: 0 0 1.1rem;
  color: #f2e6da;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 0.76rem 1.3rem;
  border-radius: 999px;
  background: var(--tone-royal);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Removed unused .after-hero styles. */

.signature-wrap {
  background: var(--tone-paper);
  padding: 2rem 0 3.6rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 2rem;
  align-items: start;
}

.signature-intro {
  color: var(--tone-ink);
  padding-top: 0.2rem;
  position: sticky;
  top: 1.2rem;
}

.signature-intro h2 {
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 8ch;
}

.signature-intro p {
  margin: 1.7rem 0 1.35rem;
  font-size: 1.26rem;
  max-width: 26ch;
  color: #22365f;
}

.signature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.65rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: var(--tone-royal);
  font-size: 1.25rem;
  min-width: 220px;
  line-height: 1;
}

.signature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.55rem;
}

.service-card {
  background: var(--tone-paper);
  border: 1px solid rgba(0, 27, 63, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1.15rem 1.15rem 1.25rem;
  color: var(--tone-ink);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
}

.service-body h3 {
  margin: 0;
  font-size: clamp(1.32rem, 1.8vw, 1.9rem);
  line-height: 1.06;
  font-weight: 500;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: var(--tone-royal);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  width: fit-content;
  min-width: 140px;
}

.artists-wrap {
  background: #e8ebf3;
  padding: 2.8rem 0 3.3rem;
  color: var(--tone-ink);
}

.artists-title {
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
  margin: 0;
  text-align: center;
}

.artists-lead {
  margin: 0.7rem auto 2.1rem;
  color: #2a3e67;
  max-width: 24ch;
  font-size: clamp(1.06rem, 1.5vw, 1.9rem);
  line-height: 1.28;
  text-align: center;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.artist-item img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  border-radius: 14px;
  object-fit: cover;
}

.artist-item h3 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.97;
}

.artist-item p {
  margin: 0.65rem 0 0;
  color: #2a3e67;
  font-size: 1.02rem;
}

.clients-wrap {
  background: #d4dae9;
  padding: 3.2rem 0 2.8rem;
}

.clients-layout {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.clients-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
  line-height: 0.9;
  max-width: 8ch;
  color: var(--tone-ink);
}

.quote-item {
  margin: 2rem 0 0;
}

.quote-name {
  margin: 0;
  color: #1f3157;
  font-size: 1.02rem;
  line-height: 1.25;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.quote-text {
  margin: 0.65rem 0 0;
  color: #1c2e53;
  font-size: clamp(1.06rem, 1.65vw, 1.95rem);
  line-height: 1.18;
  max-width: 18ch;
}

.clients-image-wrap img {
  width: 100%;
  border-radius: 12px;
  min-height: 920px;
  object-fit: cover;
  object-position: center;
}

.transform-wrap {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--tone-paper) 0%, var(--tone-mist) 52%, var(--tone-sand) 100%);
}

.transform-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.14;
}

.transform-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.transform-card {
  width: min(1160px, 100%);
  background: var(--tone-paper);
  border-radius: 10px;
  padding: 1.7rem;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.transform-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.3vw, 4.8rem);
  line-height: 0.9;
  max-width: 8ch;
  color: var(--tone-ink);
}

.transform-copy p {
  margin: 1.2rem 0 1.2rem;
  color: #1c2e53;
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  line-height: 1.18;
  max-width: 20ch;
}

.transform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: var(--tone-royal);
  border-radius: 999px;
  min-width: 220px;
  padding: 0.78rem 1.2rem;
  font-size: 1.25rem;
  line-height: 1;
}

.transform-face img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
}

.footer-wrap {
  background: var(--tone-midnight);
  color: #fff;
  padding: 2.2rem 0 3.3rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-left,
.footer-right {
  display: grid;
  gap: 0.6rem;
}

.footer-right {
  text-align: right;
}

.footer-wrap a {
  color: #fff;
  text-decoration: none;
  font-size: 1.02rem;
}

.footer-center {
  text-align: center;
  margin-top: 2.8rem;
}

.hours,
.contact-lines {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.footer-brand {
  margin: 1.2rem 0 0.6rem;
  font-size: clamp(3.8rem, 8.2vw, 7.2rem);
  line-height: 0.9;
}

.contact-lines a {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .hero-nav-shell {
    grid-template-columns: 1fr auto 1fr;
    border-radius: 22px;
    padding: 0.85rem;
  }

  .nav-brand {
    grid-column: 2;
    order: 0;
  }

  .nav-brand-desktop {
    display: inline;
  }

  .hero-nav-menu {
    display: contents;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-right {
    justify-self: end;
  }

  .hero-copy-right {
    right: 20px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: 1fr 1fr;
  }

  .clients-layout,
  .transform-card {
    grid-template-columns: 1fr;
  }

  .clients-image-wrap img {
    min-height: 460px;
  }

  .transform-inner {
    min-height: 540px;
  }

  .footer-wrap a,
  .hours,
  .contact-lines {
    font-size: 1rem;
  }

  .signature-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-view {
    min-height: 100svh;
  }

  .hero-copy-left {
    left: 14px;
    bottom: 42px;
  }

  .hero-copy-right {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 154px;
    width: auto;
  }

  .hero-copy-right p {
    font-size: 1.1rem;
  }

  .hero-cta {
    min-width: 0;
    width: 100%;
  }

  .hero-nav-shell {
    top: 12px;
    left: 12px;
    right: 12px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    width: auto;
    grid-column: 1;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-brand {
    font-size: 1.8rem;
    grid-column: 2;
    justify-self: center;
  }

  .nav-brand-desktop {
    display: none;
  }

  .nav-brand-mobile {
    display: inline;
  }

  .nav-right {
    display: none;
  }

  .nav-book-label {
    display: inline;
  }

  .nav-book-icon {
    display: none;
  }

  .hero-nav-menu {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.7rem 0 0.2rem;
    grid-column: 1 / -1;
  }

  .hero-nav-shell.is-open .hero-nav-menu {
    display: grid;
  }

  .hero-nav-shell a {
    font-size: 0.95rem;
  }

  .nav-left {
    width: 100%;
    justify-content: center;
    justify-self: stretch;
  }

  .signature-wrap {
    padding-top: 2rem;
  }

  .signature-cards {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .quote-text,
  .transform-copy p {
    max-width: none;
  }

  .transform-btn {
    font-size: 1.08rem;
    min-width: 180px;
  }

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

  .footer-right {
    text-align: left;
  }

  .footer-brand {
    font-size: 3.3rem;
  }

  .signature-intro h2 {
    max-width: 10ch;
  }

  .signature-cta,
  .service-btn {
    font-size: 1.06rem;
  }
}
