:root {
  --ink: #08060a;
  --charcoal: #17111c;
  --purple: #65339a;
  --purple-dark: #7c44ba;
  --paper: #ffffff;
  --soft: #120d16;
  --line: #65339a;
  --muted: #c9bfd0;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: #f7f4fb;
  background: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 6, 10, 0.96);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(12px);
}

.top-bar {
  background: #000000;
  color: #fff;
  font-size: 0.92rem;
}

.top-bar-inner,
.nav-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-bar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-bar a {
  color: #fff;
  font-weight: 700;
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}

.brand img {
  width: 220px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  padding: 10px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 9px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 25;
  display: none;
  min-width: 220px;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  border-radius: var(--radius);
  padding: 10px 12px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--paper);
  background: var(--purple);
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(101, 51, 154, 0.4), transparent 34%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.96), rgba(18, 13, 22, 0.9)),
    linear-gradient(135deg, #050405, #65339a);
  border-bottom: 2px solid var(--line);
  color: #fff;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 46px 0 58px;
}

.hero-main {
  position: relative;
  min-height: 560px;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 48px;
  background: transparent;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(18, 13, 22, 0.56) 46%, rgba(18, 13, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 4, 5, 0.42) 0%, rgba(5, 4, 5, 0.02) 22%, rgba(5, 4, 5, 0.02) 76%, rgba(5, 4, 5, 0.42) 100%);
}

.hero-main > :not(.hero-shop-photo) {
  position: relative;
  z-index: 2;
}

.hero-shop-photo {
  position: absolute;
  inset: 0 -28px 0 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111;
  box-shadow: none;
}

.hero-shop-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) brightness(0.86);
  opacity: 0.88;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-brand-mark {
  width: min(500px, 100%);
  align-self: center;
  margin: 0 auto 24px;
}

.social-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 2px solid var(--purple);
  border-radius: 999px;
  background: #ffffff;
  color: var(--purple);
  font-size: 1.35rem;
  font-weight: 900;
}

.instagram-badge {
  position: relative;
}

.instagram-badge::before {
  content: "";
  width: 23px;
  height: 23px;
  border: 3px solid var(--purple);
  border-radius: 8px;
}

.instagram-badge::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 3px solid var(--purple);
  border-radius: 999px;
  box-shadow: 11px -11px 0 -3px var(--purple);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 4.45rem);
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--purple);
  border-radius: var(--radius);
  background: var(--purple);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.btn:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn.light {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.btn.small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.hero-panel {
  border: 2px solid var(--purple);
  border-radius: var(--radius);
  background: rgba(8, 6, 10, 0.78);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel h2 {
  font-size: 1.45rem;
}

.hero-panel dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 0;
}

.hero-panel div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 13px 0;
  border-top: 2px solid var(--purple);
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.hero-panel dd {
  margin: 0;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: var(--soft);
}

.detail-corner {
  background: linear-gradient(135deg, rgba(101, 51, 154, 0.18), rgba(5, 4, 5, 0.92));
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.media-panel {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.section-photo {
  margin: 0 0 28px;
  aspect-ratio: 16 / 7;
}

.detail-photo {
  aspect-ratio: 4 / 3;
}

.detail-photo img {
  min-height: 0;
  object-fit: cover;
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.25rem;
}

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

.card strong {
  color: #ffffff;
}

.featured-service {
  grid-column: 1 / -1;
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(101, 51, 154, 0.28), var(--charcoal) 54%);
}

.featured-service .actions {
  margin-top: 18px;
}

.category-label {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-left: 6px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  background: rgba(101, 51, 154, 0.16);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-label:first-child {
  margin-top: 0;
}

.category-label-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-label-action .btn {
  flex: 0 0 auto;
}

.service-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0 0;
  padding: 18px 20px;
  border: 2px solid var(--purple);
  border-left-width: 7px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(101, 51, 154, 0.28), rgba(14, 10, 17, 0.96));
}

.service-heading:first-child {
  margin-top: 0;
}

.service-heading h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1.35rem;
}

.service-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.service-heading a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 2px solid var(--purple);
  border-radius: var(--radius);
  background: var(--purple);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.service-heading a:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.service-note {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  padding: 0 0 10px;
  border-bottom: 2px solid rgba(101, 51, 154, 0.55);
  color: var(--muted);
  font-weight: 800;
}

.service-note a {
  color: #ffffff;
  text-decoration-color: var(--purple);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-note a:hover {
  color: var(--purple-light);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-bottom: 18px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: #0d0910;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-photo {
  min-height: 320px;
  margin-bottom: 34px;
}

.coupon-note {
  grid-column: 1 / -1;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: center;
}

.coupon-card {
  position: relative;
  overflow: visible;
  border: 2px dashed var(--purple);
  margin-top: 16px;
}

.coupon-card::before {
  content: "\2702\FE0E  cut here";
  position: absolute;
  top: -15px;
  left: 18px;
  padding-right: 12px;
  background: var(--charcoal);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.callout {
  border-left: 6px solid var(--purple);
  border-radius: var(--radius);
  background: var(--charcoal);
  padding: 26px;
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--muted);
}

.price {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--line);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: left;
}

.price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(101, 51, 154, 0.4), transparent 34%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.96), rgba(18, 13, 22, 0.9)),
    linear-gradient(135deg, #050405, #65339a);
  border-bottom: 2px solid var(--line);
  padding: 58px 0;
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.oil-stock-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: #ffffff;
}

.oil-stock-list li {
  padding-left: 2px;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-field,
.form-wide,
.form-options {
  display: grid;
  gap: 8px;
}

.form-wide,
.form-options,
.application-form .actions {
  grid-column: 1 / -1;
}

.application-form label,
.form-options legend {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.required-label {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.conditional-other {
  display: none;
}

.conditional-other.show {
  display: grid;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.application-form textarea {
  min-height: 120px;
  resize: vertical;
}

.autocomplete-field {
  position: relative;
}

.autocomplete-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 15;
  display: none;
  max-height: 230px;
  overflow-y: auto;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.autocomplete-field.open .autocomplete-menu {
  display: block;
}

.autocomplete-option {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(101, 51, 154, 0.2);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}

.autocomplete-option:hover,
.autocomplete-option:focus,
.autocomplete-option.active {
  outline: none;
  background: var(--purple);
  color: #ffffff;
}

.autocomplete-empty {
  margin: 0;
  color: #605866;
  padding: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 800;
}

.choice-grid input {
  width: auto;
}

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

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

.detail-choice-grid label {
  align-items: flex-start;
}

.detail-choice-grid span,
.add-on-choice-grid span {
  display: grid;
  gap: 4px;
}

.detail-choice-grid small,
.add-on-choice-grid small {
  color: #605866;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.calendar-field {
  position: relative;
  gap: 10px;
}

.detail-calendar {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 18;
  display: none;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.calendar-field.open .detail-calendar {
  display: block;
}

.calendar-top {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-title {
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.calendar-nav,
.calendar-day {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.calendar-nav {
  width: 38px;
  height: 38px;
}

.calendar-nav:hover,
.calendar-day:not(:disabled):hover,
.calendar-day.selected {
  background: var(--purple);
  color: #ffffff;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 6px;
  color: #605866;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  min-height: 38px;
  padding: 6px;
}

.calendar-day.empty {
  visibility: hidden;
}

.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.calendar-day.sunday {
  color: #8e8494;
  background:
    linear-gradient(45deg, transparent 46%, var(--purple) 48%, var(--purple) 52%, transparent 54%),
    #f3eef8;
}

.calendar-day.blocked {
  color: #8e8494;
  background:
    linear-gradient(45deg, transparent 46%, #8e8494 48%, #8e8494 52%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #8e8494 48%, #8e8494 52%, transparent 54%),
    #f3eef8;
}

.calendar-day.past {
  color: #9c94a2;
  background: #f6f3f8;
}

.form-help {
  grid-column: 1 / -1;
  margin: 0;
  color: #605866;
}

.form-repeat-section {
  gap: 14px;
}

.repeat-list {
  display: grid;
  gap: 16px;
}

.repeat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 2px solid rgba(101, 51, 154, 0.22);
  border-radius: var(--radius);
  background: #fbf9fd;
}

.form-more {
  display: grid;
  gap: 14px;
}

.form-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 11px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--purple);
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.form-more summary::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.form-more[open] summary::after {
  content: "-";
}

.site-footer {
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 36px;
}

.footer-grid img {
  width: 240px;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a {
  display: block;
  margin: 6px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.floating-call {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
    gap: 4px;
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand img {
    width: 190px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    border-top: 2px solid var(--line);
    background: var(--ink);
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 12px;
  }

  .nav-dropdown {
    display: grid;
    gap: 6px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    gap: 4px;
    min-width: 0;
    padding: 8px 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    white-space: normal;
  }

  .hero-inner,
  .split,
  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .hero-main {
    min-height: 520px;
  }

  .grid,
  .grid.two,
  .footer-grid,
  .application-form,
  .choice-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .section {
    padding: 50px 0;
  }

  .hero-inner {
    padding: 48px 0;
  }

  .hero-main {
    display: block;
    min-height: auto;
    padding: 0 0 28px;
  }

  .hero-shop-photo {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 8;
    height: auto;
    margin: 0 0 28px;
    border-radius: 8px;
  }

  .hero-shop-photo img {
    object-position: center;
  }

  .hero-main .hero-brand-mark {
    position: absolute;
    top: clamp(28px, 8vw, 38px);
    left: 50%;
    width: min(260px, 78%);
    margin: 0;
    transform: translateX(-50%);
  }

  .hero-main .eyebrow,
  .hero-main h1,
  .hero-main > p,
  .hero-main .actions {
    margin-left: 28px;
    margin-right: 28px;
  }

  .hero-main .eyebrow,
  .hero-main h1 {
    text-align: center;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hero-panel dl {
    grid-template-columns: 1fr;
  }

  .oil-stock-list {
    grid-template-columns: 1fr;
  }

  .repeat-row {
    grid-template-columns: 1fr;
  }

  .section-photo {
    aspect-ratio: 16 / 9;
  }

  .section-photo img {
    min-height: 0;
    object-fit: cover;
  }

  .service-heading {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .service-heading a {
    width: 100%;
  }

  .category-label-action {
    align-items: stretch;
    flex-direction: column;
  }

  .category-label-action .btn {
    width: 100%;
  }

  .detail-photo {
    aspect-ratio: 16 / 9;
  }

  .floating-call {
    display: inline-flex;
  }
}
