:root {
  --ink: #0a2d59;
  --text: #14283c;
  --muted: #5d6f7e;
  --blue: #1646a2;
  --aqua: #0daabd;
  --aqua-pale: #dff5f6;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #dbe5e8;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 112px;
  align-items: center;
  min-height: 112px;
  height: 112px;
  gap: 34px;
}

.brand {
  z-index: 2;
  display: inline-flex;
  width: max-content;
  align-items: center;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  transform: translateY(31px);
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
  background: var(--white);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--white),
    0 8px 18px rgb(10 43 77 / 12%);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  color: var(--blue);
  border: 3px solid currentColor;
  border-radius: 50%;
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 16px;
  height: 9px;
  content: "";
  background: currentColor;
  border-radius: 80% 0 80% 20%;
  transform: rotate(-24deg);
}

.brand-bubble {
  position: absolute;
  border: 2px solid var(--aqua);
  border-radius: 50%;
}

.bubble-a {
  top: 8px;
  left: 9px;
  width: 7px;
  height: 7px;
}

.bubble-b {
  top: 17px;
  left: 21px;
  width: 9px;
  height: 9px;
}

.bubble-c {
  top: 28px;
  left: 12px;
  width: 5px;
  height: 5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  line-height: 0.95;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text strong {
  margin-top: 5px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: 30px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-call:hover,
.header-email:hover {
  color: var(--aqua);
}

.header-contact {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.header-email {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-call svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #d9e9ee;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.56) saturate(0.82) contrast(1.08);
}

.hero-scrim,
.hero-waterline {
  display: none;
}

.hero-content {
  position: relative;
  display: flex;
  min-height: 100svh;
  box-sizing: border-box;
  padding-top: 112px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 1080px;
  padding-top: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: var(--aqua);
}

.eyebrow.dark {
  justify-content: flex-start;
}

.eyebrow.light {
  justify-content: flex-start;
  color: #72d9e3;
}

.hero .eyebrow {
  color: var(--white);
}

.hero h1,
.section-heading h2,
.detail-copy h2,
.hours-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(78px, 10.5vw, 148px);
  line-height: 0.97;
  text-transform: uppercase;
}

.hero h1 em {
  color: inherit;
  font-style: normal;
}

.contact-copy h2 em {
  color: var(--aqua);
  font-style: normal;
}

.contact-copy h2 {
  line-height: 0.97;
}

.hero-lead {
  max-width: 610px;
  margin: 30px auto 0;
  color: var(--white);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  color: var(--white);
  background: var(--aqua);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-ghost {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  background: var(--ink);
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #22b877;
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-line {
  width: 42px;
  height: 1px;
  background: var(--white);
}

.intro {
  background: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.detail-copy h2,
.hours-heading h2,
.contact-copy h2 {
  font-size: clamp(48px, 5.2vw, 74px);
}

.section-heading > p,
.hours-heading > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 17px;
}

.service-list {
  margin-top: 74px;
  border-bottom: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 60px minmax(250px, 0.85fr) 1fr 52px;
  align-items: center;
  gap: 34px;
  min-height: 156px;
  border-top: 1px solid var(--line);
  transition: background 160ms ease;
}

.service-row:hover {
  background: var(--aqua-pale);
}

.service-number {
  color: var(--aqua);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-row h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.service-row p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-row > a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.service-row > a:hover {
  background: var(--aqua);
  transform: translateX(4px);
}

.service-row > a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tag {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.detail-image-wrap {
  position: relative;
  height: 650px;
}

.detail-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-stamp {
  position: absolute;
  right: -30px;
  bottom: 30px;
  display: flex;
  width: 142px;
  height: 142px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #72d9e3;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.detail-stamp strong {
  font-size: 18px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.detail-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #b7c8d5;
  font-size: 17px;
}

.detail-contact {
  display: flex;
  flex-direction: column;
  width: max-content;
  padding-top: 24px;
  border-top: 2px solid #72d9e3;
}

.detail-contact span {
  color: #72d9e3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-contact strong {
  margin-top: 3px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.pricing,
.hours {
  background: var(--paper);
}

.centered {
  max-width: 730px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:not(.eyebrow) {
  margin: 24px auto 0;
}

.pricing-notice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  background: #b7dadd;
}

.pricing-notice > div {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 36px;
  background: var(--aqua-pale);
}

.pricing-notice strong {
  margin-top: 4px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.5vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.price-table-wrap {
  margin-top: 28px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
}

.price-table-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
}

.price-table-heading h3,
.wholesale-card h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(31px, 3.5vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.price-download {
  color: var(--blue);
  white-space: nowrap;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  border: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 190px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.price-table tbody tr:nth-child(even) {
  background: #f3f8f8;
}

.price-vat {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.wholesale-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
  gap: 64px;
  margin-top: 34px;
  padding: 56px 60px;
  color: var(--white);
  background: var(--blue);
}

.wholesale-card .small-label {
  display: inline-block;
  padding: 8px 12px;
  color: var(--white);
  background: rgb(255 255 255 / 12%);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.wholesale-card h3 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 60px);
}

.wholesale-card p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d4ddf0;
  font-size: 17px;
}

.wholesale-card .button {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--ink);
}

.price-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr auto;
  align-items: center;
  gap: 58px;
  margin-top: 62px;
  padding: 52px;
  background: var(--aqua-pale);
}

.small-label {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-panel h3 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.price-panel-copy p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-steps {
  border-left: 1px solid #b7dadd;
}

.price-steps > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 10px 0 10px 30px;
}

.price-steps span {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
}

.price-steps p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.hours {
  padding-top: 30px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.hours-heading > p:not(.eyebrow) {
  margin-top: 28px;
}

.location-link {
  display: flex;
  max-width: 520px;
  flex-direction: column;
  margin-top: 32px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.location-link:hover {
  border-color: var(--aqua);
  transform: translateY(-2px);
}

.location-link > span {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-link strong {
  margin-top: 4px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.location-link small {
  margin-top: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.hours-card {
  padding: 48px;
  color: var(--white);
  background: var(--blue);
}

.hours-label {
  color: #72d9e3;
}

.opening-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-top: 12px;
  padding-bottom: 30px;
  border-bottom: 1px solid #4e70b5;
}

.opening-row strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.opening-row span {
  color: #72d9e3;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.manager {
  display: flex;
  flex-direction: column;
  padding: 26px 0;
  border-bottom: 1px solid #4e70b5;
}

.manager span {
  color: #d4ddf0;
  font-size: 12px;
}

.manager strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.hours-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding-top: 26px;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 26px;
  color: #d4eef0;
  border-bottom: 1px solid #4e70b5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-phone {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.hours-phone span {
  color: #72d9e3;
  font-size: 13px;
  font-weight: 600;
}

.hours-phone strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(29px, 3.5vw, 42px);
  letter-spacing: -0.045em;
}

.hours-card > p {
  margin: 18px 0 22px;
  color: #d4ddf0;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: #72d9e3;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(60px, 8vw, 120px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0 36px;
  color: #b7c8d5;
}

.contact-links {
  display: grid;
  gap: 18px;
}

.contact-links > div {
  display: flex;
  flex-direction: column;
}

.contact-links span {
  color: #72d9e3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links a {
  width: max-content;
  margin-top: 2px;
  font-size: 17px;
  font-weight: 700;
}

.contact-links strong {
  width: max-content;
  margin-top: 2px;
  color: var(--white);
  font-size: 17px;
}

.contact-links a:hover {
  color: #72d9e3;
}

.contact-form {
  padding: 42px;
  color: var(--text);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 24px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: #eef3f4;
  border: 0;
  border-bottom: 2px solid #c9d7db;
  border-radius: 0;
  outline: 0;
}

.contact-form input {
  height: 54px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
}

.contact-form ::placeholder {
  color: #83939f;
  opacity: 1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.form-footer > p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 -12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #147447;
}

.form-status[data-state="error"] {
  color: #b52626;
}

.site-footer {
  padding: 52px 0;
  color: #aebdca;
  background: #061d38;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.footer-brand img {
  width: 92px;
  padding: 4px;
  background: var(--white);
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-nav,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .section {
    padding-block: 90px;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 84px;
    min-height: 84px;
    height: 84px;
  }

  .brand {
    transform: translateY(6px);
  }

  .brand img {
    width: 78px;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    color: var(--ink);
    background: var(--white);
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 17px;
    height: 2px;
    background: currentColor;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 100px 36px;
    color: var(--white);
    background: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav a {
    color: var(--white);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(68px, 13vw, 102px);
  }

  .split-heading,
  .detail-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 30px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .detail-grid {
    gap: 68px;
  }

  .detail-image-wrap {
    width: 72%;
    height: 570px;
  }

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

  .price-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hours-card {
    max-width: 620px;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding-block: 72px;
  }

  .nav-wrap {
    min-height: 72px;
    height: 72px;
    grid-template-rows: 72px;
  }

  .brand img {
    width: 70px;
  }

  .brand {
    justify-self: center;
    transform: translateY(5px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-image {
    object-position: 55% center;
  }


  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note,
  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .detail-copy h2,
  .hours-heading h2,
  .contact-copy h2 {
    font-size: clamp(42px, 12.5vw, 56px);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .detail-image-wrap {
    width: calc(100% - 18px);
    height: 480px;
  }

  .detail-stamp {
    right: -18px;
    width: 120px;
    height: 120px;
  }

  .service-row {
    grid-template-columns: 40px 1fr 44px;
    gap: 18px;
    padding: 26px 0;
  }

  .service-row p {
    grid-column: 2 / -1;
    max-width: 560px;
  }

  .service-row > a {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .price-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 46px;
    padding: 30px 24px;
  }

  .price-panel h3 {
    font-size: 31px;
  }

  .price-steps {
    border-top: 1px solid #b7dadd;
    border-left: 0;
  }

  .price-steps > div {
    padding: 13px 0;
  }

  .price-panel .button {
    grid-column: auto;
  }

  .pricing-notice {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .pricing-notice > div {
    min-height: 106px;
    padding: 24px;
  }

  .price-table-wrap {
    padding: 28px 20px;
  }

  .price-table-heading,
  .wholesale-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-table-scroll {
    overflow-x: auto;
  }

  .price-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 13px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 105px;
  }

  .wholesale-card {
    gap: 26px;
    min-height: 0;
    padding: 38px 26px;
  }

  .wholesale-card .button {
    width: 100%;
  }

  .wholesale-card .small-label {
    font-size: 12px;
  }

  .wholesale-card h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .opening-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-card,
  .contact-form {
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
