* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a24;
  --muted: #66726a;
  --cream: #f5f2ea;
  --paper: #fffdf8;
  --sage: #798d7f;
  --sage-dark: #4d6254;
  --line: #d9ded9;
  --shadow: 0 22px 60px rgba(31, 42, 36, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(217, 222, 217, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.contact-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--sage-dark);
}

.hero {
  padding: 86px 0 74px;
  background:
    radial-gradient(circle at 12% 20%, rgba(121, 141, 127, 0.13), transparent 30%),
    linear-gradient(180deg, #fffdf8, #f5f2ea);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
}

.intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--ink);
  color: white;
  font-weight: 750;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.93;
}

.hero-art {
  overflow: hidden;
  border: 1px solid rgba(31, 42, 36, 0.08);
  border-radius: 28px;
  background: #e9ece7;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services-section {
  padding: 70px 0;
}

.services-box {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.service p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding: 0 0 84px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 46px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
}

.contact-card .eyebrow {
  color: #c9d3cb;
}

.contact-card h2 {
  margin-bottom: 10px;
}

.contact-card p {
  max-width: 610px;
  margin-bottom: 0;
  color: #d5ddd7;
}

.email-card {
  min-width: 310px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.email-card span,
.email-card strong {
  display: block;
}

.email-card span {
  margin-bottom: 5px;
  color: #becbc1;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.email-card strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 800px) {
  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .service-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .services-box,
  .contact-card {
    padding: 30px;
  }

  .email-card {
    min-width: 0;
  }

  .footer-inner {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-text small {
    display: none;
  }

  .contact-link {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3rem;
  }
}
