* {
  box-sizing: border-box;
  }

:root {
--background: #f7f4ee;
--surface: #ffffff;
--text: #1f2933;
--heading: #111827;
--muted: #667085;
--accent: #7c6f55;
--accent-dark: #4b3f2f;
--border: #ded7ca;
--shadow: rgba(17, 24, 39, 0.08);
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Georgia, "Times New Roman", serif;
background:
radial-gradient(circle at top left, rgba(124, 111, 85, 0.10), transparent 32%),
var(--background);
color: var(--text);
line-height: 1.72;
font-size: 17px;
}

a {
color: #1f4e79;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

.hero {
display: grid;
grid-template-columns: 310px minmax(0, 1fr);
gap: 56px;
align-items: center;
max-width: 1180px;
margin: 0 auto;
padding: 86px 32px 58px;
}

.hero-photo {
align-self: start;
}

.hero-photo img {
width: 100%;
aspect-ratio: 4 / 5;
object-fit: cover;
object-position: center top;
border-radius: 22px;
border: 1px solid rgba(124, 111, 85, 0.22);
box-shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
background: #e7e0d2;
}

.hero-text {
max-width: 760px;
}

.eyebrow {
font-family: Arial, Helvetica, sans-serif;
text-transform: uppercase;
letter-spacing: 0.13em;
font-size: 12px;
color: var(--accent);
font-weight: 700;
margin: 0 0 14px;
}

h1 {
font-size: clamp(42px, 6vw, 68px);
line-height: 1.02;
margin: 0 0 26px;
color: var(--heading);
letter-spacing: -0.04em;
}

h2 {
font-size: 28px;
line-height: 1.2;
margin: 0 0 18px;
color: var(--heading);
letter-spacing: -0.02em;
border-bottom: 1px solid var(--border);
padding-bottom: 12px;
}

h3 {
font-size: 19px;
line-height: 1.35;
margin: 0 0 6px;
color: var(--heading);
}

p {
margin-top: 0;
}

.intro {
font-size: 18.5px;
margin-bottom: 17px;
color: #273444;
}

.hero-actions {
margin-top: 28px;
margin-bottom: 18px;
}

.cv-button {
font-family: Arial, Helvetica, sans-serif;
display: inline-block;
padding: 12px 18px;
border-radius: 999px;
background: var(--heading);
color: #ffffff;
font-size: 14.5px;
font-weight: 700;
border: 1px solid var(--heading);
box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
transition: all 0.18s ease;
}

.cv-button:hover {
background: #ffffff;
color: var(--heading);
text-decoration: none;
transform: translateY(-1px);
}

.social-icons {
display: flex;
flex-wrap: wrap;
gap: 11px;
margin-top: 20px;
}

.social-icons a {
font-family: Arial, Helvetica, sans-serif;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 13px;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(255, 255, 255, 0.82);
color: #233142;
font-size: 14px;
font-weight: 650;
line-height: 1;
box-shadow: 0 6px 16px rgba(17, 24, 39, 0.05);
transition: all 0.18s ease;
}

.social-icons a:hover {
background: #ffffff;
border-color: #b8ad9b;
transform: translateY(-1px);
text-decoration: none;
}

.social-icons i {
font-size: 17px;
}

main {
max-width: 940px;
margin: 0 auto;
padding: 10px 32px 76px;
}

.section {
background: rgba(255, 255, 255, 0.92);
margin-bottom: 24px;
padding: 34px 36px;
border-radius: 20px;
border: 1px solid rgba(222, 215, 202, 0.78);
box-shadow: 0 18px 44px var(--shadow);
}

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

.item {
margin-bottom: 22px;
}

.item:last-child {
margin-bottom: 0;
}

.item p {
margin: 4px 0;
color: #344054;
}

.clean-list {
margin: 0;
padding-left: 20px;
}

.clean-list li {
margin-bottom: 8px;
}

footer {
text-align: center;
padding: 30px 24px 36px;
color: var(--muted);
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}

@media (max-width: 900px) {
.hero {
grid-template-columns: 1fr;
gap: 34px;
padding: 44px 24px 38px;
}

.hero-photo {
max-width: 290px;
}

.hero-text {
max-width: 100%;
}

main {
padding: 0 24px 58px;
}

.section {
padding: 28px 24px;
}
}

@media (max-width: 520px) {
body {
font-size: 16px;
}

.hero {
padding: 34px 18px 30px;
}

.hero-photo {
max-width: 240px;
}

h1 {
font-size: 40px;
}

h2 {
font-size: 24px;
}

.intro {
font-size: 17px;
}

main {
padding-left: 18px;
padding-right: 18px;
}

.section {
border-radius: 16px;
padding: 24px 20px;
}

.social-icons {
gap: 9px;
}

.social-icons a {
font-size: 13.5px;
}
}
