:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #1f1f1f;
  --muted: #6e6e6e;
  --line: #e7e0d8;
  --brand: #6f5949;
  --accent: #c5a17e;
  --soft: #f7f3ef;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.site-header,
.hero,
.section,
.site-footer {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 38px 0 22px;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--brand);
  font-size: 1.28rem;
  font-weight: 700;
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  padding: 10px 16px;
}

.nav a:hover,
.site-footer a:hover,
.contact-panel a:hover {
  color: var(--brand);
}

.hero {
  display: grid;
  gap: 28px;
  padding: 30px 0 58px;
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4.5vw, 3.6rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
}

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

.lead {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.03rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  font-weight: 700;
}

.button.primary {
  background: var(--brand);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--brand);
}

.visual {
  width: min(760px, 100%);
  margin: 0 auto;
}

.visual-top {
  padding: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.visual-top img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.visual-card {
  width: min(620px, calc(100% - 24px));
  margin: 18px auto 0;
  padding: 0;
  color: var(--muted);
  text-align: center;
}

.visual-card ul,
.services,
.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-card li::before,
.info-list li::before {
  content: "- ";
}

.section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.split,
.band .section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

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

.services article,
.quote,
.contact-panel {
  padding: 0;
  background: transparent;
}

.services article {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.services p,
.quote p,
.contact-panel,
.site-footer {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border: 1px solid var(--accent);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.band {
  width: 100%;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band .section {
  border-top: 0;
}

.contact-panel {
  display: grid;
  gap: 7px;
  font-style: normal;
}

.contact-panel strong {
  color: var(--brand);
}

.contact-panel a {
  color: var(--brand);
  font-weight: 700;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.theme-painter {
  --brand: #5e6655;
  --accent: #9f8b58;
  --soft: #f4f5f1;
  --line: #e2e3dc;
}

.theme-dog {
  --brand: #667052;
  --accent: #b68d5f;
  --soft: #f5f6ef;
  --line: #e1e4d7;
}

.theme-hair {
  --brand: #705b4a;
  --accent: #b9987b;
  --soft: #f7f1ec;
  --line: #e8ded5;
}

.theme-food {
  --brand: #79513f;
  --accent: #bd8a55;
  --soft: #fbf3e8;
  --line: #eadfce;
}

@media (max-width: 820px) {
  .split,
  .band .section,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding-top: 26px;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1 1 auto;
    padding-inline: 10px;
    text-align: center;
  }

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

  .section {
    padding: 44px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
