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

  :root {
  	--cream: #FAF6F0;
  	--warm-mid: #F0E9DE;
  	--ink: #2D2420;
  	--ink-mid: #5C4F44;
  	--ink-light: #998A7B;
  	--accent: #9E7C38;
  	--accent-light: #B8943F;
  	--rule: #DDD4C6;
  	--serif: 'Lora', Georgia, serif;
  	--sans: 'DM Sans', system-ui, sans-serif;
  }

  html {
  	background: var(--cream);
  	color: var(--ink);
  	font-family: var(--sans);
  	font-size: 17px;
  	line-height: 1.7;
  }

  body {
  	max-width: 720px;
  	margin: 0 auto;
  	padding: 0 24px 80px;
  }

  /* ---- HEADER ---- */
  header {
  	padding: 100px 0 24px;
  	margin-bottom: 32px;
  }

  .header-inner {
  	display: flex;
  	align-items: flex-start;
  	gap: 32px;
  }

  .header-text {
  	flex: 1;
  	min-width: 0;
  }

  .header-photo {
  	width: 140px;
  	height: 140px;
  	border-radius: 50%;
  	object-fit: cover;
  	flex-shrink: 0;
  	border: 3px solid var(--warm-mid);
  	box-shadow: 0 4px 20px rgba(45, 36, 32, 0.2);
  	margin-top: 8px;
  	cursor: pointer;
  	transition: rotate 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  	will-change: rotate, filter, box-shadow;
  	z-index: 10;
  }

  @media (max-width: 480px) {
  	.header-photo {
  		width: 96px;
  		height: 96px;
  	}
  }

  .location {
  	font-family: var(--sans);
  	font-size: 0.9rem;
  	font-weight: 300;
  	color: var(--ink-light);
  	margin-bottom: 28px;
  	font-style: italic;
  }

  h1 {
  	font-family: var(--serif);
  	font-size: clamp(2rem, 5vw, 2.6rem);
  	font-weight: 600;
  	line-height: 1.2;
  	letter-spacing: -0.015em;
  	color: var(--ink);
  	margin-bottom: 8px;
  }

  .subtitle-wrap {
  	position: relative;
  	margin-bottom: 32px;
  }
  
  .subtitle {
  	margin-bottom: 0;
  }
  
  .easter-egg-msg {
  	position: absolute;
  	top: 100%;
  	left: 0;
  	font-size: 0.8rem;
  	color: var(--accent);
  	font-style: italic;
  	opacity: 0;
  	transform: translateY(-5px);
  	transition: all 0.4s ease;
  	pointer-events: none;
  	white-space: nowrap;
  }
  
  .easter-egg-msg.visible {
  	opacity: 1;
  	transform: translateY(2px);
  }

  nav {
  	display: flex;
  	flex-wrap: wrap;
  	gap: 8px;
  }

  nav a {
  	font-family: var(--sans);
  	font-size: 13px;
  	font-weight: 400;
  	color: var(--ink-mid);
  	text-decoration: none;
  	border: 1px solid var(--rule);
  	border-radius: 100px;
  	padding: 5px 14px;
  	transition: all 0.15s ease;
  	background: transparent;
  }

  nav a:hover {
  	border-color: var(--accent);
  	color: var(--accent);
  	background: rgba(158, 124, 56, 0.07);
  }

  nav a.primary {
  	background: var(--accent);
  	color: var(--cream);
  	border-color: var(--accent);
  }

  nav a.primary:hover {
  	background: var(--accent-light);
  	border-color: var(--accent-light);
  	color: var(--cream);
  }

  /* ---- SECTIONS ---- */
  section {
  	margin-bottom: 56px;
  }

  h2 {
  	font-family: var(--serif);
  	font-size: 1.4rem;
  	font-weight: 500;
  	color: var(--ink);
  	margin-bottom: 20px;
  	padding-bottom: 12px;
  	border-bottom: 1px solid var(--rule);
  }

  p {
  	color: var(--ink-mid);
  	margin-bottom: 1em;
  	font-weight: 300;
  }

  p:last-child {
  	margin-bottom: 0;
  }

  p strong {
  	font-weight: 500;
  	color: var(--ink);
  }

  /* ---- OUTSIDE WORK ---- */
  .outside-items {
  	display: flex;
  	flex-direction: column;
  	gap: 20px;
  }

  .outside-item {
  	display: flex;
  	gap: 20px;
  	align-items: flex-start;
  }

  .outside-icon {
  	width: 44px;
  	height: 44px;
  	border-radius: 10px;
  	background: var(--warm-mid);
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	flex-shrink: 0;
  	margin-top: 2px;
  }

  .outside-icon svg {
  	width: 22px;
  	height: 22px;
  }

  .outside-item h3 {
  	font-family: var(--serif);
  	font-size: 1rem;
  	font-weight: 500;
  	color: var(--ink);
  	margin-bottom: 2px;
  }

  .outside-item p {
  	font-size: 0.9rem;
  	margin: 0;
  	line-height: 1.6;
  }

  /* ---- FOOTER ---- */
  footer {
  	border-top: 1px solid var(--rule);
  	padding-top: 32px;
  	margin-top: 32px;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	flex-wrap: wrap;
  	gap: 12px;
  }

  footer p {
  	font-size: 13px;
  	color: var(--ink-light);
  	font-weight: 300;
  	margin: 0;
  }

  footer a {
  	color: var(--ink-light);
  	text-decoration: none;
  	font-size: 13px;
  }

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

  /* ---- ANIMATIONS ---- */
  @keyframes fadeUp {
  	from {
  		opacity: 0;
  		transform: translateY(16px);
  	}

  	to {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }

  header {
  	animation: fadeUp 0.5s ease both;
  }

  section:nth-of-type(1) {
  	animation: fadeUp 0.5s 0.1s ease both;
  }

  section:nth-of-type(2) {
  	animation: fadeUp 0.5s 0.18s ease both;
  }

  section:nth-of-type(3) {
  	animation: fadeUp 0.5s 0.26s ease both;
  }

  section:nth-of-type(4) {
  	animation: fadeUp 0.5s 0.34s ease both;
  }

  section:nth-of-type(5) {
  	animation: fadeUp 0.5s 0.42s ease both;
  }

  @media (prefers-reduced-motion: reduce) {
  	* {
  		animation: none !important;
  	}
  }