:root {
  --bg: #f7f5f1;
  --text: #171717;
  --muted: #77716a;
  --line: #d9d5ce;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: min(calc(100% - 72px), var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 54px 0 28px;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
}

.hero-copy {
  min-height: min(78vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(10px, 2vw, 28px);
}

.copy-top { max-width: 520px; }

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  letter-spacing: .34em;
  font-weight: 500;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(108px, 10vw, 176px);
  line-height: .76;
  font-weight: 500;
  letter-spacing: -.045em;
}

h2 {
  margin: 38px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 3.7vw, 66px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.018em;
}

.copy-bottom {
  margin-top: clamp(74px, 10vh, 124px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 320px;
  padding: 17px 20px 16px;
  border: 1px solid #8f8a83;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1;
  letter-spacing: .01em;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease;
}
.cta-link:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.arrow {
  font-family: "Inter", Arial, sans-serif;
  font-size: .65em;
  transition: transform .22s ease;
}
.cta-link:hover .arrow { transform: translate(2px, -2px); }

.instagram {
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .2em;
}
.instagram:hover { color: var(--text); }

.hero-media {
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.hero-image-wrap {
  margin: 0;
  background: #e7e1d8;
  overflow: hidden;
}
.hero-image {
  display: block;
  width: 100%;
  height: min(78vh, 940px);
  object-fit: cover;
  object-position: center center;
}

.diary {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .25em;
  text-align: right;
}

footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .page-shell { width: min(calc(100% - 48px), 1060px); }
  .hero {
    grid-template-columns: minmax(300px, .85fr) minmax(430px, 1.15fr);
    gap: 48px;
  }
  .hero-copy { min-height: auto; }
  .hero-image { height: min(72vh, 820px); }
}

@media (max-width: 768px) {
  .page-shell {
    width: min(calc(100% - 28px), 560px);
    padding: 38px 0 24px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: stretch;
  }

  .hero-copy {
    display: contents;
    padding: 0;
  }

  .copy-top {
    order: 1;
    max-width: none;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
    letter-spacing: .31em;
  }

  h1 {
    font-size: clamp(82px, 25vw, 116px);
    line-height: .8;
  }

  h2 {
    margin-top: 24px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .hero-media {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .hero-image {
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center center;
  }

  .diary {
    margin-top: 12px;
    text-align: center;
    font-size: 8px;
  }

  .copy-bottom {
    order: 3;
    margin-top: 4px;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .cta-link {
    width: min(100%, 360px);
    min-width: 0;
    gap: 22px;
    padding: 16px 18px 15px;
    font-size: 25px;
  }

  .instagram { font-size: 9px; }

  footer {
    margin-top: 34px;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .page-shell { width: calc(100% - 22px); }
  h1 { font-size: 88px; }
  h2 { font-size: 34px; }
  .cta-link { font-size: 22px; }
}
