:root {
  --cream: #f7f1e7;
  --paper: #fffaf2;
  --ink: #292321;
  --berry: #8e365b;
  --berry-deep: #60243e;
  --terracotta: #c56a3d;
  --gold: #d6a84b;
  --sage: #76836a;
  --sage-light: #b9c4ad;
  --pink: #df9aae;
  --line: rgba(41, 35, 33, 0.22);
  --max: 1380px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

::selection {
  color: var(--paper);
  background: var(--berry);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-bar {
  padding: 7px 28px;
  color: var(--paper);
  background: var(--berry-deep);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-bar p {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}

.preview-bar span {
  opacity: 0.74;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 34px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  top: 18px;
  left: 7px;
  width: 25px;
  height: 1px;
  background: var(--ink);
  transform: rotate(32deg);
}

.brand-mark i:nth-child(2) {
  transform: rotate(-32deg);
}

.brand-mark i:nth-child(3) {
  width: 17px;
  left: 11px;
  transform: rotate(90deg);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
}

.site-header nav a,
.header-call {
  position: relative;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--berry);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-call {
  padding: 11px 14px;
  border: 1px solid var(--ink);
}

.header-call span {
  margin-left: 5px;
  font-weight: 400;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.72fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
  max-width: var(--max);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 118px) 34px clamp(72px, 9vw, 128px);
}

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

.eyebrow,
.detail-label,
.card-kicker,
.stamp {
  margin: 0;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 7px;
  color: var(--berry);
}

.hero h1 {
  max-width: 850px;
  margin: 28px 0 30px;
  font-family: var(--serif);
  font-size: clamp(3.75rem, 7.35vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.87;
}

.hero h1 em {
  color: var(--berry);
  font-weight: 400;
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 184px;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--berry-deep);
}

.button-quiet:hover {
  color: var(--paper);
  background: var(--berry);
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 33px;
  font-size: 0.76rem;
  line-height: 1.5;
}

.hours-note p {
  margin: 0;
}

.open-dot {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(197, 106, 61, 0.15);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  padding: 17px;
  border: 1px solid var(--ink);
  background: var(--berry);
  box-shadow: 18px 18px 0 var(--gold);
  transform: rotate(1.2deg);
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: 50%;
  width: 92px;
  height: 34px;
  border: 1px solid rgba(41, 35, 33, 0.25);
  background: rgba(247, 241, 231, 0.75);
  content: "";
  transform: translateX(-50%) rotate(-3deg);
}

.hero-visual img {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.hero-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 7px 0;
  color: var(--paper);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual figcaption span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.hero-visual figcaption p {
  margin: 0;
  text-align: right;
}

.figure-label {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.figure-label-top {
  top: 55px;
  right: -34px;
  transform: rotate(5deg);
}

.figure-label-bottom {
  bottom: 65px;
  left: -39px;
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-4deg);
}

.shop-note {
  display: grid;
  grid-template-columns: 130px minmax(250px, 0.8fr) minmax(300px, 1fr) auto;
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 31px 34px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.stamp {
  justify-self: start;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--terracotta);
  transform: rotate(-3deg);
}

.shop-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.shop-note > p:not(.stamp) {
  margin: 0;
  font-size: 0.9rem;
}

.shop-note a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.shop-note a span {
  display: inline-block;
  margin-left: 8px;
}

.news-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(45px, 8vw, 125px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(92px, 12vw, 180px) 34px;
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 30px;
}

.section-intro h2 {
  margin: 20px 0 35px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.72;
  text-transform: lowercase;
}

.section-intro h2 span {
  display: block;
  color: var(--berry);
  font-family: var(--sans);
  font-size: 0.25em;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.section-intro > p:last-child {
  max-width: 370px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr) 110px;
  gap: 24px;
  min-height: 270px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--ink);
  overflow: hidden;
}

.news-card-berry {
  color: var(--paper);
  background: var(--berry);
}

.news-card-sage {
  background: var(--sage-light);
}

.news-card-gold {
  background: var(--gold);
}

.card-number {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.card-kicker span {
  padding: 4px 7px;
  border: 1px solid currentColor;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.news-card h3 {
  max-width: 520px;
  margin: 31px 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.1vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.news-card .card-content > p:last-child {
  max-width: 590px;
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.7;
}

.card-motif {
  position: relative;
  align-self: end;
  width: 100px;
  height: 100px;
}

.card-motif-needles i {
  position: absolute;
  bottom: 9px;
  left: 48px;
  width: 3px;
  height: 105px;
  background: var(--gold);
  transform: rotate(30deg);
  transform-origin: bottom;
}

.card-motif-needles i:nth-child(2) {
  transform: rotate(-30deg);
}

.card-motif-needles b {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 66px;
  height: 66px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px var(--berry), inset 0 0 0 11px var(--paper), inset 0 0 0 20px var(--berry), inset 0 0 0 22px var(--paper);
}

.card-motif-loop i,
.card-motif-loop b {
  position: absolute;
  inset: 8px;
  border: 2px solid var(--ink);
  border-radius: 45% 55% 58% 42%;
  transform: rotate(25deg);
}

.card-motif-loop b {
  inset: 23px 3px 4px 29px;
  border-color: var(--berry);
  transform: rotate(-22deg);
}

.card-motif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  transform: rotate(7deg);
}

.card-motif-grid i {
  border: 1px solid var(--ink);
  background: var(--paper);
}

.card-motif-grid i:nth-child(2) {
  background: var(--berry);
}

.card-motif-grid i:nth-child(3) {
  background: var(--terracotta);
}

.card-motif-grid i:nth-child(4) {
  background: var(--sage);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 690px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.about-words {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 630px;
  border-right: 1px solid var(--ink);
  background-color: var(--pink);
  background-image: radial-gradient(rgba(41, 35, 33, 0.16) 1px, transparent 1px);
  background-size: 12px 12px;
}

.about-words span {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-style: italic;
  letter-spacing: -0.06em;
}

.about-words span:nth-child(2),
.about-words span:nth-child(4) {
  border-right: 0;
}

.about-words span:nth-child(3),
.about-words span:nth-child(4) {
  border-bottom: 0;
}

.about-words span:nth-child(2) {
  color: var(--paper);
  background: var(--berry);
}

.about-words span:nth-child(3) {
  background: var(--gold);
}

.about-words span:nth-child(4) {
  color: var(--paper);
  background: var(--sage);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(60px, 8vw, 130px);
  background: var(--paper);
}

.about-copy h2 {
  margin: 25px 0 38px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.about-copy h2 em {
  color: var(--berry);
  font-weight: 400;
}

.about-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 9px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 145px);
  padding: clamp(85px, 12vw, 170px) max(34px, calc((100vw - var(--max)) / 2 + 34px));
  color: var(--paper);
  background: var(--ink);
}

.visit-heading .eyebrow {
  color: var(--gold);
}

.visit-heading h2 {
  margin: 23px 0 36px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.visit-heading > p:last-child {
  max-width: 430px;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
}

.visit-details {
  border-top: 1px solid rgba(255, 250, 242, 0.38);
}

.detail-block {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.38);
}

.detail-label {
  color: var(--pink);
}

.address-block address {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.3vw, 3.3rem);
  font-style: normal;
  line-height: 1.15;
}

.light-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 2px;
  color: var(--paper);
}

.hours-block dl {
  margin: 0;
}

.hours-block dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(255, 250, 242, 0.28);
  font-size: 0.9rem;
}

.hours-block dt,
.hours-block dd {
  margin: 0;
}

.hours-block dd {
  color: var(--gold);
}

.confirm-note {
  grid-column: 2;
  margin: 0;
  font-size: 0.73rem;
  opacity: 0.72;
}

.contact-block {
  align-items: start;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 2.4rem);
  line-height: 1.2;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-link + .contact-link {
  grid-column: 2;
}

.contact-link span {
  color: var(--pink);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 33px 34px;
  font-size: 0.7rem;
}

footer > p {
  margin: 0;
}

.footer-notice {
  justify-self: end;
  max-width: 340px;
  text-align: right;
}

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

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.footer-brand .brand-mark i {
  top: 14px;
  left: 6px;
  width: 19px;
}

.footer-brand .brand-mark i:nth-child(3) {
  left: 8px;
  width: 15px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7.6vw, 6rem);
  }

  .shop-note {
    grid-template-columns: 105px 0.8fr 1.2fr;
  }

  .shop-note a {
    grid-column: 2 / -1;
  }

  .news-section {
    gap: 45px;
  }

  .news-card {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .card-motif {
    position: absolute;
    right: 18px;
    bottom: 18px;
    opacity: 0.3;
  }

  .about-copy {
    padding: 65px;
  }

  .visit-section {
    gap: 60px;
  }

  .detail-block {
    grid-template-columns: 125px 1fr;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-notice {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 790px) {
  .preview-bar p {
    justify-content: center;
  }

  .preview-bar span {
    display: none;
  }

  .site-header {
    gap: 18px;
    padding: 18px 20px;
  }

  .site-header nav {
    gap: 22px;
    flex-wrap: wrap;
    padding-bottom: 4px;
  }

  .site-header nav a {
    flex: 0 0 auto;
  }

  .header-call span {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 76px;
    padding: 60px 20px 92px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 16vw, 6.3rem);
  }

  .hero-visual {
    max-width: 520px;
    width: calc(100% - 26px);
    box-shadow: 12px 12px 0 var(--gold);
  }

  .figure-label-top {
    right: -17px;
  }

  .figure-label-bottom {
    left: -17px;
  }

  .shop-note {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 28px 20px;
  }

  .shop-note a {
    grid-column: 1;
    margin-top: 5px;
    white-space: normal;
  }

  .news-section {
    grid-template-columns: minmax(0, 1fr);
    padding: 100px 20px;
  }

  .section-intro {
    position: static;
  }

  .section-intro h2 {
    font-size: clamp(5.2rem, 23vw, 8rem);
  }

  .about-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-words {
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .about-words span {
    min-height: 230px;
  }

  .about-copy {
    padding: 75px 20px 85px;
  }

  .visit-section {
    grid-template-columns: minmax(0, 1fr);
    padding: 90px 20px;
  }

  .visit-heading h2 {
    font-size: clamp(4.2rem, 17vw, 7rem);
  }

  footer {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-mark i {
    top: 15px;
    left: 6px;
    width: 21px;
  }

  .brand-mark i:nth-child(3) {
    left: 9px;
    width: 15px;
  }

  .site-header nav {
    justify-content: space-between;
    gap: 14px;
  }

  .site-header nav a {
    font-size: 0.61rem;
  }

  .header-call {
    padding: 9px 10px;
    font-size: 0.64rem;
  }

  .hero .eyebrow {
    max-width: 270px;
    line-height: 1.7;
  }

  .hero h1 {
    margin-top: 21px;
  }

  .button {
    width: 100%;
  }

  .figure-label-top {
    top: 44px;
  }

  .figure-label-bottom {
    bottom: 61px;
    font-size: 0.55rem;
  }

  .hero-visual figcaption {
    font-size: 0.58rem;
  }

  .news-card {
    grid-template-columns: 1fr;
    min-height: 330px;
    padding: 27px 23px;
  }

  .card-number {
    opacity: 0.7;
  }

  .news-card h3 {
    margin-top: 24px;
  }

  .about-words {
    min-height: 360px;
  }

  .about-words span {
    min-height: 180px;
  }

  .detail-block {
    grid-template-columns: 1fr;
  }

  .light-link,
  .confirm-note,
  .contact-link + .contact-link {
    grid-column: 1;
  }

  .contact-link + .contact-link {
    margin-top: 20px;
  }
}

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

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