* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Libre Baskerville', serif;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.menu a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu a:hover {
  color: #111111;
}

.page {
  min-height: 100vh;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.site-header {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #d1d5db;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.site-header p {
  margin: 1rem 0 0;
  color: #6b7280;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.intro,
.section {
  margin-top: 6rem;
}

.rule,
.small-rule {
  height: 1px;
  background: #d1d5db;
  margin: 0 auto;
}

.rule {
  width: 4rem;
}

.small-rule {
  width: 3rem;
}

.intro h2,
.section-title {
  text-transform: uppercase;
}

.intro h2 {
  margin: 1.25rem auto 0;
  max-width: 780px;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.section-title-wrap {
  margin-bottom: 2.75rem;
}

.section-title {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.service {
  margin-bottom: 5rem;
}

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

.service img {
  height: 28rem;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  filter: grayscale(100%);
}

.service-copy {
  margin-top: 1.5rem;
}

.service-copy h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropcap,
.dropcap-small {
  max-width: 720px;
  margin: 0 auto;
  color: #374151;
  text-align: justify;
  line-height: 2;
}

.dropcap {
  font-size: 1.06rem;
}

.dropcap-small {
  font-size: 1rem;
}

.dropcap::first-letter,
.dropcap-small::first-letter {
  float: left;
  margin-right: 0.7rem;
  margin-top: 0.2rem;
  line-height: 0.9;
  font-weight: 700;
  color: #111111;
}

.dropcap::first-letter {
  font-size: 3.4rem;
}

.dropcap-small::first-letter {
  font-size: 2.8rem;
}

.contact-block {
  color: #1f2937;
  line-height: 1.9;
}

.contact-name {
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
  }

  .container {
    padding: 4rem 1.4rem;
  }

  .intro,
  .section {
    margin-top: 4.5rem;
  }

  .service img {
    height: 18rem;
  }
}

@media (max-width: 640px) {
  .menu {
    justify-content: center;
    gap: 0.8rem 1rem;
  }

  .menu a {
    font-size: 0.72rem;
  }

  .dropcap,
  .dropcap-small {
    text-align: left;
    line-height: 1.8;
  }

  .dropcap::first-letter,
  .dropcap-small::first-letter {
    float: none;
    margin-right: 0;
    margin-top: 0;
    padding-right: 0.15rem;
  }
}
