@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #e1d4c4;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --font: "Jost", "Century Gothic", Futura, "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--bg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("../images/grain.png");
  background-size: 280px 280px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 2.35rem clamp(1.15rem, 4.2vw, 2.8rem) 1.85rem;
}

/* Header */

.site-header,
.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.logo,
.logo {
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: clamp(1.08rem, 2.5vw, 1.22rem);
  letter-spacing: 0.22em;
  padding-right: 0.08em;
  line-height: 1;
  font-synthesis: none;
}

.nav,
.nav {
  display: flex;
  align-items: baseline;
  gap: clamp(0.75rem, 2.2vw, 1.75rem);
}

.nav a,
.nav a {
  font-size: clamp(0.55rem, 1.35vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a:hover {
  opacity: 0.45;
}

.nav a[aria-current="page"],
.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.32em;
  text-decoration-thickness: 1px;
}

/* Home hero */

.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 0;
  padding-top: 2.4rem;
  gap: 0;
}

.hero-photo {
  flex-shrink: 0;
  width: min(76vw, 34rem);
  height: auto;
  display: block;
}

.home-copy {
  margin-top: 1.85rem;
  margin-bottom: 1.6rem;
}

.home-title {
  font-family: "Gotham", sans-serif;
  font-size: clamp(1.45rem, 4.8vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.36em;
  padding-left: 0.36em;
  line-height: 1;
  font-synthesis: none;
}

.rule {
  display: block;
  width: 2.05rem;
  height: 1px;
  margin: 0.95rem auto 1.05rem;
  background: var(--ink);
  border: 0;
}

.home-sub {
  font-size: clamp(0.56rem, 1.5vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  padding-left: 0.26em;
}

.cta {
  display: inline-block;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 0 0 0.1rem 0.08em;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.2s ease;
}

.cta:hover {
  opacity: 0.45;
}

/* Footer: same band and alignment as the original screenshot */

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: baseline;
  width: min(72vw, 42rem);
  margin-inline: auto;
  position: relative;
  flex-shrink: 0;
}

.site-footer a {
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-footer a:nth-of-type(1) {
  justify-self: start;
}

.site-footer a:nth-of-type(2) {
  justify-self: center;
}

.site-footer a:nth-of-type(3) {
  justify-self: end;
  margin-right: -0.18em;
}

.site-footer a:hover {
  opacity: 0.45;
}

.site-footer a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.32em;
  text-decoration-thickness: 1px;
}

.site-footer .sep {
  display: none;
}

.site-footer::before,
.site-footer::after {
  content: "·";
  position: absolute;
  top: 0.05em;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  line-height: 1;
  pointer-events: none;
}

.site-footer::before {
  left: 33.333%;
  transform: translateX(-50%);
}

.site-footer::after {
  left: 66.666%;
  transform: translateX(-50%);
}

/* Inner pages */

.inner,
.inner {
  flex: 1;
  width: min(52rem, 100%);
  margin: 0 auto;
  padding: 3.4rem 0 4.2rem;
  text-align: center;
}

.inner h1,
.inner h1 {
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
}

.inner .rule,
.inner .rule {
  margin-top: 0.85rem;
  margin-bottom: 1.4rem;
}

.lead,
.copy,
.lead,
.copy {
  max-width: 34rem;
  margin: 0 auto;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-soft);
}

.lead + .copy,
.lead + .copy,
.copy + .copy,
.copy + .copy {
  margin-top: 1.1rem;
}

.inner-photo {
  width: min(26rem, 84%);
  margin: 1.8rem auto 2.2rem;
}

.owner-phone {
  margin: 1.5rem auto 0;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
}

.owner-phone a {
  display: inline-block;
  margin-top: 0.15rem;
  border-bottom: 1px solid transparent;
}

.owner-phone a:hover {
  border-bottom-color: var(--ink);
}

.places {
  display: grid;
  gap: 2.6rem;
  margin-top: 2.6rem;
}

.place {
  scroll-margin-top: 1.5rem;
}

.place h2 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
}

.place h2 a {
  text-transform: uppercase;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin-top: 0;
  border-bottom: 0;
}

.place p,
.place a {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 0.55rem;
}

.place a {
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.place a:hover {
  border-bottom-color: var(--ink);
}

.place h2 a:hover {
  opacity: 0.45;
}

/* Single store pages */

.page--store .inner,
.page--store .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.6rem;
  padding-bottom: 2rem;
}

.store-kicker {
  font-size: clamp(0.56rem, 1.5vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  margin-bottom: 0.85rem;
}

.store-details,
.store-hours {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
  font-style: normal;
  color: var(--ink-soft);
}

.store-details a {
  border-bottom: 1px solid transparent;
}

.store-details a:hover {
  border-bottom-color: var(--ink);
}

.store-hours {
  margin-top: 1.35rem;
}

.hours-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hours-list {
  list-style: none;
  width: min(22.5rem, 100%);
  margin: 0 auto;
  text-align: left;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list li span:last-child {
  text-align: right;
  white-space: nowrap;
}

.hours-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-soft);
}

.hours-shared {
  margin-top: 3.2rem;
}

.place .hours-title {
  margin-top: 0;
}

.place .store-hours {
  margin-top: 1rem;
}

.store .cta {
  margin-top: 1.8rem;
  margin-bottom: 0;
}

.lookbook,
.lookbook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.6rem auto 0;
  max-width: 36rem;
}

.lookbook button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.lookbook img,
.lookbook img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 3.2rem;
  background: rgba(17, 17, 17, 0.78);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(92vw, 36rem);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: none;
  color: #f4eee6;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close {
  top: 1rem;
  right: 1.1rem;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  padding: 0.4rem;
}

.lightbox-prev {
  left: 0.6rem;
}

.lightbox-next {
  right: 0.6rem;
}

.look-caption,
.look-caption {
  margin-top: 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

@media (min-width: 900px) {
  .hero-photo {
    width: min(36vw, 34rem);
  }

  .places {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.2rem;
  }

  .lookbook,
  .lookbook {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 52rem;
    gap: 0.85rem;
  }
}

@media (max-width: 420px) {
  .nav,
  .nav {
    gap: 0.5rem;
  }

  .nav a,
  .nav a {
    letter-spacing: 0.08em;
    font-size: 0.48rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
