:root {
  --night: #18243A;
  --deep: #101827;
  --ivory: #F7F4EE;
  --white: #FFFFFF;
  --copper: #A66F4A;
  --text: #172033;
  --muted: #667085;
  --line: rgba(24, 36, 58, 0.12);
  --shadow: 0 22px 70px rgba(16, 24, 39, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 238, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--night);
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--night);
  display: grid;
  place-items: center;
  color: var(--ivory);
  box-shadow: 0 10px 30px rgba(24, 36, 58, 0.18);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: var(--white);
  color: var(--copper);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 40px;
  align-items: center;
  padding: 72px 0 48px;
}

.eyebrow {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--night);
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  margin: 0;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 720px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid rgba(166, 111, 74, 0.26);
}

.button.primary {
  background: var(--night);
  color: var(--ivory);
}

.button.secondary {
  background: var(--white);
  color: var(--night);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  min-height: 450px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.02), rgba(16, 24, 39, 0.55));
}

.section {
  padding: 54px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16, 24, 39, 0.06);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(166, 111, 74, 0.12);
  color: var(--copper);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.page-hero {
  padding: 72px 0 24px;
  max-width: 840px;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 52px);
  margin: 20px 0 72px;
}

.split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.about-image {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.18);
}

.privacy h2 {
  font-size: 1.55rem;
  margin-top: 34px;
}

.privacy ul {
  padding-left: 22px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--ivory);
  border: 1px solid var(--line);
  text-decoration: none;
}

.contact-link strong {
  display: block;
  color: var(--night);
}

.muted {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-card,
  .portrait-card img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 46px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
    height: auto;
    max-height: 380px;
  }
}
