:root {
  --ink: #202326;
  --muted: #626a64;
  --line: #d9d6cf;
  --paper: #ffffff;
  --warm: #f4f1ea;
  --stone: #e8e3d8;
  --green: #354536;
  --green-soft: #edf1ea;
  --button: #2f3b31;
  --button-hover: #1f2a21;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

address {
  font-style: normal;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--green);
  border-radius: 3px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.notice {
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid #c9c0a8;
  background: #f3ecd8;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.notice strong {
  color: var(--green);
}

.notice a {
  margin-left: 8px;
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: 44px;
  align-items: center;
  width: min(calc(100vw - 44px), var(--max));
  margin: 0 auto;
  padding: 58px 0 52px;
}

.hero__text {
  max-width: 540px;
}

.kicker {
  margin: 0 0 9px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.18;
}

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 2rem;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.hero p,
.service-detail p,
.intro p,
.faq p {
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button,
.shop-link,
.contact__items a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.button--main {
  border: 1px solid var(--button);
  background: var(--button);
  color: var(--paper);
}

.button--main:hover {
  background: var(--button-hover);
}

.button--quiet {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green);
}

.hero__media {
  margin: 0;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
}

.section {
  width: min(calc(100vw - 44px), var(--max));
  margin: 0 auto;
  padding: 48px 0;
}

.intro {
  max-width: none;
  width: 100%;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.intro p {
  max-width: 860px;
  margin: 0;
}

.section__head {
  max-width: 620px;
  margin-bottom: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 188px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.service-grid p,
.check-list,
.product-list,
.footer {
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  border-top: 1px solid var(--line);
}

.check-list {
  margin: 0;
  padding: 22px 22px 22px 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--green-soft);
}

.check-list li + li {
  margin-top: 9px;
}

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

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-family: Arial, Helvetica, sans-serif;
}

.product-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.shop-link {
  border: 1px solid var(--green);
  color: var(--green);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 34px;
  width: 100%;
  max-width: none;
  padding: 46px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}

.contact h2 {
  margin-bottom: 14px;
}

.contact__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact__items a {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.contact__items small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.contact__map {
  grid-column: 1 / -1;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.faq {
  padding-bottom: 62px;
}

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

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

details p {
  max-width: 720px;
  margin-bottom: 18px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #f8f7f3;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

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

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

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

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

  .topbar {
    padding: 13px 16px;
  }

  .notice {
    padding-right: 16px;
    padding-left: 16px;
  }

  .notice a {
    display: block;
    margin: 6px 0 0;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    gap: 14px;
  }

  .hero,
  .section {
    width: min(calc(100vw - 32px), var(--max));
  }

  .hero {
    gap: 26px;
    padding: 38px 0;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.26rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

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

  .service-grid article {
    min-height: auto;
  }

  .intro,
  .contact,
  .footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}
