:root {
  color-scheme: light;
  --ink: #17131c;
  --muted: #5d5667;
  --paper: #ffffff;
  --soft: #f7f7fb;
  --line: #dfdbe8;
  --purple: #6f2dbd;
  --lavender: #b298dc;
  --sky: #b8d0eb;
  --mint: #b9faf8;
  --bread: #bf6f37;
  --shadow: 0 18px 45px rgba(23, 19, 28, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 0.9rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem max(1rem, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--purple);
  color: var(--paper);
  font-size: 0.92rem;
}

.brand__text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.nav a {
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--soft);
  color: var(--purple);
  outline: none;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 19, 28, 0.82), rgba(23, 19, 28, 0.46) 48%, rgba(23, 19, 28, 0.12)),
    linear-gradient(0deg, rgba(23, 19, 28, 0.25), rgba(23, 19, 28, 0));
}

.hero__content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 700;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 1rem 0 0;
  font-size: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  background: var(--purple);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(111, 45, 189, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #5b219f;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.8);
}

.button:disabled {
  cursor: not-allowed;
  transform: none;
  background: #a9a2b4;
  box-shadow: none;
}

.band {
  background: var(--ink);
  color: var(--paper);
}

.intro {
  padding: 2rem max(1rem, calc((100% - 1180px) / 2));
}

.section,
.section-grid {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.section-grid h2,
.section-heading h2,
.section--contact h2,
.about h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1.12;
}

.section-grid p,
.section-heading p,
.section--contact p,
.about p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.band .section-grid p {
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--bread);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.band .eyebrow {
  color: var(--mint);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.7rem;
}

.data-status,
.form-status {
  min-height: 1.5rem;
  margin: 0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(23, 19, 28, 0.08);
}

.offer-card__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: var(--soft);
}

.offer-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.offer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  padding: 0.32rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.tag--accent {
  background: var(--mint);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-heading--sticky {
  position: sticky;
  top: 96px;
}

.hours-list {
  display: grid;
  gap: 0.75rem;
}

.hours-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--soft);
}

.hours-item h3 {
  margin: 0;
  font-size: 1rem;
}

.hours-item p {
  margin: 0;
  color: var(--muted);
}

.section--form {
  width: 100%;
  margin: 0;
  padding: 4.5rem max(1rem, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.section--form .section-heading,
.inquiry-form {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc8dc;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 0.8rem;
}

input:focus,
textarea:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(111, 45, 189, 0.2);
}

textarea {
  resize: vertical;
}

.privacy {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-top: 1rem;
  font-weight: 600;
}

.privacy input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
}

.section--contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  border-left: 5px solid var(--purple);
  padding-left: 1rem;
  font-style: normal;
  font-weight: 800;
}

.contact-list a {
  color: var(--purple);
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.about {
  padding-top: 0;
}

.about__content {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1rem, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 74svh;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(23, 19, 28, 0.84), rgba(23, 19, 28, 0.38));
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1.12rem;
  }

  .section-grid,
  .section--split,
  .section--contact {
    grid-template-columns: 1fr;
  }

  .section-heading--sticky {
    position: static;
  }

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

@media (max-width: 620px) {
  .brand__text {
    font-size: 1rem;
  }

  .nav a {
    padding-inline: 0.55rem;
  }

  .hero {
    min-height: 70svh;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section {
    padding-block: 3.2rem;
  }

  .section-grid h2,
  .section-heading h2,
  .section--contact h2,
  .about h2 {
    font-size: 1.85rem;
  }

  .offer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hours-item {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 0.9rem;
  }
}
