@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  --bg: #191917;
  --panel: #22221f;
  --ink: #f1eee6;
  --muted: #b6b3a9;
  --accent: #c79970;
  --line: #3b3b35;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 'DM Sans',sans-serif;
}

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

button,input,select {
  font: inherit;
}

button,a,input,select {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.skip {
  position: absolute;
  left: 15px;
  top: -100px;
  background: var(--ink);
  color: var(--bg);
  z-index: 10;
  padding: 10px;
}

.skip:focus {
  top: 10px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 5%;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  white-space: nowrap;
}

.wordmark span {
  color: var(--accent);
}

.wordmark small {
  display: block;
  font-size: 9px;
  letter-spacing: 3.2px;
  margin-top: 7px;
  font-weight: 500;
}

.header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
}

.header nav a:hover,footer a:hover {
  color: var(--accent);
}

.button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #191917;
  padding: 17px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s,transform .2s;
}

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

.button.small {
  padding: 12px 18px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.hero-copy {
  padding: 65px 10% 28px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 27px;
}

h1,h2,.lead {
  font-family: 'Playfair Display',Georgia,serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
}

h1 {
  font-size: clamp(65px,6.8vw,110px);
  margin: 0 0 26px;
}

em {
  color: var(--accent);
  font-weight: 500;
}

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

.intro {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 59px;
  color: var(--muted);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: #302920;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 62% center;
}

.hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%,#161610aa);
}

.photo-label {
  position: absolute;
  bottom: 35px;
  left: 35px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 3px;
}

.photo-number {
  position: absolute;
  right: 28px;
  bottom: 4px;
  font: 110px Georgia,serif;
  color: #ffffff85;
  z-index: 1;
}

.ribbon {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 22px;
  padding: 22px 4%;
  background: var(--accent);
  color: #191917;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.ribbon i {
  font-size: 25px;
  font-style: normal;
}

.section {
  padding: 100px 7%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 45px;
}

.section-heading>p {
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: 50px 1fr 100px 90px 36px;
  gap: 20px;
  align-items: center;
  padding: 32px 12px;
  text-align: left;
  transition: background .2s;
}

.service:hover {
  background: #252520;
}

.service-index {
  color: var(--accent);
  font-size: 12px;
}

.service-text strong {
  font: 28px 'Playfair Display',Georgia,serif;
  display: block;
}

.service-text>span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.service-text small {
  font: 9px 'DM Sans',sans-serif;
  letter-spacing: 1px;
  border: 1px solid var(--line);
  padding: 6px 8px;
  vertical-align: middle;
  margin-left: 12px;
  color: var(--accent);
}

.duration {
  font-size: 14px;
  color: var(--muted);
}

.price {
  font: 30px 'Playfair Display',Georgia,serif;
}

.service-arrow {
  color: var(--accent);
  font-size: 25px;
}

.fineprint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

.atelier {
  background: #eae5db;
  color: #262622;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}

.atelier .eyebrow {
  color: #795330;
}

.atelier em {
  color: #8a5d38;
}

.big-mark {
  font: clamp(100px,14vw,210px) 'Playfair Display',Georgia,serif;
  letter-spacing: -12px;
  color: #d2c9bb;
  display: block;
  line-height: 1;
  margin-top: 50px;
}

.lead {
  font-size: 34px;
  letter-spacing: -1px;
  margin: 0 0 25px;
}

.atelier-body>p:not(.lead) {
  color: #5e5c54;
  line-height: 1.9;
}

.values {
  margin-top: 32px;
}

.values>div {
  position: relative;
  padding: 18px 0 18px 42px;
  border-top: 1px solid #cec7ba;
}

.values span {
  position: absolute;
  left: 0;
  top: 22px;
  font-size: 12px;
  color: #8a5d38;
}

.values h3 {
  font-size: 16px;
  margin: 0;
}

.values p {
  font-size: 14px;
  color: #5e5c54;
  margin: 5px 0 0;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}

.visit .button {
  margin-top: 35px;
}

.visit-details h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 0;
}

dl {
  margin: 0;
}

dl>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

dd {
  margin: 0;
  color: var(--muted);
}

.demo-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.demo-note strong {
  color: var(--accent);
  font-weight: 500;
}

.demo-note p {
  max-width: 450px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

footer p,footer>a:last-child {
  font-size: 12px;
  color: var(--muted);
}

dialog {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  width: min(560px,calc(100% - 28px));
  max-height: 90dvh;
  padding: 38px;
  border-radius: 3px;
}

dialog::backdrop {
  background: #000b;
  backdrop-filter: blur(5px);
}

body:has(dialog[open]) {
  overflow: hidden;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  padding: 6px;
}

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

.close+h2,dialog h2 {
  font-size: 44px;
}

form label,legend {
  display: block;
  font-size: 14px;
  margin: 19px 0 8px;
}

select,input[type=date] {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: #282823;
  border: 1px solid #626257;
  color-scheme: dark;
  border-radius: 2px;
  min-height: 48px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.date-help,#slot-message {
  font-size: 12px;
  color: var(--muted);
}

.slots {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}

.slot {
  position: relative;
}

.slot input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.slot label {
  border: 1px solid #55554a;
  text-align: center;
  padding: 9px 4px;
  margin: 0;
  font-size: 14px;
  cursor: pointer;
}

.slot input:checked+label {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.slot input:focus-visible+label {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.summary {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding: 20px 0;
  font-size: 14px;
}

.confirm {
  width: 100%;
}

#success>p {
  line-height: 1.8;
}

#success .button {
  margin-top: 15px;
}

[hidden] {
  display: none!important;
}

@media(min-width:1600px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 85px;
  }

}

@media(max-width:900px) {
  .header nav {
    gap: 18px;
  }

  .hero-copy {
    padding: 50px 8% 24px;
  }

  h1 {
    font-size: 70px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-bottom {
    flex-direction: column;
    margin-top: 32px;
    gap: 10px;
  }

  .section {
    padding: 70px 6%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .atelier,.visit {
    gap: 6%;
  }

  .ribbon {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .service {
    grid-template-columns: 25px 1fr 65px 60px 20px;
    gap: 12px;
  }

  .service-text small {
    display: none;
  }

  .service-text strong {
    font-size: 25px;
  }

}

@media(max-width:620px) {
  .header {
    padding: 18px 6%;
    gap: 12px;
  }

  .wordmark {
    font-size: 23px;
  }

  .header nav {
    display: none;
  }

  .button.small {
    font-size: 12px;
    padding: 12px;
    gap: 10px;
  }

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

  .hero-copy {
    padding: 40px 6% 30px;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(46px,14vw,74px);
  }

  .hero-photo {
    min-height: 350px;
  }

  .hero-photo img {
    object-position: center 44%;
  }

  .hero-bottom {
    flex-direction: row;
    margin-top: 35px;
  }

  .ribbon {
    flex-wrap: wrap;
    padding: 17px;
    font-size: 9px;
    gap: 12px;
  }

  .ribbon span:last-of-type,.ribbon i:last-child {
    display: none;
  }

  .section {
    padding: 58px 6%;
  }

  .service {
    grid-template-columns: 20px 1fr 55px;
    gap: 10px;
    padding: 24px 0;
    position: relative;
  }

  .service-text strong {
    font-size: 23px;
  }

  .service-text>span {
    font-size: 12px;
  }

  .duration {
    grid-column: 2;
    font-size: 12px;
    margin-top: -5px;
  }

  .price {
    grid-column: 3;
    grid-row: 1;
    font-size: 25px;
  }

  .service-arrow {
    display: none;
  }

  .service-index {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 7px;
  }

  .service-text {
    grid-column: 2;
    grid-row: 1;
  }

  .service .duration {
    grid-column: 2;
    grid-row: 2;
  }

  .atelier,.visit {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .big-mark {
    display: none;
  }

  .lead {
    font-size: 30px;
  }

  .visit-details {
    margin-top: 10px;
  }

  footer {
    flex-wrap: wrap;
    padding: 25px 6%;
    gap: 15px;
  }

  footer p {
    width: 100%;
    order: 3;
    margin: 0;
  }

  footer>a:last-child {
    margin-left: auto;
  }

  dialog {
    padding: 30px 22px;
  }

  .slots {
    grid-template-columns: repeat(3,1fr);
  }

}

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

  * {
    transition: none!important;
  }

}
