:root {
  --ink: #18211f;
  --muted: #69726f;
  --paper: #fbfbf7;
  --soft: #eef4ef;
  --line: #d9ded8;
  --green: #214b43;
  --teal: #3f8882;
  --rose: #b65b70;
  --cocoa: #4a2d1f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 12px 28px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 22, 20, 0.78), rgba(16, 22, 20, 0.22));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a,
.header-action {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.header-action:hover {
  color: var(--white);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  display: flex;
  min-height: 82svh;
  overflow: hidden;
  align-items: flex-end;
  padding: 118px 28px 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 18, 17, 0.9), rgba(33, 75, 67, 0.56) 48%, rgba(74, 45, 31, 0.34)),
    linear-gradient(0deg, rgba(12, 18, 17, 0.72), rgba(12, 18, 17, 0.12) 52%, rgba(12, 18, 17, 0.38)),
    url("assets/brand-logo-story.jpg") center 12% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c8d0;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.3rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.24;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--rose);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.button--ghost-dark {
  color: var(--green);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero__meta {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: min(310px, 32vw);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.hero__meta span {
  padding-left: 14px;
  border-left: 2px solid var(--teal);
}

.section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 84px 0;
}

.section__heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 60px;
}

.intro p:last-child,
.experience__copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.service-card div {
  display: grid;
  min-height: 250px;
  padding: 22px;
  align-content: start;
}

.service-card p {
  color: var(--muted);
  line-height: 1.68;
}

.service-card span {
  align-self: end;
  color: var(--green);
  font-weight: 800;
}

.experience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.experience__image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.experience__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.facts div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.facts dt {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 850;
}

.facts dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.prices {
  width: min(1060px, calc(100% - 56px));
}

.price-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.price-tab {
  min-width: 124px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--green);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.price-tab.is-active {
  color: var(--white);
  background: var(--green);
}

.price-panels {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-panel {
  padding: 18px;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.price-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  min-height: 54px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child,
.price-list--two div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.price-list span {
  color: var(--ink);
  line-height: 1.45;
}

.price-list strong {
  color: var(--green);
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.contacts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding-bottom: 58px;
}

.contact-copy {
  padding: 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.contact-copy .eyebrow {
  color: #bfe7e2;
}

.contact-copy h2 {
  margin-bottom: 26px;
}

address {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.85;
}

.map-wrap {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

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

.site-footer span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 10px 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 84svh;
    padding: 146px 20px 26px;
    background-position: center;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__meta {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

  .section,
  .prices {
    width: min(100% - 36px, 720px);
    padding: 64px 0;
  }

  .intro,
  .experience,
  .contacts {
    grid-template-columns: 1fr;
  }

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

  .price-list--two {
    grid-template-columns: 1fr;
  }

  .price-list--two div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .price-list--two div:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 130px;
    line-height: 1.1;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .button {
    width: 100%;
  }

  .service-card div {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .contact-copy {
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
