:root {
  --paper: #efe4d1;
  --porcelain: #fbf4e8;
  --sage: #17244f;
  --sage-deep: #101936;
  --forest: #17244f;
  --navy: #121a4d;
  --blush: #e8dcc8;
  --cocoa: #2d2440;
  --brass: #c7a24f;
  --ink: #17152a;
  --muted: #6b6258;
  --line: rgba(23, 21, 42, 0.14);
  --shadow: 0 28px 70px rgba(18, 26, 77, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  background: var(--porcelain);
}

.topline {
  margin: 0;
  padding: 8px 24px;
  background: var(--navy);
  color: var(--porcelain);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.nav {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.mark img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(199, 162, 79, 0.46);
  border-radius: 50%;
  object-fit: cover;
}

.mark-symbol {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
}

.mark-text,
.footer-brand {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 700;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 24px 0 21px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

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

.nav-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.icon-button,
.nav-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 26, 77, 0.56), rgba(23, 21, 42, 0.12) 48%, rgba(18, 26, 77, 0.58)),
    linear-gradient(0deg, rgba(18, 26, 77, 0.52), transparent 46%);
}

.hero img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: auto 64px 64px 64px;
  z-index: 2;
  max-width: 640px;
  color: var(--porcelain);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: #ead8a6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  font-size: 5.2rem;
}

h2 {
  font-size: 2.9rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-overlay p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.hero-actions {
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.button-light {
  background: var(--porcelain);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 250, 242, 0.64);
  color: var(--porcelain);
}

.button-dark {
  width: 100%;
  background: var(--navy);
  color: var(--porcelain);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 54px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.section-padding {
  padding: 88px 82px;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) 1fr;
  gap: 72px;
  align-items: center;
  background: var(--porcelain);
}

.about-art {
  position: relative;
  min-height: 460px;
}

.portrait-card,
.small-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.portrait-card {
  width: 64%;
  min-width: 235px;
  aspect-ratio: 2 / 3;
  box-shadow: 0 18px 45px rgba(60, 40, 32, 0.16);
}

.small-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 58%;
  aspect-ratio: 3 / 4;
  border: 12px solid var(--porcelain);
  box-shadow: 0 16px 38px rgba(60, 40, 32, 0.14);
}

.portrait-card img,
.small-card img,
.product-card img,
.journal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-card img {
  object-position: center top;
}

.small-card img {
  object-position: center 16%;
}

.round-stamp {
  position: absolute;
  left: 44%;
  top: 42%;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.84);
  color: var(--cocoa);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
}

.about-copy p:not(.eyebrow),
.section-heading p,
.atelier-grid p,
.journey p,
.footer p {
  color: var(--muted);
  line-height: 1.8;
}

.about-copy p:not(.eyebrow) {
  max-width: 560px;
}

.collection {
  padding: 72px 46px 78px;
  background: var(--navy);
  color: var(--porcelain);
}

.collection .eyebrow {
  color: #ead8a6;
}

.section-heading {
  width: min(680px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.collection .section-heading p {
  color: rgba(255, 250, 242, 0.82);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 34px;
}

.filter-button {
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 250, 242, 0.48);
  background: transparent;
  color: var(--porcelain);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.filter-button.is-active {
  background: var(--porcelain);
  color: var(--navy);
}

.carousel-shell {
  position: relative;
}

.product-carousel,
.journal-carousel {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.carousel-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  scroll-snap-align: start;
}

.carousel-arrow {
  position: absolute;
  top: 40%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 26, 23, 0.18);
  border-radius: 50%;
  background: var(--porcelain);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 31, 24, 0.18);
}

.carousel-arrow-left {
  left: -21px;
}

.carousel-arrow-right {
  right: -21px;
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: currentColor;
}

.collection .carousel-arrow {
  border-color: rgba(255, 250, 242, 0.4);
  background: rgba(255, 250, 242, 0.92);
  color: var(--navy);
}

.collection .carousel-dots {
  color: rgba(255, 250, 242, 0.82);
}

.product-grid {
  display: flex;
  gap: 22px;
  padding-inline: max(28px, calc((100% - 340px) / 2));
}

.product-card {
  flex: 0 0 340px;
  display: grid;
  gap: 10px;
  opacity: 0.72;
  transform: scale(0.94);
  transform-origin: center center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-card.is-active:hover {
  transform: translateY(-4px) scale(1);
}

.product-card img {
  aspect-ratio: 3 / 4;
  background: rgba(255, 250, 242, 0.24);
  object-position: center top;
}

.product-card p {
  margin: 0 0 4px;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 1.06rem;
}

.product-card span {
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.8rem;
}

.product-enquire {
  min-height: 34px;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 250, 242, 0.58);
  background: transparent;
  color: var(--porcelain);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.product-enquire:hover,
.product-enquire:focus-visible {
  background: var(--porcelain);
  color: var(--navy);
}

.atelier {
  background: var(--paper);
}

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

.atelier-grid article {
  min-height: 224px;
  padding: 26px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.54);
}

.atelier-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.atelier-grid h3 {
  margin-bottom: 12px;
}

.appointments {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--porcelain);
}

.quote-panel,
.visit-panel {
  padding: 78px 70px;
}

.visit-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-panel h2 {
  margin-bottom: 20px;
}

.visit-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(18, 26, 77, 0.22);
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.quotes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
}

blockquote {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-card {
  padding: 68px 46px;
  background: var(--blush);
}

.booking-card img {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border: 1px solid rgba(199, 162, 79, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.booking-card h2 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.booking-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.booking-link {
  margin-top: 24px;
}

.journal {
  background: var(--porcelain);
}

.journal-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  align-items: start;
}

.journal-grid article {
  display: grid;
  gap: 12px;
}

.journal-grid img {
  height: auto;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(18, 26, 77, 0.14);
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(18, 26, 77, 0.12);
  object-fit: contain;
  object-position: center;
}

.journal-grid p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.3;
}

.journal-grid a {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.journey {
  padding: 74px 30px;
  background: var(--sage-deep);
  color: var(--porcelain);
  text-align: center;
}

.journey .eyebrow {
  color: #ead8a6;
}

.journey h2 {
  font-size: 3.2rem;
}

.journey p {
  width: min(620px, 100%);
  margin: 18px auto 26px;
  color: rgba(255, 250, 242, 0.84);
}

.journey-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 48px;
  background: var(--ink);
  color: var(--porcelain);
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 250, 242, 0.66);
}

.footer-brand {
  margin: 0;
  color: var(--porcelain);
}

.footer-links {
  align-items: center;
  color: rgba(255, 250, 242, 0.72);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .site-shell {
    width: 100%;
  }

  .nav {
    grid-template-columns: auto auto 1fr;
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 103px;
    left: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    justify-self: stretch;
    display: none;
    padding: 18px 22px 24px;
    background: var(--porcelain);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 14px 0;
  }

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

  .hero,
  .hero img {
    min-height: 620px;
    height: 620px;
  }

  .about,
  .appointments {
    grid-template-columns: 1fr;
  }

  .product-grid {
    padding-inline: max(24px, calc((100% - 320px) / 2));
  }

  .product-card {
    flex-basis: 320px;
  }

  .journal-grid,
  .quotes {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .atelier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: 100%;
    margin: 0;
  }

  .topline {
    padding-inline: 14px;
  }

  .nav {
    min-height: 58px;
    gap: 8px;
    padding: 0 14px;
  }

  .mark-text {
    font-size: 1rem;
  }

  .mark-symbol {
    width: 27px;
    height: 27px;
  }

  .nav-links {
    top: 93px;
  }

  .icon-button {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero img {
    min-height: 610px;
    height: 610px;
  }

  .hero img {
    object-position: 58% top;
  }

  .hero-overlay {
    inset: auto 22px 34px 22px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2,
  .journey h2 {
    font-size: 2.25rem;
  }

  .hero-overlay p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .button {
    width: 100%;
  }

  .section-padding,
  .collection,
  .quote-panel,
  .booking-card {
    padding: 56px 22px;
  }

  .about {
    gap: 34px;
  }

  .about-art {
    min-height: 390px;
  }

  .portrait-card {
    width: 68%;
    min-width: 200px;
  }

  .small-card {
    width: 56%;
    border-width: 8px;
  }

  .round-stamp {
    left: 41%;
    top: 39%;
    width: 88px;
    height: 88px;
    font-size: 0.55rem;
  }

  .product-grid,
  .journal-grid {
    grid-auto-columns: 78%;
  }

  .product-grid {
    padding-inline: 11%;
  }

  .product-card {
    flex-basis: 78%;
  }

  .quotes {
    grid-auto-columns: 88%;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .carousel-arrow-left {
    left: 8px;
  }

  .carousel-arrow-right {
    right: 8px;
  }

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

  .product-card img {
    aspect-ratio: 3 / 4;
  }

  .appointments {
    display: block;
  }

  .booking-card h2 {
    font-size: 1.85rem;
  }

  .footer {
    display: grid;
    padding: 30px 22px;
  }
}
