:root {
  --ink: #281d1a;
  --ink-soft: #5d4944;
  --paper: #fbf7f1;
  --paper-warm: #f6eee5;
  --card: #fffaf5;
  --line: #e5d9cd;
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #a65f5b;
  --accent-dark: #864c48;
  --accent-soft: #c18c83;
  --footer: #202020;
  --shadow: 0 16px 38px rgba(61, 42, 35, 0.08);
  --container: 1140px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #fbf5ef 0%, #fffaf5 42%, #f8efe6 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 230px 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 48px;
  color: #f7ece3;
  background: rgba(31, 31, 31, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-16px);
  opacity: 0;
  animation: headerIn 700ms ease forwards;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.logo {
  display: inline-grid;
  gap: 2px;
  width: max-content;
  color: #e9c4b5;
}

.logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
}

.logo small {
  margin-left: 36px;
  color: rgba(247, 236, 227, 0.74);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(247, 236, 227, 0.9);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: grid;
  gap: 1px;
  color: #fff8f0;
  white-space: nowrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.phone-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #e7bdac;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-contact small {
  color: rgba(255, 248, 240, 0.8);
  font-size: 10px;
  text-align: right;
}

.header-button,
.button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 30px;
  color: #fff8f0;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.header-button {
  min-height: 38px;
  padding: 0 27px;
  background: #c9837e;
  border-color: #c9837e;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.button-outline {
  color: var(--accent-dark);
  background: transparent;
  border-color: var(--accent-soft);
}

.button:hover,
.header-button:hover,
.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(127, 76, 70, 0.18);
}

.button-primary:hover,
.header-button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-outline:hover {
  color: #fff8f0;
  background: var(--accent);
  border-color: var(--accent);
}

.slim {
  min-height: 29px;
  min-width: 260px;
  padding: 0 22px;
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 324px;
  overflow: hidden;
  background: #f2e8df;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(251, 247, 241, 0.98) 0%, rgba(251, 247, 241, 0.94) 37%, rgba(251, 247, 241, 0.72) 56%, rgba(251, 247, 241, 0.16) 100%),
    url("assets/hero-grooming.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  transform: scale(1.025);
  animation: heroImage 1400ms ease forwards;
}

.hero-content {
  position: relative;
  display: grid;
  min-height: 324px;
  padding: 37px 0 18px;
  align-content: space-between;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
  opacity: 0;
  transform: translateY(26px);
  animation: riseText 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy h1 span {
  font-size: 45px;
}

.hero-copy h1 em {
  margin-top: 7px;
  color: var(--accent);
  font-size: 43px;
  font-style: italic;
  animation-delay: 180ms;
}

.hero-copy p {
  max-width: 410px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: riseText 800ms ease 360ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(16px);
  animation: riseText 800ms ease 520ms forwards;
}

.hero-actions .button {
  min-width: 180px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 18px;
  width: min(500px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  animation: riseText 680ms ease forwards;
}

.hero-features li:nth-child(1) {
  animation-delay: 720ms;
}

.hero-features li:nth-child(2) {
  animation-delay: 820ms;
}

.hero-features li:nth-child(3) {
  animation-delay: 920ms;
}

.hero-features li:nth-child(4) {
  animation-delay: 1020ms;
}

.hero-features svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 16px 0 10px;
}

.section-compact {
  padding-top: 2px;
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #dccbc0;
}

.left-title {
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 13px;
  text-align: left;
}

.left-title::before,
.left-title::after {
  display: none;
}

.breed-grid,
.price-grid,
.care-grid,
.before-grid,
.masters-grid {
  display: grid;
  gap: 16px;
}

.breed-grid {
  grid-template-columns: repeat(6, 1fr);
}

.image-card {
  overflow: hidden;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 9px 20px rgba(68, 44, 36, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.image-card:hover {
  transform: translateY(-5px);
  border-color: #d1afa5;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: center 38%;
  background: #e7ddd4;
}

.breed-grid .image-card img {
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  background: linear-gradient(180deg, #eadfd5 0%, #f4ebe3 100%);
}

.image-card div {
  padding: 10px 13px 12px;
}

.image-card h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.image-card p {
  min-height: 34px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.28;
}

.image-card strong {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.price-grid {
  grid-template-columns: repeat(6, 1fr);
}

.price-card {
  min-height: 128px;
  padding: 9px 11px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(243, 232, 220, 0.7)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 7px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.price-card ul {
  display: grid;
  gap: 1px;
  min-height: 59px;
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 8px;
  line-height: 1.18;
}

.price-card li {
  position: relative;
  padding-left: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
}

.price-card strong {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.price-note {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.before-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.before-card {
  position: relative;
  margin: 0;
}

.before-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center center;
  background: linear-gradient(180deg, #e6d8cd 0%, #f3e9e0 100%);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(68, 44, 36, 0.06);
}

.before-card p {
  margin: 5px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  text-align: center;
}

.tag {
  position: absolute;
  bottom: 22px;
  padding: 4px 10px;
  color: var(--accent-dark);
  background: rgba(255, 250, 245, 0.9);
  border-radius: 3px 3px 0 0;
  font-size: 11px;
  text-transform: uppercase;
}

.tag-before {
  left: 0;
}

.tag-after {
  right: 0;
}

.split-handle {
  position: absolute;
  left: 50%;
  top: calc(50% - 25px);
  width: 24px;
  height: 24px;
  padding: 0;
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(68, 44, 36, 0.12);
  transform: translateX(-50%);
}

.split-handle::before {
  content: "›";
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 20px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 7px;
}

.masters-booking {
  padding-top: 8px;
  border-top: 1px solid rgba(229, 217, 205, 0.75);
}

.dual-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 18px;
  align-items: start;
}

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

.master-card {
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: 132px;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.master-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #eee3da;
}

.master-card div {
  padding: 12px 9px 9px;
}

.master-card h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.master-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 400;
}

.master-card p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
}

.master-card a {
  color: var(--accent);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-panel {
  padding: 0 13px 10px;
  background: rgba(255, 250, 245, 0.55);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.booking-panel .section-title {
  justify-content: center;
  padding-top: 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 12px;
}

.calendar {
  color: var(--ink-soft);
}

.calendar-head {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  margin-bottom: 8px;
}

.calendar-head strong {
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

.calendar-head button,
.days button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  border: 0;
}

.calendar-head button {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  font-size: 22px;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
}

.weekdays {
  margin-bottom: 5px;
  color: #7d625d;
  font-size: 10px;
}

.days button {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 10px;
  transition: background 180ms ease, color 180ms ease;
}

.days button:hover,
.days button.selected {
  color: #fffaf5;
  background: var(--accent);
}

.days .muted {
  color: #c2b4aa;
}

.booking-form {
  display: grid;
  gap: 7px;
}

.booking-form label {
  display: grid;
  gap: 4px;
}

.booking-form label span {
  color: var(--ink);
  font-size: 11px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 29px;
  padding: 0 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
}

.booking-form .button {
  width: 100%;
  min-height: 34px;
}

.booking-form small {
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.loyalty-band {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 7px 0 9px;
  background:
    linear-gradient(90deg, rgba(252, 248, 243, 1) 0%, rgba(249, 238, 229, 0.95) 56%, rgba(249, 238, 229, 0.2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.loyalty-content {
  position: relative;
  min-height: 104px;
}

.loyalty-content .section-title {
  margin-bottom: 12px;
}

.loyalty-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 16px;
  width: calc(100% - 238px);
}

.loyalty-row article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 9px;
  align-items: start;
}

.loyalty-row svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loyalty-row h3 {
  margin: 0 0 5px;
  font-size: 12px;
}

.loyalty-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.35;
}

.loyalty-content > img {
  position: absolute;
  right: -20px;
  bottom: -34px;
  width: 238px;
  max-width: 30%;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.additional-care {
  padding-top: 12px;
}

.care-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.small-card img {
  height: 78px;
}

.small-card h3 {
  font-size: 14px;
}

.small-card p {
  min-height: 30px;
  margin-bottom: 0;
}

.site-footer {
  margin-top: 10px;
  color: #f2e7df;
  background:
    linear-gradient(90deg, rgba(32, 32, 32, 0.98), rgba(27, 27, 27, 0.98)),
    var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 1.2fr 1.25fr;
  gap: 28px;
  padding: 18px 0 10px;
}

.site-footer section + section {
  border-left: 1px solid var(--line-dark);
  padding-left: 24px;
}

.site-footer h2 {
  margin: 0 0 9px;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(242, 231, 223, 0.88);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
  color: rgba(242, 231, 223, 0.88);
  font-size: 12px;
}

.footer-map {
  width: 225px;
  height: 68px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-brand .logo span {
  font-size: 27px;
}

.footer-brand .logo small {
  color: rgba(242, 231, 223, 0.62);
}

.footer-brand p {
  max-width: 290px;
  margin-bottom: 8px;
}

.whatsapp-button {
  min-height: 31px;
  padding: 0 24px;
  background: #c9837e;
  border-color: #c9837e;
  font-size: 11px;
}

.copyright {
  padding: 5px 0 10px;
  color: rgba(242, 231, 223, 0.68);
  font-size: 11px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-group .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-group .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.reveal-group .reveal:nth-child(5) {
  transition-delay: 280ms;
}

.reveal-group .reveal:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes headerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImage {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 92px), var(--container));
  }

  .site-header {
    grid-template-columns: 210px 1fr auto auto;
    padding: 0 28px;
    gap: 14px;
  }

  .main-nav {
    gap: 18px;
    font-size: 11px;
  }

  .phone-link {
    font-size: 13px;
  }

  .header-button {
    padding: 0 20px;
    font-size: 12px;
  }

  .logo span {
    font-size: 28px;
  }

}

@media (max-width: 940px) {
  body {
    font-size: 13px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 16px;
  }

  .main-nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .logo span {
    font-size: 26px;
  }

  .logo small {
    margin-left: 28px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .header-button {
    min-height: 34px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(251, 247, 241, 0.98) 0%, rgba(251, 247, 241, 0.86) 43%, rgba(251, 247, 241, 0.3) 70%, rgba(251, 247, 241, 0.05) 100%),
      url("assets/hero-grooming.png");
    background-size: auto 100%;
    background-position: 58% bottom;
  }

  .hero-content {
    padding: 34px 0 20px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 span {
    font-size: 40px;
  }

  .hero-copy h1 em {
    font-size: 38px;
  }

  .hero-copy p {
    max-width: 370px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-width: 185px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 8px 12px;
    padding: 12px 10px;
    background: rgba(251, 247, 241, 0.9);
    border: 1px solid var(--line);
    border-radius: 7px;
    box-shadow: 0 10px 22px rgba(68, 44, 36, 0.08);
  }

  .hero-features li {
    gap: 5px;
    font-size: 9px;
  }

  .breed-grid,
  .price-grid,
  .care-grid,
  .before-grid,
  .masters-grid,
  .dual-layout,
  .booking-grid,
  .loyalty-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .image-card {
    max-width: none;
  }

  .split-handle {
    top: calc(50% - 25px);
  }

  .tag {
    bottom: 24px;
  }

  .breed-grid .image-card img {
    height: auto;
  }

  .loyalty-row {
    width: 100%;
    gap: 16px;
  }

  .loyalty-content {
    padding-bottom: 142px;
  }

  .loyalty-content > img {
    right: 50%;
    bottom: -18px;
    width: 235px;
    max-width: 82%;
    transform: translateX(50%);
  }

  .site-footer section + section {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
  }

  .header-button {
    width: 112px;
    padding: 0 10px;
    line-height: 1.15;
    text-align: center;
  }

  .logo span {
    font-size: 23px;
  }

  .logo small {
    margin-left: 24px;
    letter-spacing: 2px;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }

  .hero-copy h1 span {
    font-size: 35px;
  }

  .hero-copy h1 em {
    font-size: 33px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-title {
    gap: 12px;
    font-size: 20px;
  }

  .section-title::before,
  .section-title::after {
    width: 24px;
  }

  .master-card {
    grid-template-columns: 42% 1fr;
  }

  .footer-map {
    width: 100%;
    height: 130px;
  }
}
