:root {
  --paper: #f5efe3;
  --paper-deep: #eee3d0;
  --ink: #352014;
  --muted: #765f4b;
  --rule: rgba(53, 32, 20, 0.62);
  --gold: #a97b36;
  --sage: #d9ddca;
  --shadow: 0 22px 60px rgba(53, 32, 20, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 255, 255, 0.45), transparent 24rem),
    linear-gradient(90deg, rgba(53, 32, 20, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1680px);
  margin: 0 auto;
  padding: 28px 0 14px;
  background: linear-gradient(180deg, var(--paper) 72%, rgba(245, 239, 227, 0));
  border-left: 1px solid var(--rule);
}

.brand {
  padding-left: 48px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: clamp(28px, 5vw, 72px);
  margin-right: auto;
  margin-left: 8vw;
  font-size: 18px;
}

nav a {
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-color: currentColor;
}

.section-shell {
  width: min(100% - 64px, 1680px);
  margin: 0 auto;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

.frame,
.craft-panel,
.attribute,
.rating-panel,
blockquote,
.hours-card,
.map-panel {
  border: 1px solid var(--rule);
  background: rgba(255, 250, 240, 0.55);
  box-shadow: var(--shadow);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 34px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
}

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

.button-secondary {
  background: rgba(255, 250, 240, 0.45);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker span {
  display: inline-block;
  width: 96px;
  height: 1px;
  background: var(--rule);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(520px, 1.13fr);
  gap: 58px;
  min-height: calc(100svh - 82px);
  padding: clamp(48px, 6vw, 110px) 0 42px;
  border-bottom: 2px solid rgba(53, 32, 20, 0.18);
}

.hero-copy {
  align-self: center;
  padding-left: 48px;
  border-left: 1px solid var(--rule);
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(112px, 13vw, 188px);
  line-height: 0.78;
}

.hero-lede {
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.03;
}

.hero-facts {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 32px;
}

.hero-facts p {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  font-size: 18px;
}

.hero-facts span {
  color: var(--muted);
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 810px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.metrics div {
  padding: 26px 24px 24px;
  text-align: center;
}

.metrics div + div {
  border-left: 1px solid rgba(53, 32, 20, 0.28);
}

.metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(52px, 5.4vw, 80px);
  font-weight: 500;
  line-height: 0.86;
}

.metrics div:last-child strong {
  font-size: clamp(43px, 4.5vw, 68px);
  white-space: nowrap;
}

.metrics span {
  font-size: 16px;
}

.hero-media {
  align-self: center;
  height: min(75vh, 790px);
  min-height: 560px;
  padding: 12px;
  transform: translateX(18px);
}

.hero-media::before {
  content: "";
  position: absolute;
}

.craft {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 88px);
  padding: clamp(82px, 9vw, 132px) 0;
  border-bottom: 1px solid rgba(53, 32, 20, 0.18);
}

.section-aside {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid var(--rule);
}

.section-aside h2,
.details-intro h2,
.reviews h2,
.visit h2 {
  font-size: clamp(68px, 7vw, 116px);
  line-height: 0.94;
}

.section-aside p:last-child,
.details-intro p:last-child {
  max-width: 330px;
  font-size: 20px;
}

.craft-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.craft-panel {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 34px 34px 0;
  overflow: hidden;
}

.craft-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.95;
}

.craft-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 430px;
  min-height: 116px;
  margin: 0;
  padding-left: 24px;
  font-size: 18px;
}

.panel-number {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-weight: 600;
}

.panel-number::after {
  content: "";
  width: 160px;
  height: 1px;
  background: rgba(53, 32, 20, 0.36);
}

.craft-panel img {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: calc(100% + 68px);
  height: 210px;
  margin: auto -34px 0;
  object-fit: cover;
  border-top: 1px solid rgba(53, 32, 20, 0.34);
  mix-blend-mode: normal;
}

.panel-two img {
  width: calc(100% + 68px);
  height: 210px;
}

.panel-three img {
  width: calc(100% + 68px);
  height: 210px;
}

.panel-four {
  padding-bottom: 34px;
}

.service-list {
  list-style: none;
  padding-left: 0 !important;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-list li::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  border-radius: 50%;
}

.details {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 34px;
  padding: clamp(78px, 8vw, 126px) 0;
}

.details-intro {
  padding-left: 22px;
}

.details-intro h2 {
  margin-bottom: 26px;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(86px, auto);
  gap: 20px;
  align-items: stretch;
}

.masonry .frame {
  padding: 8px;
}

.photo-a {
  grid-column: 4 / 9;
  grid-row: 1 / 5;
  min-height: 340px;
}

.photo-b {
  grid-column: 1 / 4;
  grid-row: 4 / 8;
  min-height: 320px;
}

.photo-c {
  grid-column: 7 / 10;
  grid-row: 5 / 8;
  min-height: 250px;
}

.photo-d {
  grid-column: 1 / 7;
  grid-row: 8 / 12;
  min-height: 300px;
}

.photo-e {
  grid-column: 7 / 10;
  grid-row: 8 / 12;
  min-height: 230px;
}

.attribute {
  padding: 28px;
}

.attribute h3 {
  margin-bottom: 24px;
  font-size: 36px;
  line-height: 1;
}

.attribute p {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(53, 32, 20, 0.24);
}

.attr-a {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
}

.attr-b {
  grid-column: 4 / 7;
  grid-row: 5 / 8;
  z-index: 2;
}

.attr-c {
  grid-column: 10 / 13;
  grid-row: 5 / 8;
}

.attr-d {
  grid-column: 10 / 13;
  grid-row: 8 / 12;
}

.reviews {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 270px 0.9fr;
  gap: 48px;
  padding: clamp(80px, 9vw, 132px) 0 82px;
  border-top: 1px solid rgba(53, 32, 20, 0.16);
  border-bottom: 1px solid rgba(53, 32, 20, 0.16);
}

.reviews-left h2 {
  margin-bottom: 36px;
}

.rating-panel {
  width: min(100%, 520px);
  padding: 30px;
  text-align: center;
}

.rating-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(110px, 9vw, 170px);
  font-weight: 500;
  line-height: 0.78;
}

.rating-panel p {
  margin: 18px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 28px;
}

.rating-panel div,
blockquote span {
  color: var(--gold);
  font-size: 30px;
  letter-spacing: 0.06em;
}

.review-photo {
  align-self: stretch;
  min-height: 620px;
  padding: 8px;
}

.quote-wall {
  display: grid;
  gap: 28px;
  align-self: center;
}

blockquote {
  margin: 0;
  padding: 32px;
  clip-path: polygon(3% 0, 97% 0, 100% 7%, 100% 93%, 97% 100%, 3% 100%, 0 93%, 0 7%);
}

blockquote div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

blockquote time {
  font-size: 18px;
}

blockquote cite {
  display: block;
  margin-bottom: 16px;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 2.4vw, 40px);
  line-height: 1.12;
}

.source-note {
  position: absolute;
  left: 0;
  bottom: 30px;
  padding-left: 58px;
  font-family: var(--serif);
  font-size: 18px;
}

.source-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--rule);
}

.visit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "heading hours"
    "map photo"
    "cta cta"
    "mark mark";
  gap: 28px 54px;
  padding: clamp(78px, 8vw, 122px) 0 28px;
}

.visit-heading {
  grid-area: heading;
}

.visit h2 {
  margin-bottom: 30px;
}

address {
  display: block;
  max-width: 650px;
  margin-bottom: 0;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-style: normal;
  line-height: 1.1;
}

.hours-card {
  grid-area: hours;
  z-index: 4;
  justify-self: end;
  width: min(100%, 560px);
  margin-top: 18px;
  margin-bottom: -90px;
  padding: 34px 40px;
}

.hours-card h3 {
  margin-bottom: 16px;
  font-size: 54px;
}

.hours-card dl {
  margin: 0;
}

.hours-card div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 13px 0;
  border-top: 1px solid var(--rule);
  font-size: 21px;
}

.hours-card dd {
  margin: 0;
}

.hours-card p {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.storefront {
  grid-area: photo;
  min-height: 470px;
  padding: 8px;
}

.map-panel {
  position: relative;
  grid-area: map;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 34%, rgba(155, 171, 132, 0.28), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(155, 171, 132, 0.22), transparent 20%),
    #efe9d7;
}

.map-line {
  position: absolute;
  display: block;
  height: 2px;
  background: rgba(139, 128, 104, 0.72);
  transform-origin: left center;
}

.map-line.one {
  top: 34%;
  left: -4%;
  width: 108%;
  transform: rotate(7deg);
}

.map-line.two {
  top: 22%;
  left: 18%;
  width: 90%;
  transform: rotate(-28deg);
}

.map-line.three {
  top: 66%;
  left: 6%;
  width: 102%;
  transform: rotate(-12deg);
}

.map-line.four {
  top: 10%;
  left: 62%;
  width: 76%;
  transform: rotate(78deg);
}

.road,
.map-panel strong {
  position: absolute;
  z-index: 2;
  font-family: var(--serif);
  font-size: 28px;
  background: rgba(239, 233, 215, 0.72);
}

.road-main {
  top: 33%;
  left: 23%;
  transform: rotate(7deg);
}

.road-bay {
  bottom: 18%;
  left: 12%;
}

.pin {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 52%;
  width: 48px;
  height: 48px;
  background: var(--ink);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  border: 3px solid var(--paper);
  border-radius: 50%;
}

.map-panel strong {
  top: 54%;
  left: calc(52% + 56px);
  font-size: 36px;
}

.footer-cta {
  grid-area: cta;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  border: 8px solid var(--ink);
  background: var(--ink);
  outline: 1px solid rgba(245, 239, 227, 0.72);
  outline-offset: -16px;
}

.footer-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.footer-cta a + a {
  border-left: 1px solid rgba(245, 239, 227, 0.6);
}

.footer-mark {
  grid-area: mark;
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
}

@media (max-width: 1500px) {
  .section-shell,
  .site-header {
    width: min(100% - 64px, 1320px);
  }

  .details {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .details-intro {
    max-width: 920px;
    padding-left: 28px;
    border-left: 1px solid var(--rule);
  }

  .details-intro h2 {
    max-width: 780px;
    font-size: clamp(68px, 7vw, 96px);
  }

  .details-intro p:last-child {
    max-width: 680px;
  }

  .masonry {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 24px;
  }

  .photo-a {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 370px;
  }

  .attr-a {
    grid-column: 3 / 5;
    grid-row: auto;
  }

  .photo-b {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: 390px;
  }

  .attr-b {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .photo-c {
    grid-column: 3 / 4;
    grid-row: auto;
    min-height: 390px;
  }

  .attr-c {
    grid-column: 4 / 5;
    grid-row: auto;
  }

  .photo-d {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 420px;
  }

  .photo-e {
    grid-column: 3 / 4;
    grid-row: auto;
    min-height: 420px;
  }

  .attr-d {
    grid-column: 4 / 5;
    grid-row: auto;
  }
}

@media (max-width: 1180px) {
  .hero,
  .craft,
  .details,
  .reviews,
  .visit {
    width: min(100% - 40px, 980px);
  }

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

  .hero-copy {
    padding-left: 28px;
  }

  .hero-media {
    min-height: 440px;
    height: 54vw;
    transform: none;
  }

  .craft,
  .details {
    grid-template-columns: 1fr;
  }

  .section-aside {
    padding-left: 24px;
  }

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

  .masonry > * {
    grid-column: auto;
    grid-row: auto;
  }

  .masonry .frame {
    height: 300px;
  }

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

  .quote-wall {
    grid-column: 1 / -1;
  }

  .review-photo {
    min-height: 500px;
  }

  .source-note {
    position: static;
    grid-column: 1 / -1;
    margin: 0;
  }

  .visit {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "hours"
      "photo"
      "map"
      "cta"
      "mark";
  }

  .hours-card {
    justify-self: start;
    margin: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: min(100% - 28px, 680px);
    gap: 16px;
    padding-top: 18px;
    border-left: 0;
  }

  .brand {
    padding-left: 0;
    font-size: 30px;
  }

  nav {
    gap: 14px;
    margin-left: 0;
    font-size: 15px;
  }

  .section-shell,
  .hero,
  .craft,
  .details,
  .reviews,
  .visit {
    width: min(100% - 28px, 680px);
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .hero-copy {
    padding-left: 0;
    border-left: 0;
  }

  .hero h1 {
    font-size: clamp(78px, 23vw, 120px);
  }

  .hero-lede {
    font-size: clamp(31px, 9vw, 44px);
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .metrics div + div {
    border-top: 1px solid rgba(53, 32, 20, 0.28);
    border-left: 0;
  }

  .hero-media {
    min-height: 320px;
  }

  .section-kicker {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .section-kicker span {
    width: 48px;
  }

  .section-aside h2,
  .details-intro h2,
  .reviews h2,
  .visit h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

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

  .craft-panel {
    min-height: auto;
    padding-bottom: 0;
  }

  .craft-panel img {
    width: calc(100% + 52px);
    height: 190px;
    margin: 24px -26px 0;
  }

  .panel-four {
    padding-bottom: 26px;
  }

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

  .reviews {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .review-photo {
    min-height: 360px;
  }

  blockquote {
    padding: 26px;
  }

  blockquote p {
    font-size: 28px;
  }

  .visit {
    gap: 22px;
  }

  address {
    font-size: 31px;
  }

  .hours-card {
    padding: 26px;
  }

  .hours-card div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .storefront,
  .map-panel {
    min-height: 300px;
  }

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

  .footer-cta a {
    min-height: 92px;
  }

  .footer-cta a + a {
    border-top: 1px solid rgba(245, 239, 227, 0.6);
    border-left: 0;
  }
}
