:root {
  --background: #f4efe7;
  --foreground: #151922;
  --muted: #727884;
  --line: #bdc0c3;
  --accent: #df4b16;
  --max-width: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 25%, rgb(255 255 255 / 0.5), transparent 36rem),
    var(--background);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 5px;
}

.page-shell {
  width: min(calc(100% - 64px), var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 34px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.brand-on {
  color: var(--accent);
}

.brand-kicker,
.top-note,
.eyebrow,
.footer-meta > span:last-child {
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.brand-kicker {
  margin-top: 0.72rem;
  color: #666c77;
  font-size: 0.62rem;
  font-weight: 600;
}

.top-note {
  margin: 0.7rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #707782;
  font-size: 0.58rem;
  font-weight: 600;
  white-space: nowrap;
}

.top-note-line {
  width: 46px;
  height: 1px;
  background: #8c919a;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  gap: clamp(3rem, 6vw, 7.5rem);
  align-items: center;
  padding: 0.5rem 0 4rem;
}

.hero-copy {
  align-self: center;
  padding: 2rem 0 1rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  color: #6d7480;
  font-size: 0.67rem;
  font-weight: 650;
}

.eyebrow-line {
  width: 44px;
  height: 2px;
  background: var(--accent);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 5.8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
}

.lead {
  margin: clamp(2.5rem, 4.7vw, 4.2rem) 0 0;
  max-width: 760px;
  color: #707581;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  line-height: 1.55;
}

.journey-link {
  width: fit-content;
  margin-top: clamp(3rem, 5vw, 4.8rem);
  display: grid;
  grid-template-columns: 2px auto auto;
  gap: 1.6rem;
  align-items: center;
  text-decoration: none;
}

.journey-rule {
  width: 2px;
  height: 72px;
  background: var(--accent);
}

.journey-copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.journey-title {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1;
  transition: color 160ms ease;
}

.journey-subtitle {
  color: #8b8f96;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.journey-arrow {
  align-self: start;
  margin-top: -0.1rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform 160ms ease;
}

.journey-link:hover .journey-arrow {
  transform: translateX(5px);
}

.hero-art {
  margin: 0;
  width: 100%;
  max-width: 610px;
  justify-self: end;
  overflow: hidden;
  aspect-ratio: 0.805;
  background: #ddd5ca;
}

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

.site-footer {
  min-height: 92px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #777d87;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.footer-meta a {
  color: #777d87;
  text-decoration: none;
  transition: color 140ms ease;
}

.footer-meta a:hover {
  color: var(--accent);
}

.footer-divider {
  width: 1px;
  height: 18px;
  background: #9b9fa6;
}

.footer-meta > span:last-child {
  color: #777d87;
  font-size: 0.58rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .page-shell {
    width: min(calc(100% - 44px), var(--max-width));
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
    gap: 3rem;
  }

  .top-note {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
  }
}

@media (max-width: 800px) {
  .page-shell {
    width: min(calc(100% - 34px), 680px);
  }

  .site-header {
    min-height: 120px;
    padding-top: 28px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3.2rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .eyebrow {
    margin-bottom: 2.1rem;
  }

  h1 {
    font-size: clamp(3.35rem, 13.2vw, 5.3rem);
    line-height: 0.97;
  }

  .lead {
    margin-top: 2.4rem;
  }

  .lead br {
    display: none;
  }

  .journey-link {
    margin-top: 2.8rem;
  }

  .hero-art {
    justify-self: auto;
    max-width: none;
    aspect-ratio: 4 / 5;
  }

  .site-footer {
    padding: 1.7rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
  }

  .footer-meta {
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
  }
}

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

  .brand-kicker {
    letter-spacing: 0.26em;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.3rem);
  }

  .eyebrow {
    gap: 1.2rem;
  }

  .journey-link {
    grid-template-columns: 2px auto 1fr;
    gap: 1rem;
  }

  .journey-subtitle {
    font-size: 0.9rem;
  }

  .footer-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Keep the desktop holding page within one viewport on typical screens. */
@media (min-width: 801px) {
  .page-shell {
    height: 100svh;
    min-height: 620px;
  }

  .site-header {
    min-height: 108px;
    padding-top: 26px;
  }

  .hero {
    min-height: 0;
    padding: 0 0 24px;
    gap: clamp(2.5rem, 5vw, 6rem);
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: clamp(1.4rem, 2.8vh, 2.2rem);
  }

  h1 {
    font-size: clamp(3.2rem, min(5.4vw, 8.4vh), 5.5rem);
    line-height: 0.94;
  }

  .lead {
    margin-top: clamp(1.5rem, 3vh, 2.5rem);
    font-size: clamp(1rem, min(1.35vw, 2.2vh), 1.35rem);
    line-height: 1.45;
  }

  .journey-link {
    margin-top: clamp(1.7rem, 3.4vh, 2.8rem);
  }

  .journey-rule {
    height: 58px;
  }

  .hero-art {
    width: min(100%, 560px);
    max-height: calc(100svh - 190px);
    aspect-ratio: 648 / 774;
  }

  .site-footer {
    min-height: 64px;
    flex: 0 0 64px;
  }
}

@media (min-width: 801px) and (max-height: 760px) {
  .site-header {
    min-height: 92px;
    padding-top: 20px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-kicker {
    margin-top: 0.5rem;
  }

  .eyebrow {
    margin-bottom: 1.25rem;
  }

  h1 {
    font-size: clamp(3rem, 7.4vh, 4.4rem);
  }

  .lead {
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .journey-link {
    margin-top: 1.5rem;
  }

  .hero-art {
    max-height: calc(100svh - 165px);
  }

  .site-footer {
    min-height: 56px;
    flex-basis: 56px;
  }
}


/* Final composition refinement:
   align the left content block visually with the artwork height and
   give the large three-line title more breathing room. */
@media (min-width: 801px) {
  .hero {
    align-items: center;
  }

  .hero-copy {
    min-height: min(66svh, 720px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-art {
    height: min(66svh, 720px);
    max-height: min(66svh, 720px);
    aspect-ratio: auto;
  }

  h1 {
    line-height: 1.03;
  }

  h1 span + span {
    margin-top: 0.08em;
  }

  .eyebrow {
    margin-bottom: clamp(1.8rem, 3.2vh, 2.6rem);
  }

  .lead {
    margin-top: clamp(1.9rem, 3.4vh, 2.8rem);
  }

  .journey-link {
    margin-top: clamp(2rem, 3.8vh, 3rem);
  }
}

@media (min-width: 801px) and (max-height: 760px) {
  .hero-copy {
    min-height: min(62svh, 620px);
  }

  .hero-art {
    height: min(62svh, 620px);
    max-height: min(62svh, 620px);
  }

  h1 {
    line-height: 1.02;
  }

  h1 span + span {
    margin-top: 0.06em;
  }
}


/* Final micro-adjustment: slightly more breathing room in the main headline */
@media (min-width: 801px) {
  h1 {
    line-height: 1.07;
  }

  h1 span + span {
    margin-top: 0.11em;
  }
}

@media (min-width: 801px) and (max-height: 760px) {
  h1 {
    line-height: 1.05;
  }

  h1 span + span {
    margin-top: 0.09em;
  }
}
