@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;
}

: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 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.logo {
  font-weight: 500;
  font-size: clamp(1.08rem, 2.5vw, 1.22rem);
  letter-spacing: 0.34em;
  padding-right: 0.1em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: baseline;
  gap: clamp(0.75rem, 2.2vw, 1.75rem);
}

.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 {
  opacity: 0.45;
}

.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;
  text-align: center;
  min-height: 0;
}

.hero-slider {
  position: relative;
  flex-shrink: 0;
  width: min(88vw, 44rem);
  margin-top: auto;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.hero-slider:active {
  cursor: grabbing;
}

.hero-viewport {
  overflow: hidden;
}

.hero-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  margin: 0;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  left: 0.15rem;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.hero-arrow--next {
  left: auto;
  right: 0.15rem;
}

.hero-arrow:hover {
  opacity: 1;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.hero-dot {
  width: 0.38rem;
  height: 0.38rem;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot[aria-current="true"] {
  background: var(--ink);
}

.home-copy {
  margin-top: 1.85rem;
}

.home-title {
  font-size: clamp(1.45rem, 4.8vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.36em;
  padding-left: 0.36em;
  line-height: 1;
}

.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: auto;
  margin-bottom: 2rem;
  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;
  padding-left: 0.18em;
}

.site-footer a:nth-of-type(3) {
  justify-self: end;
  margin-right: -0.18em;
}

.site-footer a:hover {
  opacity: 0.45;
}

.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 {
  flex: 1;
  width: min(52rem, 100%);
  margin: 0 auto;
  padding: 3.4rem 0 4.2rem;
  text-align: center;
}

.inner h1 {
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
}

.inner .rule {
  margin-top: 0.85rem;
  margin-bottom: 1.4rem;
}

.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 {
  margin-top: 1.1rem;
}

.inner-photo {
  width: min(22rem, 78%);
  margin: 2.4rem auto 0;
}

.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 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);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 2.4rem auto 0;
  max-width: 36rem;
}

.lookbook img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
}

.look-caption {
  margin-top: 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

@media (min-width: 900px) {
  .hero-slider {
    width: min(48vw, 46rem);
  }

  .places {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.2rem;
  }

  .lookbook {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 52rem;
    gap: 0.85rem;
  }
}

@media (max-width: 420px) {
  .nav {
    gap: 0.5rem;
  }

  .nav a {
    letter-spacing: 0.08em;
    font-size: 0.48rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
